├── .editorconfig ├── .gitignore ├── .htaccess ├── 2fa.php ├── CONTRIBUTING.md ├── README.md ├── WEB-INF ├── config.php.dist ├── lib │ ├── Auth.class.php │ ├── I18n.class.php │ ├── PieChartEx.class.php │ ├── auth │ │ ├── Auth_db.class.php │ │ └── Auth_ldap.class.php │ ├── common.lib.php │ ├── form │ │ ├── ActionErrors.class.php │ │ ├── ActionForm.class.php │ │ ├── Calendar.class.php │ │ ├── Checkbox.class.php │ │ ├── CheckboxCellRenderer.class.php │ │ ├── CheckboxGroup.class.php │ │ ├── Combobox.class.php │ │ ├── DateField.class.php │ │ ├── DefaultCellRenderer.class.php │ │ ├── FloatField.class.php │ │ ├── Form.class.php │ │ ├── FormElement.class.php │ │ ├── Hidden.class.php │ │ ├── MultipleSelectCombobox.class.php │ │ ├── PasswordField.class.php │ │ ├── Submit.class.php │ │ ├── Table.class.php │ │ ├── TableColumn.class.php │ │ ├── TextArea.class.php │ │ ├── TextField.class.php │ │ └── UploadFile.class.php │ ├── html │ │ └── HttpRequest.class.php │ ├── libchart │ │ ├── classes │ │ │ ├── libchart.php │ │ │ ├── model │ │ │ │ ├── DataSet.php │ │ │ │ ├── Point.php │ │ │ │ ├── XYDataSet.php │ │ │ │ └── XYSeriesDataSet.php │ │ │ └── view │ │ │ │ ├── axis │ │ │ │ ├── Axis.php │ │ │ │ └── Bound.php │ │ │ │ ├── caption │ │ │ │ └── Caption.php │ │ │ │ ├── chart │ │ │ │ ├── BarChart.php │ │ │ │ ├── Chart.php │ │ │ │ ├── HorizontalBarChart.php │ │ │ │ ├── LineChart.php │ │ │ │ ├── PieChart.php │ │ │ │ └── VerticalBarChart.php │ │ │ │ ├── color │ │ │ │ ├── Color.php │ │ │ │ ├── ColorSet.php │ │ │ │ └── Palette.php │ │ │ │ ├── plot │ │ │ │ └── Plot.php │ │ │ │ ├── primitive │ │ │ │ ├── Padding.php │ │ │ │ ├── Primitive.php │ │ │ │ └── Rectangle.php │ │ │ │ └── text │ │ │ │ └── Text.php │ │ └── fonts │ │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ │ └── DejaVuSansCondensed.ttf │ ├── mail │ │ └── Mailer.class.php │ ├── pear │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── MDB2.php │ │ ├── MDB2 │ │ │ ├── Date.php │ │ │ ├── Driver │ │ │ │ ├── Datatype │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── mysql.php │ │ │ │ │ └── mysqli.php │ │ │ │ ├── Function │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── mysql.php │ │ │ │ │ └── mysqli.php │ │ │ │ ├── Manager │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── mysql.php │ │ │ │ │ └── mysqli.php │ │ │ │ ├── Native │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── mysql.php │ │ │ │ │ └── mysqli.php │ │ │ │ ├── Reverse │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── mysql.php │ │ │ │ │ └── mysqli.php │ │ │ │ ├── mysql.php │ │ │ │ └── mysqli.php │ │ │ ├── Extended.php │ │ │ ├── Iterator.php │ │ │ └── LOB.php │ │ ├── Mail.php │ │ ├── Mail │ │ │ ├── RFC822.php │ │ │ ├── mail.php │ │ │ ├── mock.php │ │ │ ├── null.php │ │ │ ├── sendmail.php │ │ │ ├── smtp.php │ │ │ └── smtpmx.php │ │ ├── Net │ │ │ ├── SMTP.php │ │ │ └── Socket.php │ │ ├── OS │ │ │ └── Guess.php │ │ ├── PEAR.php │ │ ├── PEAR │ │ │ ├── Autoloader.php │ │ │ ├── Builder.php │ │ │ ├── ChannelFile.php │ │ │ ├── ChannelFile │ │ │ │ └── Parser.php │ │ │ ├── Command.php │ │ │ ├── Command │ │ │ │ ├── Auth.php │ │ │ │ ├── Auth.xml │ │ │ │ ├── Build.php │ │ │ │ ├── Build.xml │ │ │ │ ├── Channels.php │ │ │ │ ├── Channels.xml │ │ │ │ ├── Common.php │ │ │ │ ├── Config.php │ │ │ │ ├── Config.xml │ │ │ │ ├── Install.php │ │ │ │ ├── Install.xml │ │ │ │ ├── Mirror.php │ │ │ │ ├── Mirror.xml │ │ │ │ ├── Package.php │ │ │ │ ├── Package.xml │ │ │ │ ├── Pickle.php │ │ │ │ ├── Pickle.xml │ │ │ │ ├── Registry.php │ │ │ │ ├── Registry.xml │ │ │ │ ├── Remote.php │ │ │ │ ├── Remote.xml │ │ │ │ ├── Test.php │ │ │ │ └── Test.xml │ │ │ ├── Common.php │ │ │ ├── Config.php │ │ │ ├── Dependency2.php │ │ │ ├── DependencyDB.php │ │ │ ├── Downloader.php │ │ │ ├── Downloader │ │ │ │ └── Package.php │ │ │ ├── ErrorStack.php │ │ │ ├── Exception.php │ │ │ ├── Frontend.php │ │ │ ├── Frontend │ │ │ │ └── CLI.php │ │ │ ├── Installer.php │ │ │ ├── Installer │ │ │ │ ├── Role.php │ │ │ │ └── Role │ │ │ │ │ ├── Cfg.php │ │ │ │ │ ├── Cfg.xml │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── Data.php │ │ │ │ │ ├── Data.xml │ │ │ │ │ ├── Doc.php │ │ │ │ │ ├── Doc.xml │ │ │ │ │ ├── Ext.php │ │ │ │ │ ├── Ext.xml │ │ │ │ │ ├── Man.php │ │ │ │ │ ├── Man.xml │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Php.xml │ │ │ │ │ ├── Script.php │ │ │ │ │ ├── Script.xml │ │ │ │ │ ├── Src.php │ │ │ │ │ ├── Src.xml │ │ │ │ │ ├── Test.php │ │ │ │ │ ├── Test.xml │ │ │ │ │ ├── Www.php │ │ │ │ │ └── Www.xml │ │ │ ├── PackageFile.php │ │ │ ├── PackageFile │ │ │ │ ├── Generator │ │ │ │ │ ├── v1.php │ │ │ │ │ └── v2.php │ │ │ │ ├── Parser │ │ │ │ │ ├── v1.php │ │ │ │ │ └── v2.php │ │ │ │ ├── v1.php │ │ │ │ ├── v2.php │ │ │ │ └── v2 │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── rw.php │ │ │ ├── Packager.php │ │ │ ├── REST.php │ │ │ ├── REST │ │ │ │ ├── 10.php │ │ │ │ ├── 11.php │ │ │ │ └── 13.php │ │ │ ├── Registry.php │ │ │ ├── RunTest.php │ │ │ ├── Task │ │ │ │ ├── Common.php │ │ │ │ ├── Postinstallscript.php │ │ │ │ ├── Postinstallscript │ │ │ │ │ └── rw.php │ │ │ │ ├── Replace.php │ │ │ │ ├── Replace │ │ │ │ │ └── rw.php │ │ │ │ ├── Unixeol.php │ │ │ │ ├── Unixeol │ │ │ │ │ └── rw.php │ │ │ │ ├── Windowseol.php │ │ │ │ └── Windowseol │ │ │ │ │ └── rw.php │ │ │ ├── Validate.php │ │ │ ├── Validator │ │ │ │ └── PECL.php │ │ │ └── XMLParser.php │ │ ├── README.rst │ │ ├── System.php │ │ ├── package.dtd │ │ ├── readme_pear_integration.txt │ │ ├── scripts │ │ │ ├── pear.bat │ │ │ ├── pear.sh │ │ │ ├── pearcmd.php │ │ │ ├── peardev.bat │ │ │ ├── peardev.sh │ │ │ ├── pecl.bat │ │ │ ├── pecl.sh │ │ │ └── peclcmd.php │ │ └── template.spec │ ├── smarty │ │ ├── Autoloader.php │ │ ├── Smarty.class.php │ │ ├── bootstrap.php │ │ ├── debug.tpl │ │ ├── functions.php │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.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 │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.count.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.explode.php │ │ │ ├── modifier.mb_wordwrap.php │ │ │ ├── modifier.number_format.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.nl2br.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.round.php │ │ │ ├── modifiercompiler.str_repeat.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.strlen.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_data.php │ │ │ ├── smarty_internal_block.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_block_child.php │ │ │ ├── smarty_internal_compile_block_parent.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_child.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_make_nocache.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_parent.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_foreachsection.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_shared_inheritance.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_errorhandler.php │ │ │ ├── smarty_internal_extension_handler.php │ │ │ ├── smarty_internal_method_addautoloadfilters.php │ │ │ ├── smarty_internal_method_adddefaultmodifiers.php │ │ │ ├── smarty_internal_method_append.php │ │ │ ├── smarty_internal_method_appendbyref.php │ │ │ ├── smarty_internal_method_assignbyref.php │ │ │ ├── smarty_internal_method_assignglobal.php │ │ │ ├── smarty_internal_method_clearallassign.php │ │ │ ├── smarty_internal_method_clearallcache.php │ │ │ ├── smarty_internal_method_clearassign.php │ │ │ ├── smarty_internal_method_clearcache.php │ │ │ ├── smarty_internal_method_clearcompiledtemplate.php │ │ │ ├── smarty_internal_method_clearconfig.php │ │ │ ├── smarty_internal_method_compileallconfig.php │ │ │ ├── smarty_internal_method_compilealltemplates.php │ │ │ ├── smarty_internal_method_configload.php │ │ │ ├── smarty_internal_method_createdata.php │ │ │ ├── smarty_internal_method_getautoloadfilters.php │ │ │ ├── smarty_internal_method_getconfigvariable.php │ │ │ ├── smarty_internal_method_getconfigvars.php │ │ │ ├── smarty_internal_method_getdebugtemplate.php │ │ │ ├── smarty_internal_method_getdefaultmodifiers.php │ │ │ ├── smarty_internal_method_getglobal.php │ │ │ ├── smarty_internal_method_getregisteredobject.php │ │ │ ├── smarty_internal_method_getstreamvariable.php │ │ │ ├── smarty_internal_method_gettags.php │ │ │ ├── smarty_internal_method_gettemplatevars.php │ │ │ ├── smarty_internal_method_literals.php │ │ │ ├── smarty_internal_method_loadfilter.php │ │ │ ├── smarty_internal_method_loadplugin.php │ │ │ ├── smarty_internal_method_mustcompile.php │ │ │ ├── smarty_internal_method_registercacheresource.php │ │ │ ├── smarty_internal_method_registerclass.php │ │ │ ├── smarty_internal_method_registerdefaultconfighandler.php │ │ │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ │ │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ │ │ ├── smarty_internal_method_registerfilter.php │ │ │ ├── smarty_internal_method_registerobject.php │ │ │ ├── smarty_internal_method_registerplugin.php │ │ │ ├── smarty_internal_method_registerresource.php │ │ │ ├── smarty_internal_method_setautoloadfilters.php │ │ │ ├── smarty_internal_method_setdebugtemplate.php │ │ │ ├── smarty_internal_method_setdefaultmodifiers.php │ │ │ ├── smarty_internal_method_unloadfilter.php │ │ │ ├── smarty_internal_method_unregistercacheresource.php │ │ │ ├── smarty_internal_method_unregisterfilter.php │ │ │ ├── smarty_internal_method_unregisterobject.php │ │ │ ├── smarty_internal_method_unregisterplugin.php │ │ │ ├── smarty_internal_method_unregisterresource.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_parsetree_code.php │ │ │ ├── smarty_internal_parsetree_dq.php │ │ │ ├── smarty_internal_parsetree_dqcontent.php │ │ │ ├── smarty_internal_parsetree_tag.php │ │ │ ├── smarty_internal_parsetree_template.php │ │ │ ├── smarty_internal_parsetree_text.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_runtime_cachemodify.php │ │ │ ├── smarty_internal_runtime_cacheresourcefile.php │ │ │ ├── smarty_internal_runtime_capture.php │ │ │ ├── smarty_internal_runtime_codeframe.php │ │ │ ├── smarty_internal_runtime_filterhandler.php │ │ │ ├── smarty_internal_runtime_foreach.php │ │ │ ├── smarty_internal_runtime_getincludepath.php │ │ │ ├── smarty_internal_runtime_inheritance.php │ │ │ ├── smarty_internal_runtime_make_nocache.php │ │ │ ├── smarty_internal_runtime_tplfunction.php │ │ │ ├── smarty_internal_runtime_updatecache.php │ │ │ ├── smarty_internal_runtime_updatescope.php │ │ │ ├── smarty_internal_runtime_writefile.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_testinstall.php │ │ │ ├── smarty_internal_undefined.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ ├── smarty_security.php │ │ │ ├── smarty_template_cached.php │ │ │ ├── smarty_template_compiled.php │ │ │ ├── smarty_template_config.php │ │ │ ├── smarty_template_resource_base.php │ │ │ ├── smarty_template_source.php │ │ │ ├── smarty_undefined_variable.php │ │ │ ├── smarty_variable.php │ │ │ ├── smartycompilerexception.php │ │ │ └── smartyexception.php │ ├── tdcron │ │ ├── class.tdcron.entry.php │ │ └── class.tdcron.php │ ├── ttAdmin.class.php │ ├── ttBehalfUser.class.php │ ├── ttChartHelper.class.php │ ├── ttClientHelper.class.php │ ├── ttConfigHelper.class.php │ ├── ttCronJobHelper.class.php │ ├── ttDate.class.php │ ├── ttDebugTracer.class.php │ ├── ttExpenseHelper.class.php │ ├── ttFavReportHelper.class.php │ ├── ttFileHelper.class.php │ ├── ttGroup.class.php │ ├── ttGroupExportHelper.class.php │ ├── ttGroupHelper.class.php │ ├── ttInvoiceHelper.class.php │ ├── ttNotificationHelper.class.php │ ├── ttOrgExportHelper.class.php │ ├── ttOrgHelper.class.php │ ├── ttOrgImportHelper.class.php │ ├── ttPeriod.class.php │ ├── ttPredefinedExpenseHelper.class.php │ ├── ttProjectHelper.class.php │ ├── ttRegistrator.class.php │ ├── ttReportHelper.class.php │ ├── ttRoleHelper.class.php │ ├── ttTaskHelper.class.php │ ├── ttTeamHelper.class.php │ ├── ttTemplateHelper.class.php │ ├── ttTimeHelper.class.php │ ├── ttTimesheetHelper.class.php │ ├── ttUser.class.php │ ├── ttUserConfig.class.php │ ├── ttUserHelper.class.php │ └── ttWeekViewHelper.class.php ├── resources │ ├── ca.lang.php │ ├── cs.lang.php │ ├── da.lang.php │ ├── de.lang.php │ ├── en.lang.php │ ├── es.lang.php │ ├── et.lang.php │ ├── fa.lang.php │ ├── fi.lang.php │ ├── fr.lang.php │ ├── gr.lang.php │ ├── he.lang.php │ ├── hu.lang.php │ ├── it.lang.php │ ├── ja.lang.php │ ├── ko.lang.php │ ├── nl.lang.php │ ├── no.lang.php │ ├── pl.lang.php │ ├── pt-br.lang.php │ ├── pt.lang.php │ ├── ro.lang.php │ ├── ru.lang.php │ ├── sk.lang.php │ ├── sl.lang.php │ ├── sr.lang.php │ ├── sv.lang.php │ ├── tr.lang.php │ ├── zh-cn.lang.php │ └── zh-tw.lang.php ├── templates │ ├── 2fa.tpl │ ├── access_denied.tpl │ ├── admin_group_add.tpl │ ├── admin_group_delete.tpl │ ├── admin_group_edit.tpl │ ├── admin_groups.tpl │ ├── admin_options.tpl │ ├── cf_custom_field_add.tpl │ ├── cf_custom_field_delete.tpl │ ├── cf_custom_field_edit.tpl │ ├── cf_custom_fields.tpl │ ├── cf_dropdown_option_add.tpl │ ├── cf_dropdown_option_delete.tpl │ ├── cf_dropdown_option_edit.tpl │ ├── cf_dropdown_options.tpl │ ├── charts.tpl │ ├── client_add.tpl │ ├── client_delete.tpl │ ├── client_edit.tpl │ ├── clients.tpl │ ├── datetime_format_preview.tpl │ ├── display_options.tpl │ ├── entity_files.tpl │ ├── expense_delete.tpl │ ├── expense_edit.tpl │ ├── expenses.tpl │ ├── export.tpl │ ├── file_delete.tpl │ ├── file_download.tpl │ ├── file_edit.tpl │ ├── footer.tpl │ ├── group_add.tpl │ ├── group_advanced_edit.tpl │ ├── group_delete.tpl │ ├── group_edit.tpl │ ├── groups.tpl │ ├── header.tpl │ ├── import.tpl │ ├── index.tpl │ ├── invoice_add.tpl │ ├── invoice_delete.tpl │ ├── invoice_view.tpl │ ├── invoices.tpl │ ├── locking.tpl │ ├── login.db.tpl │ ├── login.ldap.tpl │ ├── login.tpl │ ├── mail.tpl │ ├── notification_add.tpl │ ├── notification_delete.tpl │ ├── notification_edit.tpl │ ├── notifications.tpl │ ├── password_change.tpl │ ├── password_reset.tpl │ ├── plugins.tpl │ ├── predefined_expense_add.tpl │ ├── predefined_expense_delete.tpl │ ├── predefined_expense_edit.tpl │ ├── predefined_expenses.tpl │ ├── profile_edit.tpl │ ├── project_add.tpl │ ├── project_delete.tpl │ ├── project_edit.tpl │ ├── projects.tpl │ ├── puncher.tpl │ ├── puncher_conf.tpl │ ├── quotas.tpl │ ├── register.tpl │ ├── report.tpl │ ├── reports.tpl │ ├── role_add.tpl │ ├── role_delete.tpl │ ├── role_edit.tpl │ ├── roles.tpl │ ├── site_map.tpl │ ├── success.tpl │ ├── swap_roles.tpl │ ├── task_add.tpl │ ├── task_delete.tpl │ ├── task_edit.tpl │ ├── tasks.tpl │ ├── template_add.tpl │ ├── template_delete.tpl │ ├── template_edit.tpl │ ├── templates.tpl │ ├── time.tpl │ ├── time_delete.tpl │ ├── time_edit.tpl │ ├── time_script.tpl │ ├── timesheet_add.tpl │ ├── timesheet_delete.tpl │ ├── timesheet_edit.tpl │ ├── timesheet_view.tpl │ ├── timesheets.tpl │ ├── user_add.tpl │ ├── user_delete.tpl │ ├── user_edit.tpl │ ├── users.tpl │ ├── week.tpl │ ├── week_view.tpl │ └── work_units.tpl └── templates_c │ └── keepme ├── access_denied.php ├── admin_group_add.php ├── admin_group_delete.php ├── admin_group_edit.php ├── admin_groups.php ├── admin_options.php ├── cf_custom_field_add.php ├── cf_custom_field_delete.php ├── cf_custom_field_edit.php ├── cf_custom_fields.php ├── cf_dropdown_option_add.php ├── cf_dropdown_option_delete.php ├── cf_dropdown_option_edit.php ├── cf_dropdown_options.php ├── charts.php ├── client_add.php ├── client_delete.php ├── client_edit.php ├── clients.php ├── cron.php ├── custom_css.php ├── dbinstall.php ├── default.css ├── display_options.php ├── docker-compose.yml ├── dockerfile-db ├── dockerfile-tt ├── expense_delete.php ├── expense_edit.php ├── expense_files.php ├── expenses.php ├── export.php ├── favicon.ico ├── feature_disabled.php ├── file_delete.php ├── file_download.php ├── file_edit.php ├── group_add.php ├── group_advanced_edit.php ├── group_delete.php ├── group_edit.php ├── groups.php ├── img ├── 1x1.gif ├── calendar.gif ├── icon-delete.png ├── icon-edit.png ├── icon-file.png ├── icon-files.png ├── icon-now.png ├── icon-question-mark.png ├── logo.png ├── subm_bg.gif └── top_bg.gif ├── import.php ├── index.php ├── initialize.php ├── invoice_add.php ├── invoice_delete.php ├── invoice_send.php ├── invoice_view.php ├── invoices.php ├── js ├── strftime.js └── strptime.js ├── license.txt ├── locking.php ├── login.php ├── logout.php ├── mysql.sql ├── notification_add.php ├── notification_delete.php ├── notification_edit.php ├── notifications.php ├── password_change.php ├── password_reset.php ├── plugins.php ├── plugins ├── CustomFields.class.php └── MonthlyQuota.class.php ├── predefined_expense_add.php ├── predefined_expense_delete.php ├── predefined_expense_edit.php ├── predefined_expenses.php ├── profile_edit.php ├── project_add.php ├── project_delete.php ├── project_edit.php ├── project_files.php ├── projects.php ├── puncher.php ├── puncher_conf.php ├── quotas.php ├── readme.txt ├── register.php ├── report.php ├── report_send.php ├── reports.php ├── role_add.php ├── role_delete.php ├── role_edit.php ├── roles.php ├── rtl.css ├── site_map.php ├── success.php ├── swap_roles.php ├── task_add.php ├── task_delete.php ├── task_edit.php ├── tasks.php ├── template_add.php ├── template_delete.php ├── template_edit.php ├── templates.php ├── time.php ├── time_delete.php ├── time_edit.php ├── time_files.php ├── timesheet_add.php ├── timesheet_delete.php ├── timesheet_edit.php ├── timesheet_files.php ├── timesheet_view.php ├── timesheets.php ├── tofile.php ├── topdf.php ├── user_add.php ├── user_delete.php ├── user_edit.php ├── users.php ├── week.php ├── week_view.php └── work_units.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/.htaccess -------------------------------------------------------------------------------- /2fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/2fa.php -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/README.md -------------------------------------------------------------------------------- /WEB-INF/config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/config.php.dist -------------------------------------------------------------------------------- /WEB-INF/lib/Auth.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/Auth.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/I18n.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/I18n.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/PieChartEx.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/PieChartEx.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/auth/Auth_db.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/auth/Auth_db.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/auth/Auth_ldap.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/auth/Auth_ldap.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/common.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/common.lib.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/ActionErrors.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/ActionErrors.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/ActionForm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/ActionForm.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Calendar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Calendar.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Checkbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Checkbox.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/CheckboxCellRenderer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/CheckboxCellRenderer.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/CheckboxGroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/CheckboxGroup.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Combobox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Combobox.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/DateField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/DateField.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/DefaultCellRenderer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/DefaultCellRenderer.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/FloatField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/FloatField.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Form.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Form.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/FormElement.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/FormElement.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Hidden.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Hidden.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/MultipleSelectCombobox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/MultipleSelectCombobox.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/PasswordField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/PasswordField.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Submit.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Submit.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/Table.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/Table.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/TableColumn.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/TableColumn.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/TextArea.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/TextArea.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/TextField.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/TextField.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/form/UploadFile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/form/UploadFile.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/html/HttpRequest.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/html/HttpRequest.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/libchart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/libchart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/model/DataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/model/DataSet.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/model/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/model/Point.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/model/XYDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/model/XYDataSet.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/model/XYSeriesDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/model/XYSeriesDataSet.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/axis/Axis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/axis/Axis.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/axis/Bound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/axis/Bound.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/caption/Caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/caption/Caption.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/BarChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/BarChart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/Chart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/HorizontalBarChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/HorizontalBarChart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/LineChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/LineChart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/PieChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/PieChart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/chart/VerticalBarChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/chart/VerticalBarChart.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/color/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/color/Color.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/color/ColorSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/color/ColorSet.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/color/Palette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/color/Palette.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/plot/Plot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/plot/Plot.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/primitive/Padding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/primitive/Padding.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/primitive/Primitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/primitive/Primitive.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/primitive/Rectangle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/primitive/Rectangle.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/classes/view/text/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/classes/view/text/Text.php -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/fonts/DejaVuSansCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/fonts/DejaVuSansCondensed-Bold.ttf -------------------------------------------------------------------------------- /WEB-INF/lib/libchart/fonts/DejaVuSansCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/libchart/fonts/DejaVuSansCondensed.ttf -------------------------------------------------------------------------------- /WEB-INF/lib/mail/Mailer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/mail/Mailer.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/INSTALL -------------------------------------------------------------------------------- /WEB-INF/lib/pear/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/LICENSE -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Date.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Datatype/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Datatype/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Datatype/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Datatype/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Datatype/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Datatype/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Function/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Function/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Function/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Function/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Function/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Function/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Manager/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Manager/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Manager/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Manager/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Manager/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Manager/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Native/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Native/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Native/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Native/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Native/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Native/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Reverse/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Reverse/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Reverse/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Reverse/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/Reverse/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/Reverse/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/mysql.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Driver/mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Driver/mysqli.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Extended.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/Iterator.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/MDB2/LOB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/MDB2/LOB.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/RFC822.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/RFC822.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/mail.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/mock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/mock.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/null.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/sendmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/sendmail.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/smtp.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Mail/smtpmx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Mail/smtpmx.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Net/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Net/SMTP.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/Net/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/Net/Socket.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/OS/Guess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/OS/Guess.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Autoloader.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Builder.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/ChannelFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/ChannelFile.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/ChannelFile/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/ChannelFile/Parser.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Auth.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Auth.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Build.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Build.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Channels.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Channels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Channels.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Config.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Config.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Install.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Install.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Mirror.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Mirror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Mirror.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Package.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Package.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Pickle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Pickle.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Pickle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Pickle.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Registry.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Registry.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Remote.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Remote.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Test.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Command/Test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Command/Test.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Config.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Dependency2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Dependency2.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/DependencyDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/DependencyDB.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Downloader.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Downloader/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Downloader/Package.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/ErrorStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/ErrorStack.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Exception.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Frontend.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Frontend/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Frontend/CLI.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Cfg.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Cfg.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Data.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Data.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Doc.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Doc.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Ext.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Ext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Ext.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Man.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Man.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Man.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Man.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Php.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Php.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Script.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Script.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Src.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Src.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Src.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Test.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Test.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Www.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Www.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Installer/Role/Www.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Installer/Role/Www.xml -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/Generator/v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/Generator/v1.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/Generator/v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/Generator/v2.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/Parser/v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/Parser/v1.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/Parser/v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/Parser/v2.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/v1.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/v2.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/v2/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/v2/Validator.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/PackageFile/v2/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/PackageFile/v2/rw.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Packager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Packager.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/REST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/REST.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/REST/10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/REST/10.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/REST/11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/REST/11.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/REST/13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/REST/13.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Registry.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/RunTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/RunTest.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Common.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Postinstallscript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Postinstallscript.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Postinstallscript/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Postinstallscript/rw.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Replace.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Replace/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Replace/rw.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Unixeol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Unixeol.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Unixeol/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Unixeol/rw.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Windowseol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Windowseol.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Task/Windowseol/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Task/Windowseol/rw.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Validate.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/Validator/PECL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/Validator/PECL.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/PEAR/XMLParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/PEAR/XMLParser.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/README.rst -------------------------------------------------------------------------------- /WEB-INF/lib/pear/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/System.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/package.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/package.dtd -------------------------------------------------------------------------------- /WEB-INF/lib/pear/readme_pear_integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/readme_pear_integration.txt -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/pear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/pear.bat -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/pear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/pear.sh -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/pearcmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/pearcmd.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/peardev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/peardev.bat -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/peardev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/peardev.sh -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/pecl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/pecl.bat -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/pecl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/pecl.sh -------------------------------------------------------------------------------- /WEB-INF/lib/pear/scripts/peclcmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/scripts/peclcmd.php -------------------------------------------------------------------------------- /WEB-INF/lib/pear/template.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/pear/template.spec -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/Autoloader.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/Smarty.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/bootstrap.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/debug.tpl -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/functions.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/block.textformat.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.counter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_image.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_options.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_radios.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.html_table.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.mailto.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/function.math.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.count.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.escape.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.explode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.explode.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.mb_wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.mb_wordwrap.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.number_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.number_format.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.replace.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.cat.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.count_characters.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.count_paragraphs.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.count_sentences.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.count_words.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.default.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.escape.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.from_charset.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.indent.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.lower.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.nl2br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.nl2br.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.noprint.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.round.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.round.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.str_repeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.str_repeat.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.string_format.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.strip.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.strip_tags.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.strlen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.strlen.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.to_charset.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.unescape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.unescape.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.upper.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/modifiercompiler.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/modifiercompiler.wordwrap.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/shared.literal_compiler_param.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/shared.mb_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/shared.mb_str_replace.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/shared.mb_unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/shared.mb_unicode.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/plugins/variablefilter.htmlspecialchars.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_cacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_cacheresource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_cacheresource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_cacheresource_custom.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_data.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_block.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_cacheresource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_cacheresource_file.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_append.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_assign.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block_child.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_block_parent.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_break.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_call.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_capture.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_child.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_config_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_config_load.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_continue.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_debug.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_eval.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_extends.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_for.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_for.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_foreach.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_function.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_if.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_include.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_insert.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_ldelim.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_make_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_make_nocache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_nocache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_parent.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_foreachsection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_foreachsection.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_modifier.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_object_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_object_function.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_print_expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_print_expression.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_registered_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_registered_block.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_registered_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_registered_function.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_special_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_private_special_variable.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_rdelim.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_section.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_setfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_setfilter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_shared_inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_shared_inheritance.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compile_while.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_compilebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_compilebase.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_config_file_compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_config_file_compiler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_configfilelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_configfilelexer.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_configfileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_configfileparser.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_errorhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_errorhandler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_extension_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_extension_handler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_addautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_addautoloadfilters.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_append.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_appendbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_appendbyref.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_assignbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_assignbyref.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_assignglobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_assignglobal.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearallassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearallassign.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearallcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearallcache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearassign.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearcache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_clearconfig.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_compileallconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_compileallconfig.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_compilealltemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_compilealltemplates.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_configload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_configload.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_createdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_createdata.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getautoloadfilters.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getconfigvariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getconfigvariable.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getconfigvars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getconfigvars.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getdebugtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getdebugtemplate.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getglobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getglobal.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getregisteredobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getregisteredobject.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getstreamvariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_getstreamvariable.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_gettags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_gettags.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_gettemplatevars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_gettemplatevars.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_literals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_literals.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_loadfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_loadfilter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_loadplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_loadplugin.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_mustcompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_mustcompile.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registercacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registercacheresource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerclass.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerfilter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerobject.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerplugin.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_registerresource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setautoloadfilters.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setdebugtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setdebugtemplate.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unloadfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unloadfilter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregistercacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregistercacheresource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterfilter.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterobject.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterplugin.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_method_unregisterresource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_nocache_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_nocache_insert.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_code.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_dq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_dq.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_dqcontent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_dqcontent.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_tag.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_template.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_parsetree_text.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_eval.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_extends.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_file.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_php.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_stream.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_resource_string.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_cachemodify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_cachemodify.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_cacheresourcefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_cacheresourcefile.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_capture.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_codeframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_codeframe.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_filterhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_filterhandler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_foreach.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_getincludepath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_getincludepath.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_inheritance.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_make_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_make_nocache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_tplfunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_tplfunction.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_updatecache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_updatecache.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_updatescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_updatescope.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_writefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_runtime_writefile.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_templatebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_templatebase.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_templatecompilerbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_templatecompilerbase.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_templatelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_templatelexer.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_templateparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_templateparser.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_testinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_testinstall.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_internal_undefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_internal_undefined.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_resource.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_resource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_resource_custom.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_resource_recompiled.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_resource_uncompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_resource_uncompiled.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_template_cached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_template_cached.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_template_compiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_template_compiled.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_template_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_template_config.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_template_resource_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_template_resource_base.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_template_source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_template_source.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_undefined_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_undefined_variable.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smarty_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smarty_variable.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smartycompilerexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smartycompilerexception.php -------------------------------------------------------------------------------- /WEB-INF/lib/smarty/sysplugins/smartyexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/smarty/sysplugins/smartyexception.php -------------------------------------------------------------------------------- /WEB-INF/lib/tdcron/class.tdcron.entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/tdcron/class.tdcron.entry.php -------------------------------------------------------------------------------- /WEB-INF/lib/tdcron/class.tdcron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/tdcron/class.tdcron.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttAdmin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttAdmin.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttBehalfUser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttBehalfUser.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttChartHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttChartHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttClientHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttClientHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttConfigHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttConfigHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttCronJobHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttCronJobHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttDate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttDate.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttDebugTracer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttDebugTracer.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttExpenseHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttExpenseHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttFavReportHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttFavReportHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttFileHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttFileHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttGroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttGroup.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttGroupExportHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttGroupExportHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttGroupHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttGroupHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttInvoiceHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttInvoiceHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttNotificationHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttNotificationHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttOrgExportHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttOrgExportHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttOrgHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttOrgHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttOrgImportHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttOrgImportHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttPeriod.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttPeriod.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttPredefinedExpenseHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttPredefinedExpenseHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttProjectHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttProjectHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttRegistrator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttRegistrator.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttReportHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttReportHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttRoleHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttRoleHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttTaskHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttTaskHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttTeamHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttTeamHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttTemplateHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttTemplateHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttTimeHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttTimeHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttTimesheetHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttTimesheetHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttUser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttUser.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttUserConfig.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttUserConfig.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttUserHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttUserHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/lib/ttWeekViewHelper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/lib/ttWeekViewHelper.class.php -------------------------------------------------------------------------------- /WEB-INF/resources/ca.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/ca.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/cs.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/cs.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/da.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/da.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/de.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/de.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/en.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/en.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/es.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/es.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/et.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/et.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/fa.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/fa.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/fi.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/fi.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/fr.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/fr.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/gr.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/gr.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/he.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/he.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/hu.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/hu.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/it.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/it.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/ja.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/ja.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/ko.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/ko.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/nl.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/nl.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/no.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/no.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/pl.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/pl.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/pt-br.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/pt-br.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/pt.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/pt.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/ro.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/ro.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/ru.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/ru.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/sk.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/sk.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/sl.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/sl.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/sr.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/sr.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/sv.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/sv.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/tr.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/tr.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/zh-cn.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/zh-cn.lang.php -------------------------------------------------------------------------------- /WEB-INF/resources/zh-tw.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/resources/zh-tw.lang.php -------------------------------------------------------------------------------- /WEB-INF/templates/2fa.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/2fa.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/access_denied.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WEB-INF/templates/admin_group_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/admin_group_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/admin_group_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/admin_group_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/admin_group_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/admin_group_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/admin_groups.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/admin_groups.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/admin_options.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/admin_options.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_custom_field_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_custom_field_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_custom_field_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_custom_field_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_custom_field_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_custom_field_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_custom_fields.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_custom_fields.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_dropdown_option_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_dropdown_option_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_dropdown_option_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_dropdown_option_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_dropdown_option_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_dropdown_option_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/cf_dropdown_options.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/cf_dropdown_options.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/charts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/charts.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/client_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/client_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/client_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/client_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/client_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/client_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/clients.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/clients.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/datetime_format_preview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/datetime_format_preview.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/display_options.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/display_options.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/entity_files.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/entity_files.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/expense_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/expense_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/expense_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/expense_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/expenses.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/expenses.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/export.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/export.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/file_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/file_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/file_download.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WEB-INF/templates/file_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/file_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/footer.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/group_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/group_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/group_advanced_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/group_advanced_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/group_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/group_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/group_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/group_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/groups.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/groups.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/header.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/import.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/import.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/index.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/invoice_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/invoice_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/invoice_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/invoice_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/invoice_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/invoice_view.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/invoices.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/invoices.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/locking.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/locking.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/login.db.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/login.db.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/login.ldap.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/login.ldap.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/login.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/mail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/mail.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/notification_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/notification_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/notification_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/notification_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/notification_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/notification_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/notifications.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/notifications.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/password_change.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/password_change.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/password_reset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/password_reset.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/plugins.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/plugins.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/predefined_expense_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/predefined_expense_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/predefined_expense_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/predefined_expense_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/predefined_expense_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/predefined_expense_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/predefined_expenses.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/predefined_expenses.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/profile_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/profile_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/project_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/project_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/project_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/project_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/project_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/project_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/projects.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/projects.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/puncher.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/puncher.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/puncher_conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/puncher_conf.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/quotas.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/quotas.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/register.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/report.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/report.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/reports.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/reports.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/role_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/role_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/role_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/role_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/role_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/role_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/roles.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/roles.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/site_map.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/site_map.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/success.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WEB-INF/templates/swap_roles.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/swap_roles.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/task_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/task_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/task_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/task_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/task_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/task_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/tasks.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/tasks.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/template_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/template_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/template_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/template_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/template_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/template_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/templates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/templates.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/time.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/time.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/time_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/time_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/time_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/time_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/time_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/time_script.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/timesheet_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/timesheet_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/timesheet_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/timesheet_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/timesheet_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/timesheet_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/timesheet_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/timesheet_view.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/timesheets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/timesheets.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/user_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/user_add.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/user_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/user_delete.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/user_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/user_edit.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/users.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/users.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/week.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/week.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/week_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/week_view.tpl -------------------------------------------------------------------------------- /WEB-INF/templates/work_units.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/WEB-INF/templates/work_units.tpl -------------------------------------------------------------------------------- /WEB-INF/templates_c/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /access_denied.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/access_denied.php -------------------------------------------------------------------------------- /admin_group_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/admin_group_add.php -------------------------------------------------------------------------------- /admin_group_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/admin_group_delete.php -------------------------------------------------------------------------------- /admin_group_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/admin_group_edit.php -------------------------------------------------------------------------------- /admin_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/admin_groups.php -------------------------------------------------------------------------------- /admin_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/admin_options.php -------------------------------------------------------------------------------- /cf_custom_field_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_custom_field_add.php -------------------------------------------------------------------------------- /cf_custom_field_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_custom_field_delete.php -------------------------------------------------------------------------------- /cf_custom_field_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_custom_field_edit.php -------------------------------------------------------------------------------- /cf_custom_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_custom_fields.php -------------------------------------------------------------------------------- /cf_dropdown_option_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_dropdown_option_add.php -------------------------------------------------------------------------------- /cf_dropdown_option_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_dropdown_option_delete.php -------------------------------------------------------------------------------- /cf_dropdown_option_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_dropdown_option_edit.php -------------------------------------------------------------------------------- /cf_dropdown_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cf_dropdown_options.php -------------------------------------------------------------------------------- /charts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/charts.php -------------------------------------------------------------------------------- /client_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/client_add.php -------------------------------------------------------------------------------- /client_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/client_delete.php -------------------------------------------------------------------------------- /client_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/client_edit.php -------------------------------------------------------------------------------- /clients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/clients.php -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/cron.php -------------------------------------------------------------------------------- /custom_css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/custom_css.php -------------------------------------------------------------------------------- /dbinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/dbinstall.php -------------------------------------------------------------------------------- /default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/default.css -------------------------------------------------------------------------------- /display_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/display_options.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/dockerfile-db -------------------------------------------------------------------------------- /dockerfile-tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/dockerfile-tt -------------------------------------------------------------------------------- /expense_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/expense_delete.php -------------------------------------------------------------------------------- /expense_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/expense_edit.php -------------------------------------------------------------------------------- /expense_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/expense_files.php -------------------------------------------------------------------------------- /expenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/expenses.php -------------------------------------------------------------------------------- /export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/export.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/favicon.ico -------------------------------------------------------------------------------- /feature_disabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/feature_disabled.php -------------------------------------------------------------------------------- /file_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/file_delete.php -------------------------------------------------------------------------------- /file_download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/file_download.php -------------------------------------------------------------------------------- /file_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/file_edit.php -------------------------------------------------------------------------------- /group_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/group_add.php -------------------------------------------------------------------------------- /group_advanced_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/group_advanced_edit.php -------------------------------------------------------------------------------- /group_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/group_delete.php -------------------------------------------------------------------------------- /group_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/group_edit.php -------------------------------------------------------------------------------- /groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/groups.php -------------------------------------------------------------------------------- /img/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/1x1.gif -------------------------------------------------------------------------------- /img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/calendar.gif -------------------------------------------------------------------------------- /img/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-delete.png -------------------------------------------------------------------------------- /img/icon-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-edit.png -------------------------------------------------------------------------------- /img/icon-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-file.png -------------------------------------------------------------------------------- /img/icon-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-files.png -------------------------------------------------------------------------------- /img/icon-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-now.png -------------------------------------------------------------------------------- /img/icon-question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/icon-question-mark.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/subm_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/subm_bg.gif -------------------------------------------------------------------------------- /img/top_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/img/top_bg.gif -------------------------------------------------------------------------------- /import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/import.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/index.php -------------------------------------------------------------------------------- /initialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/initialize.php -------------------------------------------------------------------------------- /invoice_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/invoice_add.php -------------------------------------------------------------------------------- /invoice_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/invoice_delete.php -------------------------------------------------------------------------------- /invoice_send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/invoice_send.php -------------------------------------------------------------------------------- /invoice_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/invoice_view.php -------------------------------------------------------------------------------- /invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/invoices.php -------------------------------------------------------------------------------- /js/strftime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/js/strftime.js -------------------------------------------------------------------------------- /js/strptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/js/strptime.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/license.txt -------------------------------------------------------------------------------- /locking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/locking.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/logout.php -------------------------------------------------------------------------------- /mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/mysql.sql -------------------------------------------------------------------------------- /notification_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/notification_add.php -------------------------------------------------------------------------------- /notification_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/notification_delete.php -------------------------------------------------------------------------------- /notification_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/notification_edit.php -------------------------------------------------------------------------------- /notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/notifications.php -------------------------------------------------------------------------------- /password_change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/password_change.php -------------------------------------------------------------------------------- /password_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/password_reset.php -------------------------------------------------------------------------------- /plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/plugins.php -------------------------------------------------------------------------------- /plugins/CustomFields.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/plugins/CustomFields.class.php -------------------------------------------------------------------------------- /plugins/MonthlyQuota.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/plugins/MonthlyQuota.class.php -------------------------------------------------------------------------------- /predefined_expense_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/predefined_expense_add.php -------------------------------------------------------------------------------- /predefined_expense_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/predefined_expense_delete.php -------------------------------------------------------------------------------- /predefined_expense_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/predefined_expense_edit.php -------------------------------------------------------------------------------- /predefined_expenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/predefined_expenses.php -------------------------------------------------------------------------------- /profile_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/profile_edit.php -------------------------------------------------------------------------------- /project_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/project_add.php -------------------------------------------------------------------------------- /project_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/project_delete.php -------------------------------------------------------------------------------- /project_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/project_edit.php -------------------------------------------------------------------------------- /project_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/project_files.php -------------------------------------------------------------------------------- /projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/projects.php -------------------------------------------------------------------------------- /puncher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/puncher.php -------------------------------------------------------------------------------- /puncher_conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/puncher_conf.php -------------------------------------------------------------------------------- /quotas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/quotas.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/readme.txt -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/register.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/report.php -------------------------------------------------------------------------------- /report_send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/report_send.php -------------------------------------------------------------------------------- /reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/reports.php -------------------------------------------------------------------------------- /role_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/role_add.php -------------------------------------------------------------------------------- /role_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/role_delete.php -------------------------------------------------------------------------------- /role_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/role_edit.php -------------------------------------------------------------------------------- /roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/roles.php -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/rtl.css -------------------------------------------------------------------------------- /site_map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/site_map.php -------------------------------------------------------------------------------- /success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/success.php -------------------------------------------------------------------------------- /swap_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/swap_roles.php -------------------------------------------------------------------------------- /task_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/task_add.php -------------------------------------------------------------------------------- /task_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/task_delete.php -------------------------------------------------------------------------------- /task_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/task_edit.php -------------------------------------------------------------------------------- /tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/tasks.php -------------------------------------------------------------------------------- /template_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/template_add.php -------------------------------------------------------------------------------- /template_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/template_delete.php -------------------------------------------------------------------------------- /template_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/template_edit.php -------------------------------------------------------------------------------- /templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/templates.php -------------------------------------------------------------------------------- /time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/time.php -------------------------------------------------------------------------------- /time_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/time_delete.php -------------------------------------------------------------------------------- /time_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/time_edit.php -------------------------------------------------------------------------------- /time_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/time_files.php -------------------------------------------------------------------------------- /timesheet_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheet_add.php -------------------------------------------------------------------------------- /timesheet_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheet_delete.php -------------------------------------------------------------------------------- /timesheet_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheet_edit.php -------------------------------------------------------------------------------- /timesheet_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheet_files.php -------------------------------------------------------------------------------- /timesheet_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheet_view.php -------------------------------------------------------------------------------- /timesheets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/timesheets.php -------------------------------------------------------------------------------- /tofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/tofile.php -------------------------------------------------------------------------------- /topdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/topdf.php -------------------------------------------------------------------------------- /user_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/user_add.php -------------------------------------------------------------------------------- /user_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/user_delete.php -------------------------------------------------------------------------------- /user_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/user_edit.php -------------------------------------------------------------------------------- /users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/users.php -------------------------------------------------------------------------------- /week.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/week.php -------------------------------------------------------------------------------- /week_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/week_view.php -------------------------------------------------------------------------------- /work_units.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuko/timetracker/HEAD/work_units.php --------------------------------------------------------------------------------