├── README.md ├── edicao1 ├── afazeres │ ├── banco.dia │ ├── tarefas.css │ └── tarefas.php ├── afazeres2 │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresbd │ ├── ajudantes.php │ ├── banco.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresbd2 │ ├── ajudantes.php │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresemail │ ├── ajudantes.php │ ├── anexos │ │ └── A Primer On SQL.pdf │ ├── banco.dia │ ├── banco.php │ ├── bibliotecas │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── config.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresoo │ ├── ajudantes.php │ ├── anexos │ │ └── A Primer On SQL.pdf │ ├── banco.dia │ ├── banco.php │ ├── bibliotecas │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── classes │ │ └── Tarefas.php │ ├── config.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresupload │ ├── ajudantes.php │ ├── anexos │ │ ├── texto.pdf │ │ └── textos.zip │ ├── banco.dia │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ └── template_tarefa.php ├── afazeresvalidacao │ ├── ajudantes.php │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php └── calendario.php ├── edicao2 ├── afazeres │ ├── banco.dia │ ├── tarefas.css │ └── tarefas.php ├── afazeres2 │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresbd │ ├── ajudantes.php │ ├── banco.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresbd2 │ ├── ajudantes.php │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php ├── afazeresemail │ ├── ajudantes.php │ ├── banco.dia │ ├── banco.php │ ├── bibliotecas │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── config.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresmvc │ ├── anexos │ │ └── .gitkeep │ ├── assets │ │ └── tarefas.css │ ├── banco.dia │ ├── config.php │ ├── controllers │ │ ├── 404.php │ │ ├── editar.php │ │ ├── remover.php │ │ ├── remover_anexo.php │ │ ├── tarefa.php │ │ └── tarefas.php │ ├── helpers │ │ ├── ajudantes.php │ │ └── banco.php │ ├── index.php │ ├── libs │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── models │ │ ├── Anexo.php │ │ ├── RepositorioTarefas.php │ │ └── Tarefa.php │ └── views │ │ ├── 404.php │ │ ├── formulario.php │ │ ├── tabela.php │ │ ├── template.php │ │ ├── template_email.php │ │ └── template_tarefa.php ├── afazeresoo │ ├── ajudantes.php │ ├── anexos │ │ └── .gitkeep │ ├── banco.dia │ ├── banco.php │ ├── bibliotecas │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── classes │ │ ├── Anexo.php │ │ ├── RepositorioTarefas.php │ │ └── Tarefa.php │ ├── config.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── remover_anexo.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazerespdo │ ├── ajudantes.php │ ├── anexos │ │ └── .gitkeep │ ├── banco.dia │ ├── banco.php │ ├── bibliotecas │ │ └── PHPMailer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── PHPMailerAutoload.php │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── class.phpmailer.php │ │ │ ├── class.pop3.php │ │ │ ├── class.smtp.php │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── Callback_function_notes.txt │ │ │ ├── DomainKeys_notes.txt │ │ │ ├── Note_for_SMTP_debugging.txt │ │ │ ├── extending.html │ │ │ ├── faq.html │ │ │ ├── generatedocs.sh │ │ │ └── pop3_article.txt │ │ │ ├── examples │ │ │ ├── LGPLv3.txt │ │ │ ├── code_generator.phps │ │ │ ├── contents.html │ │ │ ├── exceptions.phps │ │ │ ├── gmail.phps │ │ │ ├── images │ │ │ │ ├── phpmailer.png │ │ │ │ └── phpmailer_mini.gif │ │ │ ├── index.html │ │ │ ├── mail.phps │ │ │ ├── mailing_list.phps │ │ │ ├── pop_before_smtp.phps │ │ │ ├── scripts │ │ │ │ ├── XRegExp.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushPhp.js │ │ │ │ ├── shCore.js │ │ │ │ └── shLegacy.js │ │ │ ├── sendmail.phps │ │ │ ├── smtp.phps │ │ │ ├── smtp_no_auth.phps │ │ │ └── styles │ │ │ │ ├── shCore.css │ │ │ │ ├── shCoreDefault.css │ │ │ │ ├── shCoreDjango.css │ │ │ │ ├── shCoreEclipse.css │ │ │ │ ├── shCoreEmacs.css │ │ │ │ ├── shCoreFadeToGrey.css │ │ │ │ ├── shCoreMDUltra.css │ │ │ │ ├── shCoreMidnight.css │ │ │ │ ├── shCoreRDark.css │ │ │ │ ├── shThemeAppleScript.css │ │ │ │ ├── shThemeDefault.css │ │ │ │ ├── shThemeDjango.css │ │ │ │ ├── shThemeEclipse.css │ │ │ │ ├── shThemeEmacs.css │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ ├── shThemeMDUltra.css │ │ │ │ ├── shThemeMidnight.css │ │ │ │ ├── shThemeRDark.css │ │ │ │ ├── shThemeVisualStudio.css │ │ │ │ └── wrapping.png │ │ │ ├── extras │ │ │ ├── EasyPeasyICS.php │ │ │ ├── class.html2text.php │ │ │ ├── htmlfilter.php │ │ │ └── ntlm_sasl_client.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── test │ │ │ ├── fakepopserver.sh │ │ │ ├── fakesendmail.sh │ │ │ ├── phpmailerLangTest.php │ │ │ ├── phpmailerTest.php │ │ │ ├── runfakepopserver.sh │ │ │ ├── test_callback.php │ │ │ └── testbootstrap-dist.php │ ├── classes │ │ ├── Anexo.php │ │ ├── RepositorioTarefas.php │ │ └── Tarefa.php │ ├── config.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── remover_anexo.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresupload │ ├── ajudantes.php │ ├── anexos │ │ ├── texto.pdf │ │ └── textos.zip │ ├── banco.dia │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── remover_anexo.php │ ├── tabela.php │ ├── tarefa.php │ ├── tarefas.css │ ├── tarefas.php │ ├── template.php │ └── template_tarefa.php ├── afazeresvalidacao │ ├── ajudantes.php │ ├── banco.php │ ├── editar.php │ ├── formulario.php │ ├── remover.php │ ├── tabela.php │ ├── tarefas.css │ ├── tarefas.php │ └── template.php └── calendario.php └── edicao3 ├── afazeres ├── banco.dia ├── tarefas.css └── tarefas.php ├── afazeres2 ├── tarefas.css ├── tarefas.php └── template.php ├── afazeresbd ├── ajudantes.php ├── banco.php ├── tarefas.css ├── tarefas.php └── template.php ├── afazeresbd2 ├── ajudantes.php ├── banco.php ├── editar.php ├── formulario.php ├── remover.php ├── tabela.php ├── tarefas.css ├── tarefas.php └── template.php ├── afazerescomposer ├── anexos │ └── .gitkeep ├── assets │ └── tarefas.css ├── banco.dia ├── composer.json ├── composer.lock ├── composer.phar ├── config.php ├── controllers │ ├── 404.php │ ├── editar.php │ ├── remover.php │ ├── remover_anexo.php │ ├── tarefa.php │ └── tarefas.php ├── helpers │ ├── ajudantes.php │ └── banco.php ├── index.php ├── models │ ├── Anexo.php │ ├── RepositorioTarefas.php │ └── Tarefa.php ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ └── phpmailer │ │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php └── views │ ├── 404.php │ ├── formulario.php │ ├── tabela.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresemail ├── ajudantes.php ├── anexos │ └── Apostila HTML.pdf ├── banco.dia ├── banco.php ├── bibliotecas │ └── PHPMailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── inc.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── config.php ├── editar.php ├── formulario.php ├── remover.php ├── tabela.php ├── tarefa.php ├── tarefas.css ├── tarefas.php ├── template.php ├── template_email.php └── template_tarefa.php ├── afazeresmvc ├── anexos │ └── .gitkeep ├── assets │ └── tarefas.css ├── banco.dia ├── config.php ├── controllers │ ├── 404.php │ ├── editar.php │ ├── remover.php │ ├── remover_anexo.php │ ├── tarefa.php │ └── tarefas.php ├── helpers │ ├── ajudantes.php │ └── banco.php ├── index.php ├── libs │ └── PHPMailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── models │ ├── Anexo.php │ ├── RepositorioTarefas.php │ └── Tarefa.php └── views │ ├── 404.php │ ├── formulario.php │ ├── tabela.php │ ├── template.php │ ├── template_email.php │ └── template_tarefa.php ├── afazeresoo ├── ajudantes.php ├── anexos │ └── .gitkeep ├── banco.dia ├── banco.php ├── classes │ ├── Anexo.php │ ├── RepositorioTarefas.php │ └── Tarefa.php ├── config.php ├── editar.php ├── formulario.php ├── remover.php ├── remover_anexo.php ├── tabela.php ├── tarefa.php ├── tarefas.css ├── tarefas.php ├── template.php ├── template_email.php └── template_tarefa.php ├── afazerespdo ├── ajudantes.php ├── anexos │ └── .gitkeep ├── banco.dia ├── banco.php ├── classes │ ├── Anexo.php │ ├── RepositorioTarefas.php │ └── Tarefa.php ├── config.php ├── editar.php ├── formulario.php ├── remover.php ├── remover_anexo.php ├── tabela.php ├── tarefa.php ├── tarefas.css ├── tarefas.php ├── template.php ├── template_email.php └── template_tarefa.php ├── afazeresupload ├── ajudantes.php ├── anexos │ ├── texto.pdf │ └── textos.zip ├── banco.dia ├── banco.php ├── editar.php ├── formulario.php ├── remover.php ├── remover_anexo.php ├── tabela.php ├── tarefa.php ├── tarefas.css ├── tarefas.php ├── template.php └── template_tarefa.php ├── afazeresvalidacao ├── ajudantes.php ├── banco.php ├── css.css ├── editar.php ├── formulario.php ├── remover.php ├── tabela.php ├── tarefas.css ├── tarefas.php └── template.php └── calendario.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/README.md -------------------------------------------------------------------------------- /edicao1/afazeres/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres/banco.dia -------------------------------------------------------------------------------- /edicao1/afazeres/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeres/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeres2/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres2/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeres2/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres2/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeres2/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeres2/template.php -------------------------------------------------------------------------------- /edicao1/afazeresbd/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresbd/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresbd/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresbd/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresbd/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd/template.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/editar.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/formulario.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/remover.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/tabela.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresbd2/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresbd2/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresbd2/template.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/anexos/A Primer On SQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/anexos/A Primer On SQL.pdf -------------------------------------------------------------------------------- /edicao1/afazeresemail/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/banco.dia -------------------------------------------------------------------------------- /edicao1/afazeresemail/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/.gitignore -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/.travis.yml -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/LICENSE -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/README.md -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/changelog.md -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/class.phpmailer.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/class.pop3.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/class.smtp.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/composer.json -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/docs/extending.html -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/docs/faq.html -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/docs/generatedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/docs/generatedocs.sh -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/docs/pop3_article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/docs/pop3_article.txt -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/LGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/LGPLv3.txt -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/exceptions.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/exceptions.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/gmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/gmail.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/index.html -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/mail.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/mailing_list.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/mailing_list.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/scripts/XRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/scripts/XRegExp.js -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/scripts/shCore.js -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/sendmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/sendmail.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/smtp.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/smtp_no_auth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/smtp_no_auth.phps -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/examples/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/examples/styles/shCore.css -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/extras/class.html2text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/extras/class.html2text.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/fakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/fakepopserver.sh -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/fakesendmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/fakesendmail.sh -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/phpmailerLangTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/phpmailerLangTest.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/phpmailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/phpmailerTest.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/runfakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/runfakepopserver.sh -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/test_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/test_callback.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/bibliotecas/PHPMailer/test/testbootstrap-dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/bibliotecas/PHPMailer/test/testbootstrap-dist.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/config.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/editar.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/formulario.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/remover.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/tabela.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresemail/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/template.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/template_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/template_email.php -------------------------------------------------------------------------------- /edicao1/afazeresemail/template_tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresemail/template_tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/anexos/A Primer On SQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/anexos/A Primer On SQL.pdf -------------------------------------------------------------------------------- /edicao1/afazeresoo/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/banco.dia -------------------------------------------------------------------------------- /edicao1/afazeresoo/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/.gitignore -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/.travis.yml -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/LICENSE -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/README.md -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/changelog.md -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/class.phpmailer.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/class.pop3.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/class.smtp.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/composer.json -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/docs/extending.html -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/docs/faq.html -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/docs/generatedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/docs/generatedocs.sh -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/docs/pop3_article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/docs/pop3_article.txt -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/LGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/LGPLv3.txt -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/code_generator.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/code_generator.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/exceptions.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/exceptions.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/gmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/gmail.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/images/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/images/phpmailer.png -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/index.html -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/mail.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/mailing_list.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/mailing_list.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/pop_before_smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/pop_before_smtp.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/XRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/XRegExp.js -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shBrushPhp.js -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shCore.js -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/scripts/shLegacy.js -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/sendmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/sendmail.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/smtp.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/smtp_no_auth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/smtp_no_auth.phps -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/styles/shCore.css -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/examples/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/examples/styles/wrapping.png -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/extras/class.html2text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/extras/class.html2text.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-br.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-cz.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-dk.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-no.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-se.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/fakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/fakepopserver.sh -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/fakesendmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/fakesendmail.sh -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/phpmailerLangTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/phpmailerLangTest.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/phpmailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/phpmailerTest.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/runfakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/runfakepopserver.sh -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/test_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/test_callback.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/bibliotecas/PHPMailer/test/testbootstrap-dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/bibliotecas/PHPMailer/test/testbootstrap-dist.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/classes/Tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/classes/Tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/config.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/editar.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/formulario.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/remover.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/tabela.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresoo/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/template.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/template_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/template_email.php -------------------------------------------------------------------------------- /edicao1/afazeresoo/template_tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresoo/template_tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/anexos/texto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/anexos/texto.pdf -------------------------------------------------------------------------------- /edicao1/afazeresupload/anexos/textos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/anexos/textos.zip -------------------------------------------------------------------------------- /edicao1/afazeresupload/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/banco.dia -------------------------------------------------------------------------------- /edicao1/afazeresupload/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/editar.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/formulario.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/remover.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/tabela.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresupload/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/template.php -------------------------------------------------------------------------------- /edicao1/afazeresupload/template_tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresupload/template_tarefa.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/ajudantes.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/banco.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/editar.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/formulario.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/remover.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/tabela.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/tarefas.css -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/tarefas.php -------------------------------------------------------------------------------- /edicao1/afazeresvalidacao/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/afazeresvalidacao/template.php -------------------------------------------------------------------------------- /edicao1/calendario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao1/calendario.php -------------------------------------------------------------------------------- /edicao2/afazeres/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres/banco.dia -------------------------------------------------------------------------------- /edicao2/afazeres/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeres/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres/tarefas.php -------------------------------------------------------------------------------- /edicao2/afazeres2/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres2/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeres2/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres2/tarefas.php -------------------------------------------------------------------------------- /edicao2/afazeres2/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeres2/template.php -------------------------------------------------------------------------------- /edicao2/afazeresbd/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd/ajudantes.php -------------------------------------------------------------------------------- /edicao2/afazeresbd/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd/banco.php -------------------------------------------------------------------------------- /edicao2/afazeresbd/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeresbd/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd/tarefas.php -------------------------------------------------------------------------------- /edicao2/afazeresbd/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd/template.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/ajudantes.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/banco.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/editar.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/formulario.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/remover.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/tabela.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeresbd2/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/tarefas.php -------------------------------------------------------------------------------- /edicao2/afazeresbd2/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresbd2/template.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/ajudantes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/ajudantes.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/banco.dia -------------------------------------------------------------------------------- /edicao2/afazeresemail/banco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/banco.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/.gitignore -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/.travis.yml -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/LICENSE -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/README.md -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/changelog.md -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/class.phpmailer.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/class.pop3.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/class.smtp.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/composer.json -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/docs/DomainKeys_notes.txt -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/docs/extending.html -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/docs/faq.html -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/docs/generatedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/docs/generatedocs.sh -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/docs/pop3_article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/docs/pop3_article.txt -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/LGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/LGPLv3.txt -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/contents.html -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/exceptions.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/exceptions.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/gmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/gmail.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/index.html -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/mail.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/mailing_list.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/mailing_list.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/scripts/XRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/scripts/XRegExp.js -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/scripts/shCore.js -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/sendmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/sendmail.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/smtp.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/smtp_no_auth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/smtp_no_auth.phps -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/examples/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/examples/styles/shCore.css -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/extras/class.html2text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/extras/class.html2text.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/fakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/fakepopserver.sh -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/fakesendmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/fakesendmail.sh -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/phpmailerLangTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/phpmailerLangTest.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/phpmailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/phpmailerTest.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/runfakepopserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/runfakepopserver.sh -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/test_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/test_callback.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/bibliotecas/PHPMailer/test/testbootstrap-dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/bibliotecas/PHPMailer/test/testbootstrap-dist.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/config.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/editar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/editar.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/formulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/formulario.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/remover.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/tabela.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/tabela.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/tarefa.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeresemail/tarefas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/tarefas.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/template.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/template_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/template_email.php -------------------------------------------------------------------------------- /edicao2/afazeresemail/template_tarefa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresemail/template_tarefa.php -------------------------------------------------------------------------------- /edicao2/afazeresmvc/anexos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edicao2/afazeresmvc/assets/tarefas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresmvc/assets/tarefas.css -------------------------------------------------------------------------------- /edicao2/afazeresmvc/banco.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresmvc/banco.dia -------------------------------------------------------------------------------- /edicao2/afazeresmvc/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InFog/phpmysql/HEAD/edicao2/afazeresmvc/config.php -------------------------------------------------------------------------------- /edicao2/afazeresmvc/controllers/404.php: -------------------------------------------------------------------------------- 1 |