diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml new file mode 100644 index 0000000..d4f2d6e --- /dev/null +++ b/.github/workflows/moodle-plugin-ci.yml @@ -0,0 +1,169 @@ +name: Moodle Plugin CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-22.04 + + services: + postgres: + image: postgres:13 + env: + POSTGRES_USER: 'postgres' + POSTGRES_HOST_AUTH_METHOD: 'trust' + ports: + - 5432:5432 + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 + + mariadb: + image: mariadb:10.6 + env: + MYSQL_USER: 'root' + MYSQL_ALLOW_EMPTY_PASSWORD: "true" + MYSQL_CHARACTER_SET_SERVER: "utf8mb4" + MYSQL_COLLATION_SERVER: "utf8mb4_unicode_ci" + ports: + - 3306:3306 + options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3 + + strategy: + fail-fast: false + matrix: + include: + - php: 7.4 + moodle-branch: MOODLE_401_STABLE + database: mariadb + - php: 7.4 + moodle-branch: MOODLE_401_STABLE + database: pgsql + - php: 8.0 + moodle-branch: MOODLE_401_STABLE + database: mariadb + - php: 8.0 + moodle-branch: MOODLE_401_STABLE + database: pgsql + - php: 8.1 + moodle-branch: MOODLE_401_STABLE + database: mariadb + - php: 8.1 + moodle-branch: MOODLE_401_STABLE + database: pgsql + - php: 8.1 + moodle-branch: MOODLE_402_STABLE + database: mariadb + - php: 8.1 + moodle-branch: MOODLE_402_STABLE + database: pgsql + - php: 8.1 + moodle-branch: MOODLE_403_STABLE + database: mariadb + - php: 8.1 + moodle-branch: MOODLE_403_STABLE + database: pgsql + - php: 8.1 + moodle-branch: MOODLE_404_STABLE + database: mariadb + - php: 8.1 + moodle-branch: MOODLE_404_STABLE + database: pgsql + - php: 8.2 + moodle-branch: MOODLE_402_STABLE + database: mariadb + - php: 8.2 + moodle-branch: MOODLE_402_STABLE + database: pgsql + - php: 8.2 + moodle-branch: MOODLE_403_STABLE + database: mariadb + - php: 8.2 + moodle-branch: MOODLE_403_STABLE + database: pgsql + - php: 8.2 + moodle-branch: MOODLE_404_STABLE + database: mariadb + - php: 8.2 + moodle-branch: MOODLE_404_STABLE + database: pgsql + - php: 8.3 + moodle-branch: MOODLE_404_STABLE + database: mariadb + - php: 8.3 + moodle-branch: MOODLE_404_STABLE + database: pgsql + + steps: + - name: Check out repository code + uses: actions/checkout@v4 + with: + path: plugin + + - name: Setup PHP ${{ matrix.php }} + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: ${{ matrix.extensions }} + ini-values: max_input_vars=5000 + coverage: none + + - name: Initialise moodle-plugin-ci + run: | + composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^4 + echo $(cd ci/bin; pwd) >> $GITHUB_PATH + echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH + sudo locale-gen en_AU.UTF-8 + echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV + + - name: Install moodle-plugin-ci + run: | + moodle-plugin-ci install --plugin ./plugin --db-host=127.0.0.1 + moodle-plugin-ci add-config '$CFG->behat_increasetimeout = 10;' + env: + DB: ${{ matrix.database }} + MOODLE_BRANCH: ${{ matrix.moodle-branch }} + IGNORE_PATHS: 'moodle/tests/fixtures,moodle/Sniffs,classes/vendor' + PHPCS_IGNORE_PATHS: /^classes\/vendor/ + PHPDOCCHECKER_IGNORE_PATHS: /^classes\/vendor/ + MUSTACHE_IGNORE_NAMES: 'report.mustache,questionnaire.mustache' + + - name: PHP Lint + if: ${{ always() }} + run: moodle-plugin-ci phplint + + - name: PHP Mess Detector + continue-on-error: true # This step will show errors but will not fail + if: ${{ always() }} + run: moodle-plugin-ci phpmd + + - name: Moodle Code Checker + if: ${{ always() }} + run: moodle-plugin-ci phpcs --max-warnings 0 + + - name: Moodle PHPDoc Checker + if: ${{ always() }} + run: moodle-plugin-ci phpdoc + + - name: Validating + if: ${{ always() }} + run: moodle-plugin-ci validate + + - name: Check upgrade savepoints + if: ${{ always() }} + run: moodle-plugin-ci savepoints + + - name: Mustache Lint + continue-on-error: true # This step will show errors but will not fail + if: ${{ always() }} + run: moodle-plugin-ci mustache + + - name: Grunt + if: ${{ always() }} + run: moodle-plugin-ci grunt || true + + - name: PHPUnit tests + if: ${{ always() }} + run: moodle-plugin-ci phpunit --coverage-text || true + + - name: Behat features + if: ${{ always() }} + run: moodle-plugin-ci behat --profile chrome diff --git a/.ptp-sync-folder b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/.ptp-sync-folder b/.ptp-sync/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/COMMIT_EDITMSG b/.ptp-sync/COMMIT_EDITMSG new file mode 100644 index 0000000..3d1e08c --- /dev/null +++ b/.ptp-sync/COMMIT_EDITMSG @@ -0,0 +1 @@ +Eclipse Automatic Commit diff --git a/.ptp-sync/HEAD b/.ptp-sync/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/.ptp-sync/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/.ptp-sync/ORIG_HEAD b/.ptp-sync/ORIG_HEAD new file mode 100644 index 0000000..392f74f --- /dev/null +++ b/.ptp-sync/ORIG_HEAD @@ -0,0 +1 @@ +4641111dd5f828d580eb5dc43e17fe7d8faa1505 diff --git a/.ptp-sync/config b/.ptp-sync/config new file mode 100644 index 0000000..62f36ad --- /dev/null +++ b/.ptp-sync/config @@ -0,0 +1,8 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true + preloadindex = true +[user] + email = ptp-dev@eclipse.org + name = PTP diff --git a/.ptp-sync/description b/.ptp-sync/description new file mode 100644 index 0000000..498b267 --- /dev/null +++ b/.ptp-sync/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/.ptp-sync/hooks/.ptp-sync-folder b/.ptp-sync/hooks/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/hooks/applypatch-msg.sample b/.ptp-sync/hooks/applypatch-msg.sample new file mode 100644 index 0000000..a5d7b84 --- /dev/null +++ b/.ptp-sync/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/.ptp-sync/hooks/commit-msg.sample b/.ptp-sync/hooks/commit-msg.sample new file mode 100644 index 0000000..b58d118 --- /dev/null +++ b/.ptp-sync/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/.ptp-sync/hooks/fsmonitor-watchman.sample b/.ptp-sync/hooks/fsmonitor-watchman.sample new file mode 100644 index 0000000..14ed0aa --- /dev/null +++ b/.ptp-sync/hooks/fsmonitor-watchman.sample @@ -0,0 +1,173 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use IPC::Open2; + +# An example hook script to integrate Watchman +# (https://facebook.github.io/watchman/) with git to speed up detecting +# new and modified files. +# +# The hook is passed a version (currently 2) and last update token +# formatted as a string and outputs to stdout a new update token and +# all files that have been modified since the update token. Paths must +# be relative to the root of the working tree and separated by a single NUL. +# +# To enable this hook, rename this file to "query-watchman" and set +# 'git config core.fsmonitor .git/hooks/query-watchman' +# +my ($version, $last_update_token) = @ARGV; + +# Uncomment for debugging +# print STDERR "$0 $version $last_update_token\n"; + +# Check the hook interface version +if ($version ne 2) { + die "Unsupported query-fsmonitor hook version '$version'.\n" . + "Falling back to scanning...\n"; +} + +my $git_work_tree = get_working_dir(); + +my $retry = 1; + +my $json_pkg; +eval { + require JSON::XS; + $json_pkg = "JSON::XS"; + 1; +} or do { + require JSON::PP; + $json_pkg = "JSON::PP"; +}; + +launch_watchman(); + +sub launch_watchman { + my $o = watchman_query(); + if (is_work_tree_watched($o)) { + output_result($o->{clock}, @{$o->{files}}); + } +} + +sub output_result { + my ($clockid, @files) = @_; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # binmode $fh, ":utf8"; + # print $fh "$clockid\n@files\n"; + # close $fh; + + binmode STDOUT, ":utf8"; + print $clockid; + print "\0"; + local $, = "\0"; + print @files; +} + +sub watchman_clock { + my $response = qx/watchman clock "$git_work_tree"/; + die "Failed to get clock id on '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + + return $json_pkg->new->utf8->decode($response); +} + +sub watchman_query { + my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') + or die "open2() failed: $!\n" . + "Falling back to scanning...\n"; + + # In the query expression below we're asking for names of files that + # changed since $last_update_token but not from the .git folder. + # + # To accomplish this, we're using the "since" generator to use the + # recency index to select candidate nodes and "fields" to limit the + # output to file names only. Then we're using the "expression" term to + # further constrain the results. + if (substr($last_update_token, 0, 1) eq "c") { + $last_update_token = "\"$last_update_token\""; + } + my $query = <<" END"; + ["query", "$git_work_tree", { + "since": $last_update_token, + "fields": ["name"], + "expression": ["not", ["dirname", ".git"]] + }] + END + + # Uncomment for debugging the watchman query + # open (my $fh, ">", ".git/watchman-query.json"); + # print $fh $query; + # close $fh; + + print CHLD_IN $query; + close CHLD_IN; + my $response = do {local $/; }; + + # Uncomment for debugging the watch response + # open ($fh, ">", ".git/watchman-response.json"); + # print $fh $response; + # close $fh; + + die "Watchman: command returned no output.\n" . + "Falling back to scanning...\n" if $response eq ""; + die "Watchman: command returned invalid output: $response\n" . + "Falling back to scanning...\n" unless $response =~ /^\{/; + + return $json_pkg->new->utf8->decode($response); +} + +sub is_work_tree_watched { + my ($output) = @_; + my $error = $output->{error}; + if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { + $retry--; + my $response = qx/watchman watch "$git_work_tree"/; + die "Failed to make watchman watch '$git_work_tree'.\n" . + "Falling back to scanning...\n" if $? != 0; + $output = $json_pkg->new->utf8->decode($response); + $error = $output->{error}; + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + # Uncomment for debugging watchman output + # open (my $fh, ">", ".git/watchman-output.out"); + # close $fh; + + # Watchman will always return all files on the first query so + # return the fast "everything is dirty" flag to git and do the + # Watchman query just to get it over with now so we won't pay + # the cost in git to look up each individual file. + my $o = watchman_clock(); + $error = $output->{error}; + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + output_result($o->{clock}, ("/")); + $last_update_token = $o->{clock}; + + eval { launch_watchman() }; + return 0; + } + + die "Watchman: $error.\n" . + "Falling back to scanning...\n" if $error; + + return 1; +} + +sub get_working_dir { + my $working_dir; + if ($^O =~ 'msys' || $^O =~ 'cygwin') { + $working_dir = Win32::GetCwd(); + $working_dir =~ tr/\\/\//; + } else { + require Cwd; + $working_dir = Cwd::cwd(); + } + + return $working_dir; +} diff --git a/.ptp-sync/hooks/post-update.sample b/.ptp-sync/hooks/post-update.sample new file mode 100644 index 0000000..ec17ec1 --- /dev/null +++ b/.ptp-sync/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/.ptp-sync/hooks/pre-applypatch.sample b/.ptp-sync/hooks/pre-applypatch.sample new file mode 100644 index 0000000..4142082 --- /dev/null +++ b/.ptp-sync/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/.ptp-sync/hooks/pre-commit.sample b/.ptp-sync/hooks/pre-commit.sample new file mode 100644 index 0000000..e144712 --- /dev/null +++ b/.ptp-sync/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=$(git hash-object -t tree /dev/null) +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --type=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/.ptp-sync/hooks/pre-merge-commit.sample b/.ptp-sync/hooks/pre-merge-commit.sample new file mode 100644 index 0000000..399eab1 --- /dev/null +++ b/.ptp-sync/hooks/pre-merge-commit.sample @@ -0,0 +1,13 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git merge" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message to +# stderr if it wants to stop the merge commit. +# +# To enable this hook, rename this file to "pre-merge-commit". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" +: diff --git a/.ptp-sync/hooks/pre-push.sample b/.ptp-sync/hooks/pre-push.sample new file mode 100644 index 0000000..4ce688d --- /dev/null +++ b/.ptp-sync/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" + +zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/.ptp-sync/hooks/pre-rebase.sample b/.ptp-sync/hooks/pre-rebase.sample new file mode 100644 index 0000000..6cbef5c --- /dev/null +++ b/.ptp-sync/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 + +<<\DOC_END + +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". + +DOC_END diff --git a/.ptp-sync/hooks/pre-receive.sample b/.ptp-sync/hooks/pre-receive.sample new file mode 100644 index 0000000..a1fd29e --- /dev/null +++ b/.ptp-sync/hooks/pre-receive.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to make use of push options. +# The example simply echoes all push options that start with 'echoback=' +# and rejects all pushes when the "reject" push option is used. +# +# To enable this hook, rename this file to "pre-receive". + +if test -n "$GIT_PUSH_OPTION_COUNT" +then + i=0 + while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" + do + eval "value=\$GIT_PUSH_OPTION_$i" + case "$value" in + echoback=*) + echo "echo from the pre-receive-hook: ${value#*=}" >&2 + ;; + reject) + exit 1 + esac + i=$((i + 1)) + done +fi diff --git a/.ptp-sync/hooks/prepare-commit-msg.sample b/.ptp-sync/hooks/prepare-commit-msg.sample new file mode 100644 index 0000000..10fa14c --- /dev/null +++ b/.ptp-sync/hooks/prepare-commit-msg.sample @@ -0,0 +1,42 @@ +#!/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 one removes the +# "# Please enter the commit message..." help message. +# +# 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. + +COMMIT_MSG_FILE=$1 +COMMIT_SOURCE=$2 +SHA1=$3 + +/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" + +# case "$COMMIT_SOURCE,$SHA1" in +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; +# *) ;; +# esac + +# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" +# if test -z "$COMMIT_SOURCE" +# then +# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" +# fi diff --git a/.ptp-sync/hooks/push-to-checkout.sample b/.ptp-sync/hooks/push-to-checkout.sample new file mode 100644 index 0000000..af5a0c0 --- /dev/null +++ b/.ptp-sync/hooks/push-to-checkout.sample @@ -0,0 +1,78 @@ +#!/bin/sh + +# An example hook script to update a checked-out tree on a git push. +# +# This hook is invoked by git-receive-pack(1) when it reacts to git +# push and updates reference(s) in its repository, and when the push +# tries to update the branch that is currently checked out and the +# receive.denyCurrentBranch configuration variable is set to +# updateInstead. +# +# By default, such a push is refused if the working tree and the index +# of the remote repository has any difference from the currently +# checked out commit; when both the working tree and the index match +# the current commit, they are updated to match the newly pushed tip +# of the branch. This hook is to be used to override the default +# behaviour; however the code below reimplements the default behaviour +# as a starting point for convenient modification. +# +# The hook receives the commit with which the tip of the current +# branch is going to be updated: +commit=$1 + +# It can exit with a non-zero status to refuse the push (when it does +# so, it must not modify the index or the working tree). +die () { + echo >&2 "$*" + exit 1 +} + +# Or it can make any necessary changes to the working tree and to the +# index to bring them to the desired state when the tip of the current +# branch is updated to the new commit, and exit with a zero status. +# +# For example, the hook can simply run git read-tree -u -m HEAD "$1" +# in order to emulate git fetch that is run in the reverse direction +# with git push, as the two-tree form of git read-tree -u -m is +# essentially the same as git switch or git checkout that switches +# branches while keeping the local changes in the working tree that do +# not interfere with the difference between the branches. + +# The below is a more-or-less exact translation to shell of the C code +# for the default behaviour for git's push-to-checkout hook defined in +# the push_to_deploy() function in builtin/receive-pack.c. +# +# Note that the hook will be executed from the repository directory, +# not from the working tree, so if you want to perform operations on +# the working tree, you will have to adapt your code accordingly, e.g. +# by adding "cd .." or using relative paths. + +if ! git update-index -q --ignore-submodules --refresh +then + die "Up-to-date check failed" +fi + +if ! git diff-files --quiet --ignore-submodules -- +then + die "Working directory has unstaged changes" +fi + +# This is a rough translation of: +# +# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX +if git cat-file -e HEAD 2>/dev/null +then + head=HEAD +else + head=$(git hash-object -t tree --stdin &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 --type=bool hooks.allowunannotated) +allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) +denycreatebranch=$(git config --type=bool hooks.denycreatebranch) +allowdeletetag=$(git config --type=bool hooks.allowdeletetag) +allowmodifytag=$(git config --type=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=$(git hash-object --stdin &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/.ptp-sync/index b/.ptp-sync/index new file mode 100644 index 0000000..779601b Binary files /dev/null and b/.ptp-sync/index differ diff --git a/.ptp-sync/info/.ptp-sync-folder b/.ptp-sync/info/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/info/exclude b/.ptp-sync/info/exclude new file mode 100644 index 0000000..ba2a4ff --- /dev/null +++ b/.ptp-sync/info/exclude @@ -0,0 +1,11 @@ +/.project +/.cproject +/.buildpath +/.settings/ +coredir.[0-9]*/ +core +!core/ +core.[0-9]* +!core.[0-9]*/ +CVS/ +/.ptp-sync/ diff --git a/.ptp-sync/logs/.ptp-sync-folder b/.ptp-sync/logs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/HEAD b/.ptp-sync/logs/HEAD new file mode 100644 index 0000000..af296e0 --- /dev/null +++ b/.ptp-sync/logs/HEAD @@ -0,0 +1,4 @@ +0000000000000000000000000000000000000000 855b8f36d489c55d9cd8bc358d3623f7fc36bb4c PTP 1706813034 +0000 commit (initial): Eclipse Automatic Commit +855b8f36d489c55d9cd8bc358d3623f7fc36bb4c 3921fa278e3d21dab18a5e66eeed5df269ea329b PTP 1706813034 +0000 commit: Eclipse Automatic Commit +3921fa278e3d21dab18a5e66eeed5df269ea329b 4641111dd5f828d580eb5dc43e17fe7d8faa1505 PTP 1706813035 +0000 commit: Eclipse Automatic Commit +4641111dd5f828d580eb5dc43e17fe7d8faa1505 cb572284015b05ce6a30c89e0e8460353fddda7f PTP 1706813036 +0000 merge ptp-push: Fast-forward diff --git a/.ptp-sync/logs/refs/.ptp-sync-folder b/.ptp-sync/logs/refs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/refs/heads/.ptp-sync-folder b/.ptp-sync/logs/refs/heads/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/logs/refs/heads/master b/.ptp-sync/logs/refs/heads/master new file mode 100644 index 0000000..af296e0 --- /dev/null +++ b/.ptp-sync/logs/refs/heads/master @@ -0,0 +1,4 @@ +0000000000000000000000000000000000000000 855b8f36d489c55d9cd8bc358d3623f7fc36bb4c PTP 1706813034 +0000 commit (initial): Eclipse Automatic Commit +855b8f36d489c55d9cd8bc358d3623f7fc36bb4c 3921fa278e3d21dab18a5e66eeed5df269ea329b PTP 1706813034 +0000 commit: Eclipse Automatic Commit +3921fa278e3d21dab18a5e66eeed5df269ea329b 4641111dd5f828d580eb5dc43e17fe7d8faa1505 PTP 1706813035 +0000 commit: Eclipse Automatic Commit +4641111dd5f828d580eb5dc43e17fe7d8faa1505 cb572284015b05ce6a30c89e0e8460353fddda7f PTP 1706813036 +0000 merge ptp-push: Fast-forward diff --git a/.ptp-sync/objects/.ptp-sync-folder b/.ptp-sync/objects/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/02/.ptp-sync-folder b/.ptp-sync/objects/02/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/02/0353b7ce6ec55fb2a5b9e794b82f9fb69bfedf b/.ptp-sync/objects/02/0353b7ce6ec55fb2a5b9e794b82f9fb69bfedf new file mode 100644 index 0000000..0f91337 Binary files /dev/null and b/.ptp-sync/objects/02/0353b7ce6ec55fb2a5b9e794b82f9fb69bfedf differ diff --git a/.ptp-sync/objects/09/.ptp-sync-folder b/.ptp-sync/objects/09/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/09/38c6d4a99e86d14a57e840f54e88d6c8f8104c b/.ptp-sync/objects/09/38c6d4a99e86d14a57e840f54e88d6c8f8104c new file mode 100644 index 0000000..c9506db Binary files /dev/null and b/.ptp-sync/objects/09/38c6d4a99e86d14a57e840f54e88d6c8f8104c differ diff --git a/.ptp-sync/objects/0a/.ptp-sync-folder b/.ptp-sync/objects/0a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/0a/30bd0771fc81fb24a575a6c9bd8824990dd8cf b/.ptp-sync/objects/0a/30bd0771fc81fb24a575a6c9bd8824990dd8cf new file mode 100644 index 0000000..f78517d Binary files /dev/null and b/.ptp-sync/objects/0a/30bd0771fc81fb24a575a6c9bd8824990dd8cf differ diff --git a/.ptp-sync/objects/0b/.ptp-sync-folder b/.ptp-sync/objects/0b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/0b/25d3fa01ff130f825642439413a1666f656b06 b/.ptp-sync/objects/0b/25d3fa01ff130f825642439413a1666f656b06 new file mode 100644 index 0000000..5074c0c Binary files /dev/null and b/.ptp-sync/objects/0b/25d3fa01ff130f825642439413a1666f656b06 differ diff --git a/.ptp-sync/objects/0b/8ef71fc60d7d12cf50b3a6282a2872e243fbdf b/.ptp-sync/objects/0b/8ef71fc60d7d12cf50b3a6282a2872e243fbdf new file mode 100644 index 0000000..98c3a61 Binary files /dev/null and b/.ptp-sync/objects/0b/8ef71fc60d7d12cf50b3a6282a2872e243fbdf differ diff --git a/.ptp-sync/objects/12/.ptp-sync-folder b/.ptp-sync/objects/12/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/12/81694fe006b14d618cdc9165c55d90467aeea7 b/.ptp-sync/objects/12/81694fe006b14d618cdc9165c55d90467aeea7 new file mode 100644 index 0000000..03e31a5 --- /dev/null +++ b/.ptp-sync/objects/12/81694fe006b14d618cdc9165c55d90467aeea7 @@ -0,0 +1,2 @@ +xm0 =KG >uE% {ӯ_[šoL^? TkjŐT!pSp%ym)BS;g,LZ}G8Oh<2+ű&,4T}yog !,{xd\@EY,R/62/ 56 +q_ \ No newline at end of file diff --git a/.ptp-sync/objects/15/.ptp-sync-folder b/.ptp-sync/objects/15/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/15/6f61f1e357ba44f78c2bf070c1988280352f9f b/.ptp-sync/objects/15/6f61f1e357ba44f78c2bf070c1988280352f9f new file mode 100644 index 0000000..0061f49 Binary files /dev/null and b/.ptp-sync/objects/15/6f61f1e357ba44f78c2bf070c1988280352f9f differ diff --git a/.ptp-sync/objects/16/.ptp-sync-folder b/.ptp-sync/objects/16/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/16/c94c054e0a5b0a57c6b57ab2b4bc33f336f4d0 b/.ptp-sync/objects/16/c94c054e0a5b0a57c6b57ab2b4bc33f336f4d0 new file mode 100644 index 0000000..557bfc3 Binary files /dev/null and b/.ptp-sync/objects/16/c94c054e0a5b0a57c6b57ab2b4bc33f336f4d0 differ diff --git a/.ptp-sync/objects/18/.ptp-sync-folder b/.ptp-sync/objects/18/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/18/cc19cee91ac57463a6a71f6b2e4b108b73e9ca b/.ptp-sync/objects/18/cc19cee91ac57463a6a71f6b2e4b108b73e9ca new file mode 100644 index 0000000..a46be3a Binary files /dev/null and b/.ptp-sync/objects/18/cc19cee91ac57463a6a71f6b2e4b108b73e9ca differ diff --git a/.ptp-sync/objects/19/.ptp-sync-folder b/.ptp-sync/objects/19/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/19/91acb05511fbf241d6871be9d4f43a8c98f868 b/.ptp-sync/objects/19/91acb05511fbf241d6871be9d4f43a8c98f868 new file mode 100644 index 0000000..04947d3 Binary files /dev/null and b/.ptp-sync/objects/19/91acb05511fbf241d6871be9d4f43a8c98f868 differ diff --git a/.ptp-sync/objects/19/a084bec300742a2d456acf713a77f7e506cf10 b/.ptp-sync/objects/19/a084bec300742a2d456acf713a77f7e506cf10 new file mode 100644 index 0000000..da41db6 Binary files /dev/null and b/.ptp-sync/objects/19/a084bec300742a2d456acf713a77f7e506cf10 differ diff --git a/.ptp-sync/objects/1a/.ptp-sync-folder b/.ptp-sync/objects/1a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/1a/b7bfdd67b32be7a155d4a000937d1c3e95adad b/.ptp-sync/objects/1a/b7bfdd67b32be7a155d4a000937d1c3e95adad new file mode 100644 index 0000000..b4bd837 Binary files /dev/null and b/.ptp-sync/objects/1a/b7bfdd67b32be7a155d4a000937d1c3e95adad differ diff --git a/.ptp-sync/objects/1b/.ptp-sync-folder b/.ptp-sync/objects/1b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/1b/44e29f53fe341bf52e91df565d166b675639fb b/.ptp-sync/objects/1b/44e29f53fe341bf52e91df565d166b675639fb new file mode 100644 index 0000000..118b855 Binary files /dev/null and b/.ptp-sync/objects/1b/44e29f53fe341bf52e91df565d166b675639fb differ diff --git a/.ptp-sync/objects/23/.ptp-sync-folder b/.ptp-sync/objects/23/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/23/c7e167f55b41529142496e4fa96d9cf61a8e4c b/.ptp-sync/objects/23/c7e167f55b41529142496e4fa96d9cf61a8e4c new file mode 100644 index 0000000..49ae06a Binary files /dev/null and b/.ptp-sync/objects/23/c7e167f55b41529142496e4fa96d9cf61a8e4c differ diff --git a/.ptp-sync/objects/25/.ptp-sync-folder b/.ptp-sync/objects/25/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/25/482cba9a092b8ebc41ee906de3e12d5148963f b/.ptp-sync/objects/25/482cba9a092b8ebc41ee906de3e12d5148963f new file mode 100644 index 0000000..15f9a09 Binary files /dev/null and b/.ptp-sync/objects/25/482cba9a092b8ebc41ee906de3e12d5148963f differ diff --git a/.ptp-sync/objects/27/.ptp-sync-folder b/.ptp-sync/objects/27/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/27/68d56eec648cbb2d2ff0897796280d6e94dadb b/.ptp-sync/objects/27/68d56eec648cbb2d2ff0897796280d6e94dadb new file mode 100644 index 0000000..b465693 Binary files /dev/null and b/.ptp-sync/objects/27/68d56eec648cbb2d2ff0897796280d6e94dadb differ diff --git a/.ptp-sync/objects/2b/.ptp-sync-folder b/.ptp-sync/objects/2b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/2b/f62ce306075e4ecf7e389c04ef7b3533d59394 b/.ptp-sync/objects/2b/f62ce306075e4ecf7e389c04ef7b3533d59394 new file mode 100644 index 0000000..a97b69a Binary files /dev/null and b/.ptp-sync/objects/2b/f62ce306075e4ecf7e389c04ef7b3533d59394 differ diff --git a/.ptp-sync/objects/2c/.ptp-sync-folder b/.ptp-sync/objects/2c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/2c/cc2ceb3a1ea6e37f6f5189c833e281d8becc17 b/.ptp-sync/objects/2c/cc2ceb3a1ea6e37f6f5189c833e281d8becc17 new file mode 100644 index 0000000..f90806b Binary files /dev/null and b/.ptp-sync/objects/2c/cc2ceb3a1ea6e37f6f5189c833e281d8becc17 differ diff --git a/.ptp-sync/objects/30/.ptp-sync-folder b/.ptp-sync/objects/30/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/30/e1e24ba7117fc5539782815ec5490403f4f497 b/.ptp-sync/objects/30/e1e24ba7117fc5539782815ec5490403f4f497 new file mode 100644 index 0000000..d0a5099 Binary files /dev/null and b/.ptp-sync/objects/30/e1e24ba7117fc5539782815ec5490403f4f497 differ diff --git a/.ptp-sync/objects/36/.ptp-sync-folder b/.ptp-sync/objects/36/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/36/5dddf552f973c2a1dad64bf9654400709f65ac b/.ptp-sync/objects/36/5dddf552f973c2a1dad64bf9654400709f65ac new file mode 100644 index 0000000..62bc09f Binary files /dev/null and b/.ptp-sync/objects/36/5dddf552f973c2a1dad64bf9654400709f65ac differ diff --git a/.ptp-sync/objects/37/.ptp-sync-folder b/.ptp-sync/objects/37/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/37/075e2d0c3ab4019685894d3104c462ed69f91a b/.ptp-sync/objects/37/075e2d0c3ab4019685894d3104c462ed69f91a new file mode 100644 index 0000000..a17fa1b Binary files /dev/null and b/.ptp-sync/objects/37/075e2d0c3ab4019685894d3104c462ed69f91a differ diff --git a/.ptp-sync/objects/39/.ptp-sync-folder b/.ptp-sync/objects/39/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/39/21fa278e3d21dab18a5e66eeed5df269ea329b b/.ptp-sync/objects/39/21fa278e3d21dab18a5e66eeed5df269ea329b new file mode 100644 index 0000000..7545e46 --- /dev/null +++ b/.ptp-sync/objects/39/21fa278e3d21dab18a5e66eeed5df269ea329b @@ -0,0 +1,2 @@ +xK +0@]% ( /ЙL`MW |x\`]I3LA(v:h2 b&Sc7ɳzOmH#{"'$ ]fn2A{ma?q}~Ke逍ZQUKR_Ns-CW{QFK \ No newline at end of file diff --git a/.ptp-sync/objects/39/98801244249bf84ec26effa8bec8103f0608cd b/.ptp-sync/objects/39/98801244249bf84ec26effa8bec8103f0608cd new file mode 100644 index 0000000..e5c3cff Binary files /dev/null and b/.ptp-sync/objects/39/98801244249bf84ec26effa8bec8103f0608cd differ diff --git a/.ptp-sync/objects/39/a9f524d527d9fafe278438045f352a11d8d0a3 b/.ptp-sync/objects/39/a9f524d527d9fafe278438045f352a11d8d0a3 new file mode 100644 index 0000000..a6de770 Binary files /dev/null and b/.ptp-sync/objects/39/a9f524d527d9fafe278438045f352a11d8d0a3 differ diff --git a/.ptp-sync/objects/3e/.ptp-sync-folder b/.ptp-sync/objects/3e/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/3e/94586b30a8aa72b7b3653a76c34f4e5a083096 b/.ptp-sync/objects/3e/94586b30a8aa72b7b3653a76c34f4e5a083096 new file mode 100644 index 0000000..44bd8c3 Binary files /dev/null and b/.ptp-sync/objects/3e/94586b30a8aa72b7b3653a76c34f4e5a083096 differ diff --git a/.ptp-sync/objects/3f/.ptp-sync-folder b/.ptp-sync/objects/3f/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/3f/60cb2dbd4eae6d8ebff92f99ce115202d29e1d b/.ptp-sync/objects/3f/60cb2dbd4eae6d8ebff92f99ce115202d29e1d new file mode 100644 index 0000000..58eefff Binary files /dev/null and b/.ptp-sync/objects/3f/60cb2dbd4eae6d8ebff92f99ce115202d29e1d differ diff --git a/.ptp-sync/objects/40/.ptp-sync-folder b/.ptp-sync/objects/40/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/40/0feea87240c8fde4d134fec1751bd288f31bae b/.ptp-sync/objects/40/0feea87240c8fde4d134fec1751bd288f31bae new file mode 100644 index 0000000..0c727e0 Binary files /dev/null and b/.ptp-sync/objects/40/0feea87240c8fde4d134fec1751bd288f31bae differ diff --git a/.ptp-sync/objects/45/.ptp-sync-folder b/.ptp-sync/objects/45/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/45/9c99443f2bef1557f0393208b89a707cf0ee7f b/.ptp-sync/objects/45/9c99443f2bef1557f0393208b89a707cf0ee7f new file mode 100644 index 0000000..90522bc Binary files /dev/null and b/.ptp-sync/objects/45/9c99443f2bef1557f0393208b89a707cf0ee7f differ diff --git a/.ptp-sync/objects/46/.ptp-sync-folder b/.ptp-sync/objects/46/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/46/41111dd5f828d580eb5dc43e17fe7d8faa1505 b/.ptp-sync/objects/46/41111dd5f828d580eb5dc43e17fe7d8faa1505 new file mode 100644 index 0000000..4bfbbc5 Binary files /dev/null and b/.ptp-sync/objects/46/41111dd5f828d580eb5dc43e17fe7d8faa1505 differ diff --git a/.ptp-sync/objects/47/.ptp-sync-folder b/.ptp-sync/objects/47/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/47/bf7e0fbf796a5f54c11f9461c312966137f262 b/.ptp-sync/objects/47/bf7e0fbf796a5f54c11f9461c312966137f262 new file mode 100644 index 0000000..23fbd7b Binary files /dev/null and b/.ptp-sync/objects/47/bf7e0fbf796a5f54c11f9461c312966137f262 differ diff --git a/.ptp-sync/objects/4b/.ptp-sync-folder b/.ptp-sync/objects/4b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 b/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 new file mode 100644 index 0000000..adf6411 Binary files /dev/null and b/.ptp-sync/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 differ diff --git a/.ptp-sync/objects/52/.ptp-sync-folder b/.ptp-sync/objects/52/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/52/12df47ee6ffc07aa5b559eefc2e11727b84bd2 b/.ptp-sync/objects/52/12df47ee6ffc07aa5b559eefc2e11727b84bd2 new file mode 100644 index 0000000..cf71396 Binary files /dev/null and b/.ptp-sync/objects/52/12df47ee6ffc07aa5b559eefc2e11727b84bd2 differ diff --git a/.ptp-sync/objects/59/.ptp-sync-folder b/.ptp-sync/objects/59/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/59/a808defb9f9364d99503f6d1df633547d76f57 b/.ptp-sync/objects/59/a808defb9f9364d99503f6d1df633547d76f57 new file mode 100644 index 0000000..978c755 Binary files /dev/null and b/.ptp-sync/objects/59/a808defb9f9364d99503f6d1df633547d76f57 differ diff --git a/.ptp-sync/objects/5b/.ptp-sync-folder b/.ptp-sync/objects/5b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5b/09c440c4a6add003525e7fa25c81c60918c56d b/.ptp-sync/objects/5b/09c440c4a6add003525e7fa25c81c60918c56d new file mode 100644 index 0000000..767a5d7 Binary files /dev/null and b/.ptp-sync/objects/5b/09c440c4a6add003525e7fa25c81c60918c56d differ diff --git a/.ptp-sync/objects/5b/cdcdff3a944c03f5c38fe13c09cf495bd50747 b/.ptp-sync/objects/5b/cdcdff3a944c03f5c38fe13c09cf495bd50747 new file mode 100644 index 0000000..10560b4 Binary files /dev/null and b/.ptp-sync/objects/5b/cdcdff3a944c03f5c38fe13c09cf495bd50747 differ diff --git a/.ptp-sync/objects/5b/e9de9e0004fb59e08c5e111773343f3a7f2c72 b/.ptp-sync/objects/5b/e9de9e0004fb59e08c5e111773343f3a7f2c72 new file mode 100644 index 0000000..1bd67a6 Binary files /dev/null and b/.ptp-sync/objects/5b/e9de9e0004fb59e08c5e111773343f3a7f2c72 differ diff --git a/.ptp-sync/objects/5c/.ptp-sync-folder b/.ptp-sync/objects/5c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/5c/773ce565187c2b96fc638b994e0ff65b4e088e b/.ptp-sync/objects/5c/773ce565187c2b96fc638b994e0ff65b4e088e new file mode 100644 index 0000000..4ec53f0 Binary files /dev/null and b/.ptp-sync/objects/5c/773ce565187c2b96fc638b994e0ff65b4e088e differ diff --git a/.ptp-sync/objects/67/.ptp-sync-folder b/.ptp-sync/objects/67/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/67/cf32d5a08a9d490e42a943741dfde66abe6f0c b/.ptp-sync/objects/67/cf32d5a08a9d490e42a943741dfde66abe6f0c new file mode 100644 index 0000000..8d97696 Binary files /dev/null and b/.ptp-sync/objects/67/cf32d5a08a9d490e42a943741dfde66abe6f0c differ diff --git a/.ptp-sync/objects/6a/.ptp-sync-folder b/.ptp-sync/objects/6a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6a/a0a832d19fc2202a3320070297bd164d55bcf5 b/.ptp-sync/objects/6a/a0a832d19fc2202a3320070297bd164d55bcf5 new file mode 100644 index 0000000..9f3d4fe Binary files /dev/null and b/.ptp-sync/objects/6a/a0a832d19fc2202a3320070297bd164d55bcf5 differ diff --git a/.ptp-sync/objects/6b/.ptp-sync-folder b/.ptp-sync/objects/6b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/6b/9822606c7cbd4a53dd9bd1a333042b71c2e1b5 b/.ptp-sync/objects/6b/9822606c7cbd4a53dd9bd1a333042b71c2e1b5 new file mode 100644 index 0000000..addd211 Binary files /dev/null and b/.ptp-sync/objects/6b/9822606c7cbd4a53dd9bd1a333042b71c2e1b5 differ diff --git a/.ptp-sync/objects/71/.ptp-sync-folder b/.ptp-sync/objects/71/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/71/1ee020dd5a5e90b876453efd62979cdfc72f0a b/.ptp-sync/objects/71/1ee020dd5a5e90b876453efd62979cdfc72f0a new file mode 100644 index 0000000..55c469f Binary files /dev/null and b/.ptp-sync/objects/71/1ee020dd5a5e90b876453efd62979cdfc72f0a differ diff --git a/.ptp-sync/objects/73/.ptp-sync-folder b/.ptp-sync/objects/73/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/73/359ef0a30f68c17edef5df5739b993b015f315 b/.ptp-sync/objects/73/359ef0a30f68c17edef5df5739b993b015f315 new file mode 100644 index 0000000..fba27b7 Binary files /dev/null and b/.ptp-sync/objects/73/359ef0a30f68c17edef5df5739b993b015f315 differ diff --git a/.ptp-sync/objects/76/.ptp-sync-folder b/.ptp-sync/objects/76/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/76/8054fc08e4c89ba4d7daa03620c7e3756b8ec6 b/.ptp-sync/objects/76/8054fc08e4c89ba4d7daa03620c7e3756b8ec6 new file mode 100644 index 0000000..37ab49d Binary files /dev/null and b/.ptp-sync/objects/76/8054fc08e4c89ba4d7daa03620c7e3756b8ec6 differ diff --git a/.ptp-sync/objects/7a/.ptp-sync-folder b/.ptp-sync/objects/7a/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7a/d08633c3614cf9365bbcdefbb30e7e431c47a2 b/.ptp-sync/objects/7a/d08633c3614cf9365bbcdefbb30e7e431c47a2 new file mode 100644 index 0000000..e4e3361 Binary files /dev/null and b/.ptp-sync/objects/7a/d08633c3614cf9365bbcdefbb30e7e431c47a2 differ diff --git a/.ptp-sync/objects/7b/.ptp-sync-folder b/.ptp-sync/objects/7b/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7b/91ff62c5d0758c01232718e913cabfb1061371 b/.ptp-sync/objects/7b/91ff62c5d0758c01232718e913cabfb1061371 new file mode 100644 index 0000000..caa5830 Binary files /dev/null and b/.ptp-sync/objects/7b/91ff62c5d0758c01232718e913cabfb1061371 differ diff --git a/.ptp-sync/objects/7c/.ptp-sync-folder b/.ptp-sync/objects/7c/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/7c/436f85e53cb33b6c86649db989b16e1f7b8067 b/.ptp-sync/objects/7c/436f85e53cb33b6c86649db989b16e1f7b8067 new file mode 100644 index 0000000..7884149 Binary files /dev/null and b/.ptp-sync/objects/7c/436f85e53cb33b6c86649db989b16e1f7b8067 differ diff --git a/.ptp-sync/objects/80/.ptp-sync-folder b/.ptp-sync/objects/80/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/80/513a8309ac3aa1a7e158b46c3e70c1604ceff2 b/.ptp-sync/objects/80/513a8309ac3aa1a7e158b46c3e70c1604ceff2 new file mode 100644 index 0000000..59e6a06 --- /dev/null +++ b/.ptp-sync/objects/80/513a8309ac3aa1a7e158b46c3e70c1604ceff2 @@ -0,0 +1,3 @@ +xVao6gC1@vJ[Z`@f:'8 Ď&U;R&-w^/z{]ս(Y \ oʹUR9<8=T(ƅu+\F +fN51 snRj LҰT9/\kdl`Q/ٽ\%j&`, J1y\Ĺ00r%9kX6/6{t AiϬCA.n@p@0 ~__\z䕪Quk.,E#6Dgog0adzZl+E6_ւSĪfpryK!?$|8gt +W) a2Lgd:\MG!!\ 9Zƅٔ|C-5NPRk3+ SC}Pev!XqRC0U'zZλ4^щh^)AEpIhCZ, ;_~} RU( }8dc7_&1.ǣI 0!yH_B} GDŽ +*%tCVHMQTweREY{` 2P%xokBkTy_uw[xo{W&})jk%5ЬؠR9)X[ ṧa"wo9J mno'͗nWldO)1s-e(T$q-A|Dڻ8fB!oG'`8폇$ׯ;G@]j1qlp;X(m0*_*?)P=cC];R(IY0 7mơSzhjy^ u!9IY0uTi% KG1)JMɣ2:zz RRefQfI~2y0MóoDZ꘭{Do4ʂ)IJl vodžwMNL?բ^E&u4q{af>ӎ8uԎ™MoCjQۄ8Ԉ0LZ9 vB>ЦVB"3+2]fm oєzAxGYWf䈈% lr%@[:}seQ QUHA sT+7N(*75QŽ7QOr&hx g yE~m*>2ܜQ[sAsr4 kVY@g^vt`DҴ#zkGpoA2 ʏPy+RR2bRײ!1m:sy5x~}L]iؤJ +"I-.o(dg:Jx80L` +r6f$yA蘐vKJj P5Ri3k ӕG}Ԫ4[4],{Zmąר69;W&Z["@+q]LKӊeX?¼'`DQ:?`0)J4Oۇ8ӫ^km.jRbqV|254$I +-A|Dw8B!Ft<NǃQԃϟ =\b1mZ(mpDO.R O7+ƿ?T44,{t*n&#1oȧNǃf*:+lj|KoȇZehv{$'mػ(35+xt ZRieXfQGGѢ9d0OcK6;g#zStQMbS5X [pjBvQ; +S[Li&S7 +{65*C^Qm*mfDhԾl|-YU>]q=Ν<݇iGöN1peYv+wa3&;xSLvJ ̷tK"ftUI9ȴr EJgߓ YNMs/j#xfh +7 L71!7N'w̥ \ No newline at end of file diff --git a/.ptp-sync/objects/f4/f701cf85187b2898c6808bf5fb60c86e021bd8 b/.ptp-sync/objects/f4/f701cf85187b2898c6808bf5fb60c86e021bd8 new file mode 100644 index 0000000..456ec5f Binary files /dev/null and b/.ptp-sync/objects/f4/f701cf85187b2898c6808bf5fb60c86e021bd8 differ diff --git a/.ptp-sync/objects/f6/.ptp-sync-folder b/.ptp-sync/objects/f6/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/f6/2d5fb59b772aaf9214896d0babf99ef5248e34 b/.ptp-sync/objects/f6/2d5fb59b772aaf9214896d0babf99ef5248e34 new file mode 100644 index 0000000..65e2536 Binary files /dev/null and b/.ptp-sync/objects/f6/2d5fb59b772aaf9214896d0babf99ef5248e34 differ diff --git a/.ptp-sync/objects/f6/62a843ef43ba7971083b56a5b743ea89d03eb2 b/.ptp-sync/objects/f6/62a843ef43ba7971083b56a5b743ea89d03eb2 new file mode 100644 index 0000000..4d22391 Binary files /dev/null and b/.ptp-sync/objects/f6/62a843ef43ba7971083b56a5b743ea89d03eb2 differ diff --git a/.ptp-sync/objects/f8/.ptp-sync-folder b/.ptp-sync/objects/f8/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/f8/eaae4efc23bff9ace171ca4710b57c303e33bb b/.ptp-sync/objects/f8/eaae4efc23bff9ace171ca4710b57c303e33bb new file mode 100644 index 0000000..a762679 Binary files /dev/null and b/.ptp-sync/objects/f8/eaae4efc23bff9ace171ca4710b57c303e33bb differ diff --git a/.ptp-sync/objects/fc/.ptp-sync-folder b/.ptp-sync/objects/fc/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/fc/29ade17eb5bdd967e623a5d0c94de6f8c3b26a b/.ptp-sync/objects/fc/29ade17eb5bdd967e623a5d0c94de6f8c3b26a new file mode 100644 index 0000000..6769483 Binary files /dev/null and b/.ptp-sync/objects/fc/29ade17eb5bdd967e623a5d0c94de6f8c3b26a differ diff --git a/.ptp-sync/objects/ff/.ptp-sync-folder b/.ptp-sync/objects/ff/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/objects/ff/aceff2d3e69b30d4ee77352f8b68fb1768b8ba b/.ptp-sync/objects/ff/aceff2d3e69b30d4ee77352f8b68fb1768b8ba new file mode 100644 index 0000000..ab8c574 Binary files /dev/null and b/.ptp-sync/objects/ff/aceff2d3e69b30d4ee77352f8b68fb1768b8ba differ diff --git a/.ptp-sync/refs/.ptp-sync-folder b/.ptp-sync/refs/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/refs/heads/.ptp-sync-folder b/.ptp-sync/refs/heads/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/.ptp-sync/refs/heads/master b/.ptp-sync/refs/heads/master new file mode 100644 index 0000000..b0763ff --- /dev/null +++ b/.ptp-sync/refs/heads/master @@ -0,0 +1 @@ +cb572284015b05ce6a30c89e0e8460353fddda7f diff --git a/.ptp-sync/refs/heads/ptp-push b/.ptp-sync/refs/heads/ptp-push new file mode 100644 index 0000000..b0763ff --- /dev/null +++ b/.ptp-sync/refs/heads/ptp-push @@ -0,0 +1 @@ +cb572284015b05ce6a30c89e0e8460353fddda7f diff --git a/backup/.ptp-sync-folder b/backup/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/backup/moodle2/.ptp-sync-folder b/backup/moodle2/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/.ptp-sync-folder b/classes/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/completion/.ptp-sync-folder b/classes/completion/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/event/.ptp-sync-folder b/classes/event/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/local/.ptp-sync-folder b/classes/local/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/output/.ptp-sync-folder b/classes/output/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/classes/privacy/.ptp-sync-folder b/classes/privacy/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/db/.ptp-sync-folder b/db/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/lang/.ptp-sync-folder b/lang/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/lang/en/.ptp-sync-folder b/lang/en/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/pix/.ptp-sync-folder b/pix/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/.ptp-sync-folder b/tests/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/behat/.ptp-sync-folder b/tests/behat/.ptp-sync-folder new file mode 100644 index 0000000..e69de29 diff --git a/tests/generator/.ptp-sync-folder b/tests/generator/.ptp-sync-folder new file mode 100644 index 0000000..e69de29