[gtef/wip/tepl] Gtef -> Tepl: mass renaming of the files and directories



commit df6e4b3d98750f5e8f1a958452f143979391d66d
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sun Jun 11 17:08:45 2017 +0200

    Gtef -> Tepl: mass renaming of the files and directories
    
    Done with this script:
    
        #!/usr/bin/env bash
    
        for i in $(find . -type d | grep -v "^\./\.git/" | grep gtef); do
                old_file=$i
                new_file=${i//gtef/tepl}
                git mv $old_file $new_file
        done
    
    Then "-type d" is modified to "-type f": first the directories are renamed,
    then the files.

 ...gtef-2.0-sections.txt => tepl-2.0-sections.txt} |    0
 .../{gtef-docs.xml.in => tepl-docs.xml.in}         |    0
 gtef.doap => tepl.doap                             |    0
 gtef.pc.in => tepl.pc.in                           |    0
 {gtef => tepl}/Makefile.am                         |    0
 {gtef => tepl}/gconstructor.h                      |    0
 .../tepl-action-info-central-store.c               |    0
 .../tepl-action-info-central-store.h               |    0
 .../tepl-action-info-store.c                       |    0
 .../tepl-action-info-store.h                       |    0
 gtef/gtef-action-info.c => tepl/tepl-action-info.c |    0
 gtef/gtef-action-info.h => tepl/tepl-action-info.h |    0
 gtef/gtef-action-map.c => tepl/tepl-action-map.c   |    0
 gtef/gtef-action-map.h => tepl/tepl-action-map.h   |    0
 .../tepl-application-window.c                      |    0
 .../tepl-application-window.h                      |    0
 gtef/gtef-application.c => tepl/tepl-application.c |    0
 gtef/gtef-application.h => tepl/tepl-application.h |    0
 .../tepl-buffer-input-stream.c                     |    0
 .../tepl-buffer-input-stream.h                     |    0
 gtef/gtef-buffer.c => tepl/tepl-buffer.c           |    0
 gtef/gtef-buffer.h => tepl/tepl-buffer.h           |    0
 .../tepl-encoding-converter.c                      |    0
 .../tepl-encoding-converter.h                      |    0
 .../tepl-encoding-private.h                        |    0
 gtef/gtef-encoding.c => tepl/tepl-encoding.c       |    0
 gtef/gtef-encoding.h => tepl/tepl-encoding.h       |    0
 .../tepl-enum-types.c.template                     |    0
 .../tepl-enum-types.h.template                     |    0
 .../tepl-file-content-loader.c                     |    0
 .../tepl-file-content-loader.h                     |    0
 gtef/gtef-file-loader.c => tepl/tepl-file-loader.c |    0
 gtef/gtef-file-loader.h => tepl/tepl-file-loader.h |    0
 .../tepl-file-metadata.c                           |    0
 .../tepl-file-metadata.h                           |    0
 gtef/gtef-file-saver.c => tepl/tepl-file-saver.c   |    0
 gtef/gtef-file-saver.h => tepl/tepl-file-saver.h   |    0
 gtef/gtef-file.c => tepl/tepl-file.c               |    0
 gtef/gtef-file.h => tepl/tepl-file.h               |    0
 gtef/gtef-fold-region.c => tepl/tepl-fold-region.c |    0
 gtef/gtef-fold-region.h => tepl/tepl-fold-region.h |    0
 .../tepl-gutter-renderer-folds.c                   |    0
 .../tepl-gutter-renderer-folds.h                   |    0
 gtef/gtef-info-bar.c => tepl/tepl-info-bar.c       |    0
 gtef/gtef-info-bar.h => tepl/tepl-info-bar.h       |    0
 gtef/gtef-init.c => tepl/tepl-init.c               |    0
 .../tepl-io-error-info-bar.c                       |    0
 .../tepl-io-error-info-bar.h                       |    0
 gtef/gtef-iter.c => tepl/tepl-iter.c               |    0
 gtef/gtef-iter.h => tepl/tepl-iter.h               |    0
 gtef/gtef-menu-item.c => tepl/tepl-menu-item.c     |    0
 gtef/gtef-menu-item.h => tepl/tepl-menu-item.h     |    0
 gtef/gtef-menu-shell.c => tepl/tepl-menu-shell.c   |    0
 gtef/gtef-menu-shell.h => tepl/tepl-menu-shell.h   |    0
 .../tepl-metadata-manager.c                        |    0
 .../tepl-metadata-manager.h                        |    0
 .../tepl-progress-info-bar.c                       |    0
 .../tepl-progress-info-bar.h                       |    0
 gtef/gtef-tab.c => tepl/tepl-tab.c                 |    0
 gtef/gtef-tab.h => tepl/tepl-tab.h                 |    0
 gtef/gtef-types.h => tepl/tepl-types.h             |    0
 gtef/gtef-utils.c => tepl/tepl-utils.c             |    0
 gtef/gtef-utils.h => tepl/tepl-utils.h             |    0
 gtef/gtef-view.c => tepl/tepl-view.c               |    0
 gtef/gtef-view.h => tepl/tepl-view.h               |    0
 gtef/gtef.h => tepl/tepl.h                         |    0
 ...olds-sub.c => tepl-gutter-renderer-folds-sub.c} |    0
 ...olds-sub.h => tepl-gutter-renderer-folds-sub.h} |    0
 68 files changed, 0 insertions(+), 0 deletions(-)
