gitextract_vqbfnmbo/ ├── .gitignore ├── README.md ├── TODO ├── add.php ├── auth.php ├── docs/ │ ├── services.md │ └── services_ref.md ├── edit.php ├── hook.php ├── index.php ├── lib/ │ ├── auth.php │ ├── config.php.example │ ├── config_env.php │ ├── data.php │ ├── data_files.php │ ├── data_redis.php │ ├── http.php │ ├── init.php │ ├── service.php │ └── smarty/ │ ├── Config_File.class.php │ ├── Smarty.class.php │ ├── Smarty_Compiler.class.php │ ├── debug.tpl │ ├── internals/ │ │ ├── core.assemble_plugin_filepath.php │ │ ├── core.assign_smarty_interface.php │ │ ├── core.create_dir_structure.php │ │ ├── core.display_debug_console.php │ │ ├── core.get_include_path.php │ │ ├── core.get_microtime.php │ │ ├── core.get_php_resource.php │ │ ├── core.is_secure.php │ │ ├── core.is_trusted.php │ │ ├── core.load_plugins.php │ │ ├── core.load_resource_plugin.php │ │ ├── core.process_cached_inserts.php │ │ ├── core.process_compiled_include.php │ │ ├── core.read_cache_file.php │ │ ├── core.rm_auto.php │ │ ├── core.rmdir.php │ │ ├── core.run_insert_handler.php │ │ ├── core.smarty_include_php.php │ │ ├── core.write_cache_file.php │ │ ├── core.write_compiled_include.php │ │ ├── core.write_compiled_resource.php │ │ └── core.write_file.php │ └── plugins/ │ ├── block.textformat.php │ ├── compiler.assign.php │ ├── function.assign_debug_info.php │ ├── function.config_load.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.debug.php │ ├── function.eval.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── function.popup.php │ ├── function.popup_init.php │ ├── modifier.capitalize.php │ ├── modifier.cat.php │ ├── modifier.count_characters.php │ ├── modifier.count_paragraphs.php │ ├── modifier.count_sentences.php │ ├── modifier.count_words.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.default.php │ ├── modifier.escape.php │ ├── modifier.indent.php │ ├── modifier.lower.php │ ├── modifier.nl2br.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.string_format.php │ ├── modifier.strip.php │ ├── modifier.strip_tags.php │ ├── modifier.truncate.php │ ├── modifier.upper.php │ ├── modifier.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ └── shared.make_timestamp.php ├── logout.php ├── new.php ├── oauth.php ├── plugins/ │ ├── atlassian_stash_commits/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.tpl │ │ └── view.tpl │ ├── coveralls/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.html │ │ └── view.html │ ├── dployio/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.tpl │ │ └── view.tpl │ ├── fogbugz/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.html │ │ └── view.html │ ├── github_commits/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.txt │ │ └── view.txt │ ├── gitlab_commits/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.tpl │ │ └── view.tpl │ ├── kiln/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.html │ │ └── view.html │ ├── papertrail/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.txt │ │ └── view.txt │ ├── plugins_default/ │ │ ├── plugin_name.php │ │ ├── templates/ │ │ │ ├── description.txt │ │ │ ├── edit.txt │ │ │ ├── new.txt │ │ │ └── summary.txt │ │ └── tests/ │ │ └── plugin_tests.php │ ├── semaphore/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.html │ │ └── view.html │ ├── sentry/ │ │ ├── plugin.php │ │ └── templates/ │ │ ├── edit.html │ │ └── view.html │ └── testflight/ │ ├── plugin.php │ └── templates/ │ ├── edit.html │ └── view.html ├── style.css ├── templates/ │ ├── inc_foot.txt │ ├── inc_head.txt │ ├── inc_left.txt │ ├── page_add.txt │ ├── page_auth.txt │ ├── page_edit.txt │ ├── page_index.txt │ ├── page_login.txt │ ├── page_new.txt │ └── page_view.txt └── view.php