]> gitweb.fluxo.info Git - templater.git/commitdiff
Rename __templater_ functions to templater_
authorSilvio Rhatto <rhatto@riseup.net>
Fri, 17 Nov 2017 13:34:31 +0000 (11:34 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Fri, 17 Nov 2017 13:34:31 +0000 (11:34 -0200)
28 files changed:
share/templater/agpl/setup
share/templater/apache/setup
share/templater/basic/setup
share/templater/bsd/setup
share/templater/conduct/setup
share/templater/drupal7/setup
share/templater/drupal8/setup
share/templater/git/setup
share/templater/gitflow/setup
share/templater/githooks/setup
share/templater/gpl/setup
share/templater/hugo/setup
share/templater/ikiwiki/setup
share/templater/jekyll/setup
share/templater/kvmx/setup
share/templater/mit/setup
share/templater/mpl/setup
share/templater/pelican/setup
share/templater/puppet/setup
share/templater/puppet_module/setup
share/templater/pushtodeploy/setup
share/templater/sphinx/setup
share/templater/templater/functions
share/templater/templater/setup
share/templater/trashman/setup
share/templater/vagrant/setup
share/templater/wtfpl/setup
templater

index 216722b5e13069da70b15dee10b83ec8e46c17a8..7d7eabc712ae91d89ee6e5a255762e30714ab644 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # AGPLv3 License
 function templater_agpl {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up Affero GPLv3 License..."
+    templater_echo "Setting up Affero GPLv3 License..."
     cp $SHARE/agpl/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index ca14efa1ed5fe228072791fcb1680780f7b7c2d8..0ac127b8b3c854f74d418e866d9bbb12b05c0d56 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # Apache License
 function templater_apache {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up Apache License..."
+    templater_echo "Setting up Apache License..."
     cp $SHARE/apache/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index cb7b22fc479ca31419734959580a62dfebefa51c..b90f5b287b882b3b52d8b0c442fab9e8a3475a0e 100755 (executable)
@@ -25,7 +25,7 @@ function templater_basic {
 
     touch ChangeLog
   else
-    __templater_echo "Basic files already set"
+    templater_echo "Basic files already set"
   fi
 }
 
index 90042a4d274fbac7f9139e5cabb3acc5ebe19c84..6789b045c192e89016ce4c1365fd64cb1f0fe884 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # BSD License
 function templater_bsd {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up BSD 3-clause (New BSD) License..."
+    templater_echo "Setting up BSD 3-clause (New BSD) License..."
     cp $SHARE/bsd/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index f2c1873e82aacd54a5c4203a1e76ff7032ddab59..10b3aac90b09578aff66e933b82b160c7625f881 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # Contributor Covenant: A Code of Conduct for Open Source Projects
 function templater_conduct {
   if [ ! -e "CODE_OF_CONDUCT.md" ]; then
-    __templater_echo "Setting up Code of Conduct..."
+    templater_echo "Setting up Code of Conduct..."
     cp $SHARE/conduct/files/CODE_OF_CONDUCT.md .
   else
-    __templater_echo "Code of Conduct already set"
+    templater_echo "Code of Conduct already set"
   fi
 }
 
index 7684d0363a5caa5a1e0cfb8029d1fbe24c72cc8f..968e23b771ad87f7a72f4e83f1b454964b124b6e 100755 (executable)
@@ -12,7 +12,7 @@ source $SHARE/templater/functions || exit 1
 # Drupal7 implementation
 function templater_drupal7 {
   if [ ! -e 'settings.dev.php' ]; then
-    __templater_echo "Setting up Drupal 7..."
+    templater_echo "Setting up Drupal 7..."
 
     #if [ ! -e "Makefile" ]; then
     #  cp $SHARE/drupal7/files/Makefile .
@@ -29,7 +29,7 @@ function templater_drupal7 {
     mkdir -p files themes modules libraries
     mkdir -p vendor
   else
-    __templater_echo "Drupal already set"
+    templater_echo "Drupal already set"
   fi
 }
 
index fde815e4ea48b02387a09a8433de56ef8a5a3c80..f9c8dfc96a7337239734b812a81a35d2909b6b6b 100755 (executable)
@@ -12,7 +12,7 @@ source $SHARE/templater/functions || exit 1
 # Drupal8 implementation
 function templater_drupal8 {
   if [ ! -e 'settings.php' ]; then
-    __templater_echo "Setting up Drupal 8..."
+    templater_echo "Setting up Drupal 8..."
 
     if [ ! -e ".gitignore" ] || ! grep -q "^settings.php" .gitignore; then
       echo settings.php      >> .gitignore
@@ -36,7 +36,7 @@ function templater_drupal8 {
 
     ln -sf services.dev.yml services.yml
 
-    __templater_install_makefile $SHARE/drupal8/files/Makefile.drupal8
+    templater_install_makefile $SHARE/drupal8/files/Makefile.drupal8
 
     if [ ! -e "drupal.make.yml" ]; then
       cp $SHARE/drupal8/files/drupal.make.yml .
@@ -56,7 +56,7 @@ function templater_drupal8 {
     touch {files,config,themes,modules,libraries,vendor}/.empty
     git add -f {files,config/sync,themes,modules,libraries}/.empty
   else
-    __templater_echo "Drupal already set"
+    templater_echo "Drupal already set"
   fi
 }
 
index de2b75045cc97081c41a43d93ae0c9affac022ab..952e6ef911a5a699dc715e00b1d6db1307b38c9c 100755 (executable)
@@ -12,11 +12,11 @@ source $SHARE/templater/functions || exit 1
 # Git implementation
 function templater_git {
   if [ ! -d ".git" ]; then
-    __templater_echo "Setting up git..."
+    templater_echo "Setting up git..."
     touch .gitignore
 
-    __templater_user_input GIT_USER  User             "-> Choose a git user name"
-    __templater_user_input GIT_EMAIL user@example.org "-> Choose a git email address"
+    templater_user_input GIT_USER  User             "-> Choose a git user name"
+    templater_user_input GIT_EMAIL user@example.org "-> Choose a git email address"
 
     git init
     git config user.name  "$GIT_USER"
@@ -24,7 +24,7 @@ function templater_git {
     git add .
     git commit -m "Initial import"
   else
-    __templater_echo "Git already set"
+    templater_echo "Git already set"
   fi
 }
 
index 5f0eff7e5ce09293dae68c0c5d6aae1c009295de..9aab36b5702e244a20a633f8bfb1f0f930d9d2ff 100755 (executable)
@@ -13,18 +13,18 @@ source $SHARE/templater/functions || exit 1
 function templater_gitflow {
   if ! grep -q '^\[gitflow' .git/config; then
     if ! git branch --list develop | grep -q develop; then
-      __templater_echo "Setting up git-flow..."
+      templater_echo "Setting up git-flow..."
 
       git branch develop
 
       if [ -e "/usr/lib/git-core/git-flow" ]; then
         echo ""
-        __templater_echo "Setting up git-flow..."
+        templater_echo "Setting up git-flow..."
         git flow init -d
       fi
     fi
   else
-    __templater_echo "Git flow already set"
+    templater_echo "Git flow already set"
   fi
 }
 
index 6fae697624ad7f96c95f8a66d6cf7b7c468b5cc0..84c3f0e752d56fa23350490ce329ccd63df506bc 100755 (executable)
@@ -14,11 +14,11 @@ function templater_githooks {
   # TODO: check if githooks are already set
   if [ -d ".git" ]; then
     if which git-hooks &> /dev/null; then
-      __templater_echo "Setting up git-hooks..."
+      templater_echo "Setting up git-hooks..."
       git hooks --install
     fi
   else
-    __templater_echo "Git hooks already set"
+    templater_echo "Git hooks already set"
   fi
 }
 
index 3491e939ae5c19afa9d0e266a51e391db4413c1d..93151cec7fafee5dc8b7cda57e1729634a89f372 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # GPLv3 License
 function templater_gpl {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up GPLv3 License..."
+    templater_echo "Setting up GPLv3 License..."
     cp $SHARE/gpl/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index bdc728539f2cb7083652ee693a5b6b36a6fa3445..8f9ce06eb88ae70399060b6a16b324d980d7c42e 100755 (executable)
@@ -12,15 +12,15 @@ source $SHARE/templater/functions || exit 1
 # Hugo implementation
 function templater_hugo {
   if [ ! -e "config.toml" ]; then
-    __templater_echo "Setting up Hugo..."
+    templater_echo "Setting up Hugo..."
 
     if which hugo &> /dev/null; then
       hugo new site .
     else
-      __templater_echo "Hugo not available, please install it, skipping"
+      templater_echo "Hugo not available, please install it, skipping"
     fi
   else
-    __templater_echo "Hugo already set"
+    templater_echo "Hugo already set"
   fi
 }
 
index 68fad556ea246b275cb4df484bf8dca1b02fb5a6..49edcd2fb33979d63fcbcf2171359bf54bda155d 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # Ikiwiki implementation
 function templater_ikiwiki {
   if [ ! -e "ikiwiki.yaml" ]; then
-    __templater_echo "Setting up ikiwiki..."
+    templater_echo "Setting up ikiwiki..."
 
-    #__templater_checkout_develop
-    __templater_copy_or_append ikiwiki .gitignore
+    #templater_checkout_develop
+    templater_copy_or_append ikiwiki .gitignore
 
     #if [ ! -e "index.md" ]; then
     #  cp $SHARE/ikiwiki/files/index.md .
@@ -26,7 +26,7 @@ function templater_ikiwiki {
       cp $SHARE/ikiwiki/files/ikiwiki.yaml.
     fi
 
-    __templater_install_makefile $SHARE/ikiwiki/files/Makefile.ikiwiki
+    templater_install_makefile $SHARE/ikiwiki/files/Makefile.ikiwiki
 
     if [ ! -d "templates" ]; then
       cp -r $SHARE/ikiwiki/files/templates .
@@ -41,7 +41,7 @@ function templater_ikiwiki {
     #  git commit -a -m "Static site generation support using ikiwiki"
     #fi
   else
-    __templater_echo "Ikiwiki already set"
+    templater_echo "Ikiwiki already set"
   fi
 }
 
index 43e940d8f4d967075c1dc2b15a12c4c9a9c5dba9..ad2660c2f13ce4a4b19abf6c24285b02a97dbf05 100755 (executable)
@@ -12,15 +12,15 @@ source $SHARE/templater/functions || exit 1
 # Jekyll implementation
 function templater_jekyll {
   if [ ! -e "_config.yml" ]; then
-    __templater_echo "Setting up Jekyll..."
+    templater_echo "Setting up Jekyll..."
 
     if which jekyll &> /dev/null; then
       jekyll new .
     else
-      __templater_echo "Jekyll not available, please install it, skipping"
+      templater_echo "Jekyll not available, please install it, skipping"
     fi
   else
-    __templater_echo "Jekyll already set"
+    templater_echo "Jekyll already set"
   fi
 }
 
index 8b3443f5cd69e57207648ef6d18004c4088467d7..9e9f70b6a90b2af3bfb01e81a53cb1e20bb6b8cc 100755 (executable)
@@ -12,11 +12,11 @@ source $SHARE/templater/functions || exit 1
 # KVMX implementation
 function templater_kvmx {
   if [ ! -e "kvmxfile" ]; then
-    __templater_echo "Setting up kvmx..."
+    templater_echo "Setting up kvmx..."
     kvmx init
     #git commit -a -m "Adds kvmx support"
   else
-    __templater_echo "KVMX already set"
+    templater_echo "KVMX already set"
   fi
 }
 
index ce35adca093e9f0f133abf15105fdeb249fe9cb9..a80cf0b12be38ae230ee4a80455183167adb2f61 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # MIT License
 function templater_mit {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up MIT License..."
+    templater_echo "Setting up MIT License..."
     cp $SHARE/mit/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index 437c8f1b2af8a8025f7f459e905c9ac7faca154f..b12b951c17ae4d4546fddfce3990bd29b73d6fd8 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # Mozilla License
 function templater_mpl {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up Mozilla Public License..."
+    templater_echo "Setting up Mozilla Public License..."
     cp $SHARE/mpl/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index 71929e79e7410782c0b8882eff1d0b7b4dbecc95..abf106afb50a6d4fd290787b8cdb87addcfe8f4c 100755 (executable)
@@ -12,20 +12,20 @@ source $SHARE/templater/functions || exit 1
 # Pelican implementation
 function templater_pelican {
   if [ ! -e "pelicanconf.py" ]; then
-    __templater_echo "Setting up pelican..."
+    templater_echo "Setting up pelican..."
 
-    #__templater_checkout_develop
-    __templater_copy_or_append pelican .gitignore
+    #templater_checkout_develop
+    templater_copy_or_append pelican .gitignore
 
     cp $SHARE/sphinx/files/pelicanconf.py .
 
-    __templater_install_makefile $SHARE/pelican/files/Makefile.pelican
+    templater_install_makefile $SHARE/pelican/files/Makefile.pelican
 
     if [ ! -d "content" ]; then
       cp -r $SHARE/pelican/files/content .
     fi
   else
-    __templater_echo "Pelican already set"
+    templater_echo "Pelican already set"
   fi
 }
 
index bb8634b311ade925c53c53306c89a5753069b855..402558cea1279187b12c5006e12a4089548501ef 100755 (executable)
@@ -14,15 +14,15 @@ source $SHARE/templater/functions || exit 1
 # Puppet implementation
 function templater_puppet {
   if [ ! -d "puppet" ]; then
-    __templater_echo "Setting up puppet..."
+    templater_echo "Setting up puppet..."
 
     if [ ! -d '.git' ]; then
-      __templater_echo "Error: puppet needs a working git setup, skipping"
+      templater_echo "Error: puppet needs a working git setup, skipping"
       return
     fi
 
     if [ "`git status -s | wc -l`" != 0 ]; then
-      __templater_echo "Please commit changes before running setting up puppet"
+      templater_echo "Please commit changes before running setting up puppet"
       return
     fi
 
@@ -37,7 +37,7 @@ function templater_puppet {
       cp puppet/config/node/box.example.org.yaml puppet/config/node/$PROJECT.example.org.yaml
     fi
   else
-    __templater_echo "Puppet already set"
+    templater_echo "Puppet already set"
   fi
 }
 
index d06f1ddf6aa5faf02266e674c9cc35af34ee54d4..5e779ec2bba249693ace25a6b2b2acfa15ea7238 100755 (executable)
@@ -13,14 +13,14 @@ source $SHARE/templater/functions || exit 1
 # Puppet module
 function templater_puppet_module {
   if [ ! -e "manifests/init.pp" ]; then
-    __templater_echo "Setting up Puppet Module..."
+    templater_echo "Setting up Puppet Module..."
 
     mkdir -p manifests
 
     echo "class $PROJECT {"  > manifests/init.pp
     echo "}"                >> manifests/init.pp
   else
-    __templater_echo "Puppet Module already set"
+    templater_echo "Puppet Module already set"
   fi
 }
 
index b7c3c670c208f81635a6a14ce8d8d667551975dc..1282bcccb5824adefa29938bb8836c27220d1fa7 100755 (executable)
@@ -12,7 +12,7 @@ source $SHARE/templater/functions || exit 1
 # pushtodeploy implementation
 function templater_pushtodeploy {
   if [ ! -e "bin/post-receive" ]; then
-    __templater_echo "Setting up pushtodeploy..."
+    templater_echo "Setting up pushtodeploy..."
 
     mkdir -p bin
     cp $SHARE/pushtodeploy/files/post-receive bin/
@@ -24,7 +24,7 @@ function templater_pushtodeploy {
       fi
     fi
   else
-    __templater_echo "pushtodeploy already set"
+    templater_echo "pushtodeploy already set"
   fi
 }
 
index b378ac3fcad22690e7bc16668483b7c7f44bc83d..04d500733982cf3e4bf281b92a03f5427e1046cf 100755 (executable)
@@ -12,14 +12,14 @@ source $SHARE/templater/functions || exit 1
 # Sphinx implementation
 function templater_sphinx {
   if [ ! -e "conf.py" ]; then
-    __templater_echo "Setting up sphinx..."
+    templater_echo "Setting up sphinx..."
 
-    #__templater_checkout_develop
-    __templater_copy_or_append sphinx .gitignore
+    #templater_checkout_develop
+    templater_copy_or_append sphinx .gitignore
 
     cp $SHARE/sphinx/files/conf.py .
 
-    __templater_install_makefile $SHARE/sphinx/files/Makefile.sphinx
+    templater_install_makefile $SHARE/sphinx/files/Makefile.sphinx
 
     if [ ! -d "_static" ]; then
       cp -r $SHARE/sphinx/files/_static .
@@ -30,7 +30,7 @@ function templater_sphinx {
       git submodule add https://github.com/snide/sphinx_rtd_theme _themes/sphinx_rtd_theme
     fi
   else
-    __templater_echo "Sphinx already set"
+    templater_echo "Sphinx already set"
   fi
 }
 
index 47c240b1d0e2de8864aca14c4122023baef36fe3..b8658d2532e2617ed46289272e4c33c4966234ff 100644 (file)
@@ -4,15 +4,15 @@
 #
 
 # Initialize project
-function __templater_init {
+function templater_init {
   if [ ! -d "$PROJECT" ]; then
-    __templater_echo "Initializing $PROJECT..."
+    templater_echo "Initializing $PROJECT..."
     mkdir -p $PROJECT
   fi
 }
 
 # Read a parameter from user
-function __templater_ask {
+function templater_ask {
   local input
   local function="$1"
   local default="n"
@@ -26,27 +26,27 @@ function __templater_ask {
 }
 
 # Return list of implementations
-function __templater_implementations {
+function templater_implementations {
   # Do not sort this list: the order in which functions are present in the code is important
   #grep "^function templater_" $PROGRAM | cut -d ' ' -f 2 | sed -e 's/templater_//'
   ls $SHARE
 }
 
 # Message
-function __templater_echo {
+function templater_echo {
   #echo ""
   echo "-> $*"
 }
 
 # Checkout to develop branch if available
-function __templater_checkout_develop {
+function templater_checkout_develop {
   if git branch --list develop | grep -q develop; then
     git checkout develop
   fi
 }
 
 # Copy or append source file into destination
-function __templater_copy_or_append {
+function templater_copy_or_append {
   local implementation="$1"
   local file="$2"
 
@@ -62,7 +62,7 @@ function __templater_copy_or_append {
 }
 
 # Read a parameter from user
-function __templater_user_input {
+function templater_user_input {
   local input
   local param="$1"
   local default="$2"
@@ -82,7 +82,7 @@ function __templater_user_input {
 }
 
 # Install the global Makefile
-function __templater_install_makefile {
+function templater_install_makefile {
   if [ -z "$1" ]; then
     return
   fi
index fd26e5c2b747dca9855e8ce34d2b2ca556832b44..14050e3a8173d5f2c70c0f202fb4c0d4ba88a17b 100755 (executable)
@@ -12,13 +12,13 @@ source $SHARE/templater/functions || exit 1
 # Templater module
 function templater_templater {
   if [ ! -e "description" ]; then
-    __templater_echo "Setting Templater Module"
+    templater_echo "Setting Templater Module"
 
     touch setup description
     chmod +x setup
     mkdir files
   else
-    __templater_echo "Templater Module already set"
+    templater_echo "Templater Module already set"
   fi
 }
 
index 6d4ae55ee2e4d155ad4a5a5bc6aad241ceef9aca..f11bc27812f9ce59ebf8b23cf011511215f99143 100755 (executable)
@@ -12,12 +12,12 @@ source $SHARE/templater/functions || exit 1
 # Templater module
 function templater_trashman {
   if [ ! -e "description" ]; then
-    __templater_echo "Setting Trashman package"
+    templater_echo "Setting Trashman package"
 
     touch info
     mkdir unix
   else
-    __templater_echo "Trashman package already set"
+    templater_echo "Trashman package already set"
   fi
 }
 
index 0550034de2e8c3b429413eef0d53ab467ae8ec9f..7b39cc2a4f50b63b2144223a1fb3b6f2554ae626 100755 (executable)
@@ -12,13 +12,13 @@ source $SHARE/templater/functions || exit 1
 # Vagrant implementation
 function templater_vagrant {
   if [ ! -e "Vagrantfile" ]; then
-    __templater_echo "Setting up vagrant..."
-    #__templater_checkout_develop
+    templater_echo "Setting up vagrant..."
+    #templater_checkout_develop
     vagrant init
     echo '.vagrant' >> .gitignore
     #git commit -a -m "Adds vagrant support"
   else
-    __templater_echo "Vagrant already set"
+    templater_echo "Vagrant already set"
   fi
 }
 
index ff341182d3c23ed367896c6acb397d6605650302..12b589f8b0e2786972cea01911684bd1776da6dd 100755 (executable)
@@ -12,10 +12,10 @@ source $SHARE/templater/functions || exit 1
 # Do What the Fuck You Want to Public License - WTFPL
 function templater_wtfpl {
   if [ ! -e "LICENSE" ]; then
-    __templater_echo "Setting up Do What the Fuck You Want Public License..."
+    templater_echo "Setting up Do What the Fuck You Want Public License..."
     cp $SHARE/wtfpl/files/LICENSE .
   else
-    __templater_echo "LICENSE already set"
+    templater_echo "LICENSE already set"
   fi
 }
 
index 01ef1aeafba4cd36e879bcc315d1b4c8e2ccdbf3..ad24eb39d4d289de0bdc248673ee63649e371db1 100755 (executable)
--- a/templater
+++ b/templater
@@ -51,8 +51,8 @@ if [ -z "$PROJECT" ]; then
   echo ""
   echo "available modules:"
   echo ""
-  #__templater_implementations | xargs -L 6 | column -t -c 6 | sed -e 's/^/\t/'
-  for module in `__templater_implementations`; do
+  #templater_implementations | xargs -L 6 | column -t -c 6 | sed -e 's/^/\t/'
+  for module in `templater_implementations`; do
     echo -e "\t $module: `cat $SHARE/$module/description`"
   done
   echo ""
@@ -60,27 +60,27 @@ if [ -z "$PROJECT" ]; then
 fi
 
 # Initialize
-__templater_init
+templater_init
 
 # Go to project folder
 cd $PROJECT &> /dev/null
 
 # Setup modules
 if [ -z "$MODULES" ]; then
-  for project in `__templater_implementations`; do
-    __templater_ask $project
+  for project in `templater_implementations`; do
+    templater_ask $project
   done
 else
   for module in $MODULES; do
-    if `__templater_implementations | grep -q "^$module"`; then
+    if `templater_implementations | grep -q "^$module"`; then
       #templater_$module
       $SHARE/$module/setup $SHARE
     else
-      __templater_echo "No such module $module, skipping"
+      templater_echo "No such module $module, skipping"
     fi
   done
 fi
 
 # Teardown
 cd $CWD
-__templater_echo "Done processing the project :)"
+templater_echo "Done processing the project :)"