---
diff --git a/docs/reference/gtef-2.0-sections.txt b/docs/reference/tepl-2.0-sections.txt
similarity index 100%
rename from docs/reference/gtef-2.0-sections.txt
rename to docs/reference/tepl-2.0-sections.txt
diff --git a/docs/reference/gtef-docs.xml.in b/docs/reference/tepl-docs.xml.in
similarity index 100%
rename from docs/reference/gtef-docs.xml.in
rename to docs/reference/tepl-docs.xml.in
diff --git a/gtef.doap b/tepl.doap
similarity index 100%
rename from gtef.doap
rename to tepl.doap
diff --git a/gtef.pc.in b/tepl.pc.in
similarity index 100%
rename from gtef.pc.in
rename to tepl.pc.in
diff --git a/gtef/Makefile.am b/tepl/Makefile.am
similarity index 100%
rename from gtef/Makefile.am
rename to tepl/Makefile.am
diff --git a/gtef/gconstructor.h b/tepl/gconstructor.h
similarity index 100%
rename from gtef/gconstructor.h
rename to tepl/gconstructor.h
diff --git a/gtef/gtef-action-info-central-store.c b/tepl/tepl-action-info-central-store.c
similarity index 100%
rename from gtef/gtef-action-info-central-store.c
rename to tepl/tepl-action-info-central-store.c
diff --git a/gtef/gtef-action-info-central-store.h b/tepl/tepl-action-info-central-store.h
similarity index 100%
rename from gtef/gtef-action-info-central-store.h
rename to tepl/tepl-action-info-central-store.h
diff --git a/gtef/gtef-action-info-store.c b/tepl/tepl-action-info-store.c
similarity index 100%
rename from gtef/gtef-action-info-store.c
rename to tepl/tepl-action-info-store.c
diff --git a/gtef/gtef-action-info-store.h b/tepl/tepl-action-info-store.h
similarity index 100%
rename from gtef/gtef-action-info-store.h
rename to tepl/tepl-action-info-store.h
diff --git a/gtef/gtef-action-info.c b/tepl/tepl-action-info.c
similarity index 100%
rename from gtef/gtef-action-info.c
rename to tepl/tepl-action-info.c
diff --git a/gtef/gtef-action-info.h b/tepl/tepl-action-info.h
similarity index 100%
rename from gtef/gtef-action-info.h
rename to tepl/tepl-action-info.h
diff --git a/gtef/gtef-action-map.c b/tepl/tepl-action-map.c
similarity index 100%
rename from gtef/gtef-action-map.c
rename to tepl/tepl-action-map.c
diff --git a/gtef/gtef-action-map.h b/tepl/tepl-action-map.h
similarity index 100%
rename from gtef/gtef-action-map.h
rename to tepl/tepl-action-map.h
diff --git a/gtef/gtef-application-window.c b/tepl/tepl-application-window.c
similarity index 100%
rename from gtef/gtef-application-window.c
rename to tepl/tepl-application-window.c
diff --git a/gtef/gtef-application-window.h b/tepl/tepl-application-window.h
similarity index 100%
rename from gtef/gtef-application-window.h
rename to tepl/tepl-application-window.h
diff --git a/gtef/gtef-application.c b/tepl/tepl-application.c
similarity index 100%
rename from gtef/gtef-application.c
rename to tepl/tepl-application.c
diff --git a/gtef/gtef-application.h b/tepl/tepl-application.h
similarity index 100%
rename from gtef/gtef-application.h
rename to tepl/tepl-application.h
diff --git a/gtef/gtef-buffer-input-stream.c b/tepl/tepl-buffer-input-stream.c
similarity index 100%
rename from gtef/gtef-buffer-input-stream.c
rename to tepl/tepl-buffer-input-stream.c
diff --git a/gtef/gtef-buffer-input-stream.h b/tepl/tepl-buffer-input-stream.h
similarity index 100%
rename from gtef/gtef-buffer-input-stream.h
rename to tepl/tepl-buffer-input-stream.h
diff --git a/gtef/gtef-buffer.c b/tepl/tepl-buffer.c
similarity index 100%
rename from gtef/gtef-buffer.c
rename to tepl/tepl-buffer.c
diff --git a/gtef/gtef-buffer.h b/tepl/tepl-buffer.h
similarity index 100%
rename from gtef/gtef-buffer.h
rename to tepl/tepl-buffer.h
diff --git a/gtef/gtef-encoding-converter.c b/tepl/tepl-encoding-converter.c
similarity index 100%
rename from gtef/gtef-encoding-converter.c
rename to tepl/tepl-encoding-converter.c
diff --git a/gtef/gtef-encoding-converter.h b/tepl/tepl-encoding-converter.h
similarity index 100%
rename from gtef/gtef-encoding-converter.h
rename to tepl/tepl-encoding-converter.h
diff --git a/gtef/gtef-encoding-private.h b/tepl/tepl-encoding-private.h
similarity index 100%
rename from gtef/gtef-encoding-private.h
rename to tepl/tepl-encoding-private.h
diff --git a/gtef/gtef-encoding.c b/tepl/tepl-encoding.c
similarity index 100%
rename from gtef/gtef-encoding.c
rename to tepl/tepl-encoding.c
diff --git a/gtef/gtef-encoding.h b/tepl/tepl-encoding.h
similarity index 100%
rename from gtef/gtef-encoding.h
rename to tepl/tepl-encoding.h
diff --git a/gtef/gtef-enum-types.c.template b/tepl/tepl-enum-types.c.template
similarity index 100%
rename from gtef/gtef-enum-types.c.template
rename to tepl/tepl-enum-types.c.template
diff --git a/gtef/gtef-enum-types.h.template b/tepl/tepl-enum-types.h.template
similarity index 100%
rename from gtef/gtef-enum-types.h.template
rename to tepl/tepl-enum-types.h.template
diff --git a/gtef/gtef-file-content-loader.c b/tepl/tepl-file-content-loader.c
similarity index 100%
rename from gtef/gtef-file-content-loader.c
rename to tepl/tepl-file-content-loader.c
diff --git a/gtef/gtef-file-content-loader.h b/tepl/tepl-file-content-loader.h
similarity index 100%
rename from gtef/gtef-file-content-loader.h
rename to tepl/tepl-file-content-loader.h
diff --git a/gtef/gtef-file-loader.c b/tepl/tepl-file-loader.c
similarity index 100%
rename from gtef/gtef-file-loader.c
rename to tepl/tepl-file-loader.c
diff --git a/gtef/gtef-file-loader.h b/tepl/tepl-file-loader.h
similarity index 100%
rename from gtef/gtef-file-loader.h
rename to tepl/tepl-file-loader.h
diff --git a/gtef/gtef-file-metadata.c b/tepl/tepl-file-metadata.c
similarity index 100%
rename from gtef/gtef-file-metadata.c
rename to tepl/tepl-file-metadata.c
diff --git a/gtef/gtef-file-metadata.h b/tepl/tepl-file-metadata.h
similarity index 100%
rename from gtef/gtef-file-metadata.h
rename to tepl/tepl-file-metadata.h
diff --git a/gtef/gtef-file-saver.c b/tepl/tepl-file-saver.c
similarity index 100%
rename from gtef/gtef-file-saver.c
rename to tepl/tepl-file-saver.c
diff --git a/gtef/gtef-file-saver.h b/tepl/tepl-file-saver.h
similarity index 100%
rename from gtef/gtef-file-saver.h
rename to tepl/tepl-file-saver.h
diff --git a/gtef/gtef-file.c b/tepl/tepl-file.c
similarity index 100%
rename from gtef/gtef-file.c
rename to tepl/tepl-file.c
diff --git a/gtef/gtef-file.h b/tepl/tepl-file.h
similarity index 100%
rename from gtef/gtef-file.h
rename to tepl/tepl-file.h
diff --git a/gtef/gtef-fold-region.c b/tepl/tepl-fold-region.c
similarity index 100%
rename from gtef/gtef-fold-region.c
rename to tepl/tepl-fold-region.c
diff --git a/gtef/gtef-fold-region.h b/tepl/tepl-fold-region.h
similarity index 100%
rename from gtef/gtef-fold-region.h
rename to tepl/tepl-fold-region.h
diff --git a/gtef/gtef-gutter-renderer-folds.c b/tepl/tepl-gutter-renderer-folds.c
similarity index 100%
rename from gtef/gtef-gutter-renderer-folds.c
rename to tepl/tepl-gutter-renderer-folds.c
diff --git a/gtef/gtef-gutter-renderer-folds.h b/tepl/tepl-gutter-renderer-folds.h
similarity index 100%
rename from gtef/gtef-gutter-renderer-folds.h
rename to tepl/tepl-gutter-renderer-folds.h
diff --git a/gtef/gtef-info-bar.c b/tepl/tepl-info-bar.c
similarity index 100%
rename from gtef/gtef-info-bar.c
rename to tepl/tepl-info-bar.c
diff --git a/gtef/gtef-info-bar.h b/tepl/tepl-info-bar.h
similarity index 100%
rename from gtef/gtef-info-bar.h
rename to tepl/tepl-info-bar.h
diff --git a/gtef/gtef-init.c b/tepl/tepl-init.c
similarity index 100%
rename from gtef/gtef-init.c
rename to tepl/tepl-init.c
diff --git a/gtef/gtef-io-error-info-bar.c b/tepl/tepl-io-error-info-bar.c
similarity index 100%
rename from gtef/gtef-io-error-info-bar.c
rename to tepl/tepl-io-error-info-bar.c
diff --git a/gtef/gtef-io-error-info-bar.h b/tepl/tepl-io-error-info-bar.h
similarity index 100%
rename from gtef/gtef-io-error-info-bar.h
rename to tepl/tepl-io-error-info-bar.h
diff --git a/gtef/gtef-iter.c b/tepl/tepl-iter.c
similarity index 100%
rename from gtef/gtef-iter.c
rename to tepl/tepl-iter.c
diff --git a/gtef/gtef-iter.h b/tepl/tepl-iter.h
similarity index 100%
rename from gtef/gtef-iter.h
rename to tepl/tepl-iter.h
diff --git a/gtef/gtef-menu-item.c b/tepl/tepl-menu-item.c
similarity index 100%
rename from gtef/gtef-menu-item.c
rename to tepl/tepl-menu-item.c
diff --git a/gtef/gtef-menu-item.h b/tepl/tepl-menu-item.h
similarity index 100%
rename from gtef/gtef-menu-item.h
rename to tepl/tepl-menu-item.h
diff --git a/gtef/gtef-menu-shell.c b/tepl/tepl-menu-shell.c
similarity index 100%
rename from gtef/gtef-menu-shell.c
rename to tepl/tepl-menu-shell.c
diff --git a/gtef/gtef-menu-shell.h b/tepl/tepl-menu-shell.h
similarity index 100%
rename from gtef/gtef-menu-shell.h
rename to tepl/tepl-menu-shell.h
diff --git a/gtef/gtef-metadata-manager.c b/tepl/tepl-metadata-manager.c
similarity index 100%
rename from gtef/gtef-metadata-manager.c
rename to tepl/tepl-metadata-manager.c
diff --git a/gtef/gtef-metadata-manager.h b/tepl/tepl-metadata-manager.h
similarity index 100%
rename from gtef/gtef-metadata-manager.h
rename to tepl/tepl-metadata-manager.h
diff --git a/gtef/gtef-progress-info-bar.c b/tepl/tepl-progress-info-bar.c
similarity index 100%
rename from gtef/gtef-progress-info-bar.c
rename to tepl/tepl-progress-info-bar.c
diff --git a/gtef/gtef-progress-info-bar.h b/tepl/tepl-progress-info-bar.h
similarity index 100%
rename from gtef/gtef-progress-info-bar.h
rename to tepl/tepl-progress-info-bar.h
diff --git a/gtef/gtef-tab.c b/tepl/tepl-tab.c
similarity index 100%
rename from gtef/gtef-tab.c
rename to tepl/tepl-tab.c
diff --git a/gtef/gtef-tab.h b/tepl/tepl-tab.h
similarity index 100%
rename from gtef/gtef-tab.h
rename to tepl/tepl-tab.h
diff --git a/gtef/gtef-types.h b/tepl/tepl-types.h
similarity index 100%
rename from gtef/gtef-types.h
rename to tepl/tepl-types.h
diff --git a/gtef/gtef-utils.c b/tepl/tepl-utils.c
similarity index 100%
rename from gtef/gtef-utils.c
rename to tepl/tepl-utils.c
diff --git a/gtef/gtef-utils.h b/tepl/tepl-utils.h
similarity index 100%
rename from gtef/gtef-utils.h
rename to tepl/tepl-utils.h
diff --git a/gtef/gtef-view.c b/tepl/tepl-view.c
similarity index 100%
rename from gtef/gtef-view.c
rename to tepl/tepl-view.c
diff --git a/gtef/gtef-view.h b/tepl/tepl-view.h
similarity index 100%
rename from gtef/gtef-view.h
rename to tepl/tepl-view.h
diff --git a/gtef/gtef.h b/tepl/tepl.h
similarity index 100%
rename from gtef/gtef.h
rename to tepl/tepl.h
diff --git a/tests/gtef-gutter-renderer-folds-sub.c b/tests/tepl-gutter-renderer-folds-sub.c
similarity index 100%
rename from tests/gtef-gutter-renderer-folds-sub.c
rename to tests/tepl-gutter-renderer-folds-sub.c
diff --git a/tests/gtef-gutter-renderer-folds-sub.h b/tests/tepl-gutter-renderer-folds-sub.h
similarity index 100%
rename from tests/gtef-gutter-renderer-folds-sub.h
rename to tests/tepl-gutter-renderer-folds-sub.h


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]