From dfa773d7ec171ea63a031f561070e899dce15848 Mon Sep 17 00:00:00 2001 From: Sean Madsen <sean@seanmadsen.com> Date: Wed, 25 Jan 2017 22:24:57 -0700 Subject: [PATCH] hooks migration - starting to create system to cache html content during migration testing --- content-migration/hooks/fetch-wiki-caches | 5 +++++ content-migration/hooks/migrate-hooks | 2 +- content-migration/hooks/wiki_cache/.gitignore | 4 ++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 content-migration/hooks/fetch-wiki-caches create mode 100644 content-migration/hooks/wiki_cache/.gitignore diff --git a/content-migration/hooks/fetch-wiki-caches b/content-migration/hooks/fetch-wiki-caches new file mode 100755 index 00000000..f06e94da --- /dev/null +++ b/content-migration/hooks/fetch-wiki-caches @@ -0,0 +1,5 @@ +#!/usr/bin/env php +<?php + +include __DIR__.'/hook-by-category.php'; + diff --git a/content-migration/hooks/migrate-hooks b/content-migration/hooks/migrate-hooks index 4b72bd49..23823beb 100755 --- a/content-migration/hooks/migrate-hooks +++ b/content-migration/hooks/migrate-hooks @@ -3,7 +3,7 @@ include __DIR__.'/hook-by-category.php'; - +const WIKI_URL = 'https://wiki.civicrm.org/confluence/display/CRMDOC/'; foreach ($hooks_by_category as $category => $hooks) { echo $category . "\n"; diff --git a/content-migration/hooks/wiki_cache/.gitignore b/content-migration/hooks/wiki_cache/.gitignore new file mode 100644 index 00000000..86d0cb27 --- /dev/null +++ b/content-migration/hooks/wiki_cache/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore \ No newline at end of file -- GitLab