├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_EN.md ├── application ├── .htaccess ├── backend │ └── codefever_schedule.sh ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── access_controller.php │ ├── arrays.php │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── countries_item.php │ ├── database.php │ ├── development │ │ └── xmpp.php │ ├── doctypes.php │ ├── event_dispatchers.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── lang.php │ ├── migration.php │ ├── mimes.php │ ├── pagination.php │ ├── production │ │ └── xmpp.php │ ├── profiler.php │ ├── rest.php │ ├── routes.php │ ├── schedule.php │ ├── smileys.php │ ├── storage.php │ ├── uploader_settings.php │ └── user_agents.php ├── controllers │ ├── api │ │ ├── admin.php │ │ ├── base.php │ │ ├── group.php │ │ ├── repository.php │ │ └── user.php │ ├── apiv1 │ │ ├── base.php │ │ └── internal.php │ ├── backend │ │ ├── codefever_schedule.php │ │ └── repository_webhook.php │ ├── base.php │ ├── captcha.php │ ├── doc.php │ ├── file.php │ ├── home.php │ ├── index.html │ ├── lang.php │ ├── nopage.php │ └── user.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── event_handlers │ ├── ActivityHandler.php │ ├── EventHandler.php │ ├── TestHandler.php │ ├── UserNotificationHandler.php │ └── WebhookHandler.php ├── helpers │ ├── index.html │ ├── jbimages_helper.php │ └── spl_autoload_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ ├── base_lang.php │ │ └── user_lang.php │ └── zh-cn │ │ ├── base_lang.php │ │ └── user_lang.php ├── libraries │ ├── Aes.php │ ├── Avatars │ │ ├── MaterialDesign.Avatars.class.php │ │ └── fonts │ │ │ ├── Duality.ttf │ │ │ ├── PingFangRegular.ttf │ │ │ ├── PingFang_2.ttf │ │ │ ├── PingFang_3.ttf │ │ │ ├── PingFang_Bold.ttf │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ ├── SourceCodePro-Light.ttf │ │ │ ├── SourceCodePro-Regular.ttf │ │ │ ├── SourceCodePro-Semibold.ttf │ │ │ ├── SourceHanSansCN-Normal.ttf │ │ │ └── font.ttf │ ├── Captcha.php │ ├── Captcha │ │ ├── Duality.ttf │ │ ├── OCR_A_Extended │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ ├── 9.gif │ │ │ ├── b.gif │ │ │ ├── c.gif │ │ │ ├── e.gif │ │ │ ├── f.gif │ │ │ ├── g.gif │ │ │ ├── h.gif │ │ │ ├── j.gif │ │ │ ├── k.gif │ │ │ ├── m.gif │ │ │ ├── p.gif │ │ │ ├── q.gif │ │ │ ├── r.gif │ │ │ ├── t.gif │ │ │ ├── v.gif │ │ │ ├── w.gif │ │ │ ├── x.gif │ │ │ └── y.gif │ │ └── Small_Fonts │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ ├── 9.gif │ │ │ ├── b.gif │ │ │ ├── c.gif │ │ │ ├── e.gif │ │ │ ├── f.gif │ │ │ ├── g.gif │ │ │ ├── h.gif │ │ │ ├── j.gif │ │ │ ├── k.gif │ │ │ ├── m.gif │ │ │ ├── p.gif │ │ │ ├── q.gif │ │ │ ├── r.gif │ │ │ ├── t.gif │ │ │ ├── v.gif │ │ │ ├── w.gif │ │ │ ├── x.gif │ │ │ └── y.gif │ ├── Crypt.php │ ├── Crypt │ │ ├── Exception.php │ │ ├── HMAC.php │ │ ├── ID.php │ │ ├── RSA.php │ │ ├── RSA │ │ │ ├── Key.php │ │ │ └── Key │ │ │ │ ├── Private.php │ │ │ │ └── Public.php │ │ └── URL.php │ ├── OAuth.php │ ├── Service.php │ ├── api_controller.php │ ├── composerlib │ │ ├── composer.json │ │ ├── composer.lock │ │ └── composer.phar │ ├── index.html │ ├── key │ │ ├── auth │ │ └── auth.pub │ ├── service │ │ ├── AccessControl │ │ │ ├── APIAuth.php │ │ │ └── AccessController.php │ │ ├── CacheData │ │ │ └── Store.php │ │ ├── Constant │ │ │ ├── ActivityType.php │ │ │ ├── EventType.php │ │ │ └── MergeRequestStatus.php │ │ ├── ErrorCode │ │ │ └── ErrorCode.php │ │ ├── Event │ │ │ ├── Event.php │ │ │ ├── EventData.php │ │ │ ├── EventDispatcher.php │ │ │ ├── GeneralEventDispatcher.php │ │ │ └── ServiceEvent.php │ │ ├── EventHandler │ │ │ ├── DemoEventHandler.php │ │ │ └── EventHandler.php │ │ ├── Exception │ │ │ └── Exception.php │ │ ├── Git │ │ │ └── Command.php │ │ ├── MessageService │ │ │ └── Email │ │ │ │ ├── Driver │ │ │ │ └── Mail.php │ │ │ │ ├── EmailSender.php │ │ │ │ └── EmailTemplate.php │ │ ├── Network │ │ │ ├── Request.php │ │ │ └── Response.php │ │ ├── Utility │ │ │ ├── Command.php │ │ │ ├── DataConstructor.php │ │ │ ├── GoogleAuthenticator.php │ │ │ ├── Helper.php │ │ │ ├── Logger.php │ │ │ ├── MessageGenerator.php │ │ │ ├── TOTP.php │ │ │ ├── UUID.php │ │ │ └── Workspace.php │ │ └── autoLoader.php │ ├── storage.php │ ├── storage │ │ └── disk.php │ └── xmlrpc │ │ ├── xmlrpc.inc │ │ ├── xmlrpc_wrappers.inc │ │ └── xmlrpcs.inc ├── models │ ├── group_model.php │ ├── notification_model.php │ ├── repository_model.php │ ├── user_model.php │ └── user_sshkey_model.php ├── third_party │ └── index.html └── views │ ├── base │ ├── disable_message.php │ ├── error_message.php │ └── success_message.php │ ├── doc │ └── detail.php │ ├── newpage │ ├── footer_include.php │ ├── header_include.php │ ├── login_activity.php │ └── user │ │ ├── countries_dropdown_menu.php │ │ ├── login.php │ │ ├── register.php │ │ ├── reset_password.php │ │ └── verify.php │ └── nopage │ └── index.php ├── codefever.build ├── config.template.yaml ├── doc ├── en-us │ ├── admin │ │ ├── dashboard.md │ │ ├── index.md │ │ ├── repository_and_groups.md │ │ ├── settings.md │ │ └── users.md │ ├── common │ │ ├── clone_method.md │ │ ├── history.md │ │ ├── index.md │ │ ├── multiple_email.md │ │ ├── role.md │ │ ├── ssh_key.md │ │ └── workflow.md │ ├── contribute │ │ ├── bug_fix_issue.md │ │ ├── bug_fix_pr.md │ │ ├── doc_pr.md │ │ ├── index.md │ │ ├── new_feature_pr.md │ │ └── request_feature_issue.md │ ├── git │ │ ├── checkout.md │ │ ├── clone.md │ │ ├── create_branch.md │ │ ├── git_command_reference.md │ │ ├── index.md │ │ ├── merge_branch.md │ │ ├── push_branch.md │ │ ├── remote.md │ │ └── revert.md │ ├── index.md │ ├── installation │ │ ├── index.md │ │ ├── install_from_scratch.md │ │ └── install_via_docker.md │ ├── repo │ │ ├── commit.md │ │ ├── create_branch.md │ │ ├── create_repo.md │ │ ├── create_tag.md │ │ ├── fork_repo.md │ │ ├── index.md │ │ ├── members.md │ │ ├── merge_request.md │ │ ├── protected_branch.md │ │ ├── settings.md │ │ ├── view_commits.md │ │ ├── view_files.md │ │ └── view_history.md │ ├── repo_group │ │ ├── create_repo_group.md │ │ ├── index.md │ │ ├── members.md │ │ └── settings.md │ └── start │ │ ├── index.md │ │ └── welcome.md └── zh-cn │ ├── admin │ ├── dashboard.md │ ├── index.md │ ├── repository_and_groups.md │ ├── settings.md │ └── users.md │ ├── common │ ├── clone_method.md │ ├── history.md │ ├── index.md │ ├── multiple_email.md │ ├── role.md │ ├── ssh_key.md │ └── workflow.md │ ├── contribute │ ├── bug_fix_issue.md │ ├── bug_fix_pr.md │ ├── doc_pr.md │ ├── index.md │ ├── new_feature_pr.md │ └── request_feature_issue.md │ ├── git │ ├── checkout.md │ ├── clone.md │ ├── create_branch.md │ ├── git_command_reference.md │ ├── index.md │ ├── merge_branch.md │ ├── push_branch.md │ ├── remote.md │ └── revert.md │ ├── index.md │ ├── installation │ ├── index.md │ ├── install_from_scratch.md │ ├── install_via_docker.md │ ├── install_via_docker_compose.md │ └── update.md │ ├── repo │ ├── commit.md │ ├── create_branch.md │ ├── create_repo.md │ ├── create_tag.md │ ├── fork_repo.md │ ├── index.md │ ├── members.md │ ├── merge_request.md │ ├── protected_branch.md │ ├── settings.md │ ├── view_commits.md │ ├── view_files.md │ ├── view_history.md │ └── webhooks.md │ ├── repo_group │ ├── create_repository_group.md │ ├── index.md │ ├── members.md │ └── settings.md │ └── start │ ├── index.md │ └── welcome.md ├── docker-compose.yml ├── env.template.yaml ├── git-storage └── hooks │ ├── main │ ├── post-receive │ ├── pre-receive │ └── update ├── http-gateway ├── JsonHttpClient │ └── main.go ├── Request │ └── main.go └── main.go ├── misc ├── codefever ├── codefever-service-template ├── create_db.sh ├── db_data.sql ├── db_structure.sql ├── db_update_20220215.sql ├── docker │ ├── docker-entrypoint.sh │ ├── supervisor-codefever-http-gateway.conf │ ├── supervisor-codefever-modify-authorized-keys.conf │ └── vhost.conf-template ├── hooks │ ├── main │ ├── post-receive │ ├── pre-receive │ └── update ├── initailize_container.sh ├── install.sh ├── modify_authorized_keys.php ├── nginx-service-template ├── nginx.conf-template ├── php-fpm-service-template ├── php-fpm.conf-template ├── php.ini-template ├── remove_test_data.sh ├── system_init.sh ├── update.sh └── www.conf-template ├── package.json ├── phpunit.xml ├── run_test.sh ├── ssh-gateway ├── JsonHttpClient │ └── main.go └── shell │ └── main.go ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ └── pdo_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php ├── tests ├── bootstrap.php ├── model │ ├── group │ │ ├── CheckPreserveTest.php │ │ ├── GetMemberRoleTest.php │ │ ├── GetMergeRequestsTest.php │ │ ├── GetTest.php │ │ ├── ListActivitiesTest.php │ │ ├── ListJoinedTest.php │ │ ├── ListMembersTest.php │ │ ├── ListTest.php │ │ ├── ModifyTest.php │ │ ├── NormalizeActivitiesTest.php │ │ ├── NormalizeCreatorTest.php │ │ ├── NormalizeMembersTest.php │ │ ├── NormalizeMergeRequestsTest.php │ │ ├── NormalizeTest.php │ │ ├── SearchByDisplayNameTest.php │ │ └── SearchByNameTest.php │ ├── notification │ │ ├── AddNotificationTest.php │ │ ├── IsNotificationRefusedExistsTest.php │ │ ├── ListNotificationRefusedTest.php │ │ ├── ListNotificationsTest.php │ │ ├── NormalizeNotificationsRefusedTest.php │ │ ├── NormalizeNotificationsTest.php │ │ └── SetGroupOrRepoRefusedTest.php │ ├── repository │ │ ├── CreateProtectedBranchRuleTest.php │ │ ├── GetProtectedBranchRuleTest.php │ │ ├── ListProtectedBranchRulesTest.php │ │ ├── NormalizeProtectedBranchRulesTest.php │ │ ├── NormalizeReviewersTest.php │ │ ├── addMemberTest.php │ │ ├── catObjectTest.php │ │ ├── countForksTest.php │ │ ├── countMergeRequestsTest.php │ │ ├── createBranchTest.php │ │ ├── createTagTest.php │ │ ├── deleteBranchTest.php │ │ ├── deleteTagTest.php │ │ ├── getAccessURLTest.php │ │ ├── getBranchCountTest.php │ │ ├── getBranchListBySHA1Test.php │ │ ├── getBranchListTest.php │ │ ├── getBranchesTest.php │ │ ├── getChangedFileListTest.php │ │ ├── getCommitCountTest.php │ │ ├── getCommitDetailTest.php │ │ ├── getCommitsTest.php │ │ ├── getFileSizeTest.php │ │ ├── getLastCommitTest.php │ │ ├── getMemberRoleTest.php │ │ ├── getObjectsCountTest.php │ │ ├── getTagCountTest.php │ │ ├── getTagListBySHA1Test.php │ │ ├── getTagListTest.php │ │ ├── getTagsTest.php │ │ ├── getTest.php │ │ ├── isMergedTest.php │ │ ├── listActivitiesTest.php │ │ ├── listInGroupTest.php │ │ ├── listJoinedTest.php │ │ ├── listMembersTest.php │ │ ├── listTest.php │ │ ├── normalizeActivitiesTest.php │ │ ├── normalizeBranchesTest.php │ │ ├── normalizeCommitDetailTest.php │ │ ├── normalizeCommitsTest.php │ │ ├── normalizeCreatorTest.php │ │ ├── normalizeMembersTest.php │ │ ├── normalizeMergeRequestsTest.php │ │ ├── normalizeTagsTest.php │ │ ├── normalizeTest.php │ │ ├── removeMemberTest.php │ │ ├── searchByNameTest.php │ │ └── searchByUKeyAndNameTest.php │ ├── user │ │ ├── AddCommitEmailTest.php │ │ ├── GetByEmailTest.php │ │ ├── GetTest.php │ │ ├── NormalizeCommitEmailsTest.php │ │ └── NormalizeTest.php │ └── user_sshkey │ │ ├── GetTest.php │ │ ├── ListTest.php │ │ ├── NormalizeTest.php │ │ ├── SearchAuthKeyTest.php │ │ └── SearchKeyHashTest.php └── service │ ├── AccessControl │ └── AccessController │ │ └── CheckPermissionTest.php │ ├── CacheData │ └── Store │ │ ├── DeleteTest.php │ │ ├── EmptyTest.php │ │ ├── ExsitTest.php │ │ ├── GetTest.php │ │ ├── ListTest.php │ │ └── SetTest.php │ ├── Git │ └── Command │ │ ├── CreateTagTest.php │ │ ├── GetCommitInfoByHashTest.php │ │ ├── GetCommitListFromLocalTest.php │ │ ├── GetCommitListFromRemoteTest.php │ │ ├── GetCommitListTest.php │ │ ├── GetCommitLogTest.php │ │ ├── GetLastLogTest.php │ │ ├── GetRevisionRangeTest.php │ │ └── ShowTagCommitTest.php │ └── Utility │ ├── Helper │ ├── GetDelimiterTest.php │ ├── GetSSHKeyTypeTest.php │ ├── GetUniqueItemListTest.php │ ├── IsCrontabTimeTest.php │ ├── ParseDiffStringTest.php │ ├── ParseJSONTest.php │ ├── ParseObjectToFileTest.php │ ├── ParseTableTest.php │ └── ToJSONTest.php │ ├── TOTP │ └── TOTPTest.php │ └── UUID │ ├── GetKeyTest.php │ └── GetUUIDTest.php ├── www ├── app ├── favicon.ico ├── index.php ├── manifest.json ├── sitemap.xml ├── static │ ├── css │ │ ├── asset.css │ │ ├── common.css │ │ ├── main.css │ │ ├── markdown.css │ │ └── scroll-animation.css │ ├── images │ │ ├── activity_pgyer_codefever_.png │ │ ├── branch-rules-empty.png │ │ ├── branches-empty.png │ │ ├── commits-empty.png │ │ ├── default_avatar.png │ │ ├── header-codefever-logo.png │ │ ├── language_chinese.png │ │ ├── language_english.png │ │ ├── logo-community-doc.png │ │ ├── logo-community.png │ │ ├── logo-ico.png │ │ ├── logo.png │ │ ├── mergerequests-empty.png │ │ ├── repositories-empty.png │ │ └── tags-empty.png │ ├── script │ │ ├── additional-methods.js │ │ ├── common.js │ │ ├── marked.min.js │ │ └── scrollAnimation.js │ └── vendor │ │ ├── bootstrap-4.4.1 │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── fontawesome-free-5.13.0 │ │ ├── LICENSE.txt │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-house.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── intltel │ │ ├── css │ │ │ └── intlTelInput.css │ │ ├── img │ │ │ ├── flags.png │ │ │ └── flags@2x.png │ │ └── js │ │ │ ├── intlTelInput.js │ │ │ └── utils.js │ │ ├── jquery-3.5.0 │ │ └── jquery.min.js │ │ ├── jquery-validation-1.19.1 │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── bootstrap │ │ │ │ ├── index-bs4.html │ │ │ │ └── index.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── cinema │ │ │ │ ├── index.html │ │ │ │ ├── plan_9.jpg │ │ │ │ ├── refer_madness.jpg │ │ │ │ └── saucer_men.jpg │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── errors-within-labels.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── requirejs │ │ │ │ ├── app.js │ │ │ │ └── index.html │ │ │ ├── semantic-ui │ │ │ │ └── index.html │ │ │ ├── site-demos.css │ │ │ ├── themerollered.html │ │ │ ├── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ │ └── simple │ │ │ │ │ │ ├── editor_template.js │ │ │ │ │ │ ├── img │ │ │ │ │ │ └── icons.gif │ │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en.js │ │ │ │ │ │ └── skins │ │ │ │ │ │ └── default │ │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ │ └── tinymce4 │ │ │ │ └── index.html │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ ├── jquery-validation-1.19.1.zip │ │ ├── lib │ │ │ ├── jquery-1.11.1.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-3.1.1.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ ├── jquery.mockjax-1.5.3.js │ │ │ ├── jquery.mockjax-2.2.1.js │ │ │ ├── jquery.mockjax.js │ │ │ ├── jquery.simulate.js │ │ │ └── require.js │ │ ├── package.json │ │ ├── src │ │ │ ├── additional │ │ │ │ ├── abaRoutingNumber.js │ │ │ │ ├── accept.js │ │ │ │ ├── additional.js │ │ │ │ ├── alphanumeric.js │ │ │ │ ├── bankaccountNL.js │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ ├── bic.js │ │ │ │ ├── cifES.js │ │ │ │ ├── cnhBR.js │ │ │ │ ├── cnpjBR.js │ │ │ │ ├── cpfBR.js │ │ │ │ ├── creditcard.js │ │ │ │ ├── creditcardtypes.js │ │ │ │ ├── currency.js │ │ │ │ ├── dateFA.js │ │ │ │ ├── dateITA.js │ │ │ │ ├── dateNL.js │ │ │ │ ├── extension.js │ │ │ │ ├── giroaccountNL.js │ │ │ │ ├── greaterThan.js │ │ │ │ ├── greaterThanEqual.js │ │ │ │ ├── iban.js │ │ │ │ ├── integer.js │ │ │ │ ├── ipv4.js │ │ │ │ ├── ipv6.js │ │ │ │ ├── lessThan.js │ │ │ │ ├── lessThanEqual.js │ │ │ │ ├── lettersonly.js │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ ├── maxfiles.js │ │ │ │ ├── maxsize.js │ │ │ │ ├── maxsizetotal.js │ │ │ │ ├── mobileNL.js │ │ │ │ ├── mobileRU.js │ │ │ │ ├── mobileUK.js │ │ │ │ ├── netmask.js │ │ │ │ ├── nieES.js │ │ │ │ ├── nifES.js │ │ │ │ ├── nipPL.js │ │ │ │ ├── nisBR.js │ │ │ │ ├── notEqualTo.js │ │ │ │ ├── nowhitespace.js │ │ │ │ ├── pattern.js │ │ │ │ ├── phoneNL.js │ │ │ │ ├── phonePL.js │ │ │ │ ├── phoneUK.js │ │ │ │ ├── phoneUS.js │ │ │ │ ├── phonesUK.js │ │ │ │ ├── postalCodeCA.js │ │ │ │ ├── postalcodeBR.js │ │ │ │ ├── postalcodeIT.js │ │ │ │ ├── postalcodeNL.js │ │ │ │ ├── postcodeUK.js │ │ │ │ ├── require_from_group.js │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ ├── statesUS.js │ │ │ │ ├── strippedminlength.js │ │ │ │ ├── time.js │ │ │ │ ├── time12h.js │ │ │ │ ├── url2.js │ │ │ │ ├── vinUS.js │ │ │ │ ├── zipcodeUS.js │ │ │ │ └── ziprange.js │ │ │ ├── ajax.js │ │ │ ├── core.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_nl.js │ │ │ │ └── methods_pt.js │ │ └── test │ │ │ ├── additional │ │ │ ├── abaRoutingNumber.js │ │ │ ├── cnhBR.js │ │ │ ├── creditcard.js │ │ │ └── netmask.js │ │ │ ├── aria.js │ │ │ ├── error-placement.js │ │ │ ├── index.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── rules.js │ │ │ └── test.js │ │ ├── poper-1.16.0 │ │ └── popper.min.js │ │ └── toastr │ │ ├── toastr.css │ │ └── toastr.js └── view │ ├── .gitignore │ ├── build │ ├── asset-manifest.json │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── static │ │ ├── css │ │ ├── 1.75563d44.chunk.css │ │ └── 1.75563d44.chunk.css.map │ │ └── js │ │ ├── 1.1be53246.chunk.js │ │ ├── 1.1be53246.chunk.js.LICENSE.txt │ │ ├── 1.1be53246.chunk.js.map │ │ ├── main.e442a514.js │ │ └── main.e442a514.js.map │ ├── config │ ├── env.js │ ├── getHttpsConfig.js │ ├── jest │ │ ├── babelTransform.js │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── modules.js │ ├── paths.js │ ├── pnpTs.js │ ├── webpack.config.js │ └── webpackDevServer.config.js │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ ├── scripts │ ├── build.js │ ├── start.js │ └── test.js │ ├── src │ ├── assets │ │ └── styles │ │ │ └── App.styl │ ├── components │ │ ├── App.js │ │ ├── Comformation.js │ │ ├── Drawer.js │ │ ├── DrawerList.js │ │ ├── Header.js │ │ ├── Main.js │ │ ├── Notification.js │ │ ├── NotificationBars.js │ │ ├── unit │ │ │ ├── ActivityItem.js │ │ │ ├── AvatarUploader.js │ │ │ ├── CodeDiffViewer.js │ │ │ ├── CodeDiffViewer_old_monaco.js │ │ │ ├── CodeLine.js │ │ │ ├── CodeViewer.js │ │ │ ├── CommitHashChip.js │ │ │ ├── CommitItem.js │ │ │ ├── EmptyListNotice.js │ │ │ ├── FileBrowser.js │ │ │ ├── FileDiffExpansionPanel.js │ │ │ ├── FormattedTime.js │ │ │ ├── GroupCard.js │ │ │ ├── GroupDashboard.js │ │ │ ├── GroupRepositoryMenu.js │ │ │ ├── InlineMarker.js │ │ │ ├── LanguageSelect.js │ │ │ ├── Member.js │ │ │ ├── MemberItem.js │ │ │ ├── MemberList.js │ │ │ ├── MergeRequestDiff.js │ │ │ ├── MergeRequestItem.js │ │ │ ├── MergeRequestReviewers.js │ │ │ ├── NumbericDashboard.js │ │ │ ├── ObjectDiffViewer.js │ │ │ ├── ObjectViewer.js │ │ │ ├── RefFilter.js │ │ │ ├── RefList.js │ │ │ ├── RefSelector.js │ │ │ ├── RepositoryCard.js │ │ │ ├── RepositoryDashboard.js │ │ │ ├── RepositoryEmpty.js │ │ │ ├── RepositoryList.js │ │ │ ├── RepositoryListItem.js │ │ │ ├── RevisionSelector.js │ │ │ ├── SSHKeyItem.js │ │ │ ├── ShowHelper.js │ │ │ ├── SmartLink.js │ │ │ ├── SquareIconButton.js │ │ │ ├── TabHeader.js │ │ │ ├── TableList.js │ │ │ ├── TitleList.js │ │ │ └── UserOption.js │ │ └── view │ │ │ ├── ActivityList.js │ │ │ ├── BranchList.js │ │ │ ├── CommitDetail.js │ │ │ ├── CommitList.js │ │ │ ├── CreateBranch.js │ │ │ ├── CreateMergeRequest.js │ │ │ ├── CreateTag.js │ │ │ ├── FileDiffDetail.js │ │ │ ├── FileTree.js │ │ │ ├── GroupList.js │ │ │ ├── GroupSettingAdvanced.js │ │ │ ├── GroupSettingGeneral.js │ │ │ ├── GroupSettingMembers.js │ │ │ ├── MergeRequest.js │ │ │ ├── MergeRequestDetail.js │ │ │ ├── NewGroup.js │ │ │ ├── NewRepository.js │ │ │ ├── NewRepositoryFork.js │ │ │ ├── RepositoryList.js │ │ │ ├── RepositorySettingAdvanced.js │ │ │ ├── RepositorySettingBranch.js │ │ │ ├── RepositorySettingGeneral.js │ │ │ ├── RepositorySettingJob.js │ │ │ ├── RepositorySettingMembers.js │ │ │ ├── RepositorySettingWebhook.js │ │ │ ├── TagList.js │ │ │ ├── UserInfo.js │ │ │ ├── UserSettingEmail.js │ │ │ ├── UserSettingGeneral.js │ │ │ ├── UserSettingNotification.js │ │ │ ├── UserSettingSSHKey.js │ │ │ ├── admin │ │ │ ├── Dashboard.js │ │ │ ├── Groups.js │ │ │ ├── Repositories.js │ │ │ ├── Settings.js │ │ │ └── Users.js │ │ │ └── unit │ │ │ ├── CommitContainRef.js │ │ │ ├── FileDiffViewer.js │ │ │ ├── SetBaseInfo.js │ │ │ ├── SetEmail.js │ │ │ ├── SetPassword.js │ │ │ ├── SetUserInfo.js │ │ │ └── WebhookLog.js │ ├── config │ │ ├── Activity.js │ │ ├── Constants.js │ │ ├── DrawerConfig.js │ │ ├── Group.js │ │ ├── UAC.js │ │ ├── WebhookEventConfig.js │ │ └── colors │ │ │ └── theme1.js │ ├── data_providers │ │ ├── AdminData.js │ │ ├── GroupData.js │ │ ├── RepositoryData.js │ │ ├── UserData.js │ │ └── main.js │ ├── env.js │ ├── helpers │ │ ├── ErrorCodeParser.js │ │ ├── EventGenerator.js │ │ ├── FilterGenerator.js │ │ ├── LocaleSelector.js │ │ ├── NetworkHelper.js │ │ ├── ValidatorGenerator.js │ │ ├── VaribleHelper.js │ │ └── withScrollTrigger.js │ ├── index.js │ ├── lang │ │ ├── Lang.js │ │ ├── en-us │ │ │ ├── ActivityMessage.js │ │ │ ├── ErrorMessage.js │ │ │ ├── Label.js │ │ │ ├── Menu.js │ │ │ ├── Message.js │ │ │ ├── Notification.js │ │ │ ├── Phrase.js │ │ │ └── Term.js │ │ └── zh-cn │ │ │ ├── ActivityMessage.js │ │ │ ├── ErrorMessage.js │ │ │ ├── Label.js │ │ │ ├── Menu.js │ │ │ ├── Message.js │ │ │ ├── Notification.js │ │ │ ├── Phrase.js │ │ │ └── Term.js │ ├── maps │ │ ├── cn-all-sar-taiwan.geo.json │ │ └── world-palestine-lowres.geo.json │ ├── reducers │ │ ├── DataStore.js │ │ ├── DrawerStates.js │ │ ├── NotificationStates.js │ │ └── main.js │ └── routes │ │ ├── BaseRoutes.js │ │ └── MainRoutes.js │ └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/README_EN.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/backend/codefever_schedule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/backend/codefever_schedule.sh -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/access_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/access_controller.php -------------------------------------------------------------------------------- /application/config/arrays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/arrays.php -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/countries_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/countries_item.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/development/xmpp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/development/xmpp.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/event_dispatchers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/event_dispatchers.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/lang.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/pagination.php -------------------------------------------------------------------------------- /application/config/production/xmpp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/production/xmpp.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/rest.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/schedule.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/storage.php -------------------------------------------------------------------------------- /application/config/uploader_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/uploader_settings.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/api/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/api/admin.php -------------------------------------------------------------------------------- /application/controllers/api/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/api/base.php -------------------------------------------------------------------------------- /application/controllers/api/group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/api/group.php -------------------------------------------------------------------------------- /application/controllers/api/repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/api/repository.php -------------------------------------------------------------------------------- /application/controllers/api/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/api/user.php -------------------------------------------------------------------------------- /application/controllers/apiv1/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/apiv1/base.php -------------------------------------------------------------------------------- /application/controllers/apiv1/internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/apiv1/internal.php -------------------------------------------------------------------------------- /application/controllers/backend/codefever_schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/backend/codefever_schedule.php -------------------------------------------------------------------------------- /application/controllers/backend/repository_webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/backend/repository_webhook.php -------------------------------------------------------------------------------- /application/controllers/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/base.php -------------------------------------------------------------------------------- /application/controllers/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/captcha.php -------------------------------------------------------------------------------- /application/controllers/doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/doc.php -------------------------------------------------------------------------------- /application/controllers/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/file.php -------------------------------------------------------------------------------- /application/controllers/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/home.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/lang.php -------------------------------------------------------------------------------- /application/controllers/nopage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/nopage.php -------------------------------------------------------------------------------- /application/controllers/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/controllers/user.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/errors/error_404.php -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/errors/error_db.php -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/errors/error_general.php -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/errors/error_php.php -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/errors/index.html -------------------------------------------------------------------------------- /application/event_handlers/ActivityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/event_handlers/ActivityHandler.php -------------------------------------------------------------------------------- /application/event_handlers/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/event_handlers/EventHandler.php -------------------------------------------------------------------------------- /application/event_handlers/TestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/event_handlers/TestHandler.php -------------------------------------------------------------------------------- /application/event_handlers/UserNotificationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/event_handlers/UserNotificationHandler.php -------------------------------------------------------------------------------- /application/event_handlers/WebhookHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/event_handlers/WebhookHandler.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/jbimages_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/helpers/jbimages_helper.php -------------------------------------------------------------------------------- /application/helpers/spl_autoload_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/helpers/spl_autoload_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/base_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/language/english/base_lang.php -------------------------------------------------------------------------------- /application/language/english/user_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/language/english/user_lang.php -------------------------------------------------------------------------------- /application/language/zh-cn/base_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/language/zh-cn/base_lang.php -------------------------------------------------------------------------------- /application/language/zh-cn/user_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/language/zh-cn/user_lang.php -------------------------------------------------------------------------------- /application/libraries/Aes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Aes.php -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/Duality.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/Duality.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/PingFangRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/PingFangRegular.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/PingFang_2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/PingFang_2.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/PingFang_3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/PingFang_3.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/PingFang_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/PingFang_Bold.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /application/libraries/Avatars/fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Avatars/fonts/font.ttf -------------------------------------------------------------------------------- /application/libraries/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha.php -------------------------------------------------------------------------------- /application/libraries/Captcha/Duality.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Duality.ttf -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/2.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/3.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/4.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/6.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/7.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/8.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/9.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/b.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/c.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/e.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/f.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/g.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/h.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/j.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/k.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/k.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/m.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/p.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/q.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/r.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/t.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/v.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/w.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/x.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/OCR_A_Extended/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/OCR_A_Extended/y.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/2.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/3.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/4.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/6.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/7.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/8.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/9.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/b.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/c.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/e.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/f.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/g.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/h.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/j.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/j.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/k.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/k.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/m.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/p.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/q.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/r.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/t.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/v.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/w.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/x.gif -------------------------------------------------------------------------------- /application/libraries/Captcha/Small_Fonts/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Captcha/Small_Fonts/y.gif -------------------------------------------------------------------------------- /application/libraries/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt.php -------------------------------------------------------------------------------- /application/libraries/Crypt/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/Exception.php -------------------------------------------------------------------------------- /application/libraries/Crypt/HMAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/HMAC.php -------------------------------------------------------------------------------- /application/libraries/Crypt/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/ID.php -------------------------------------------------------------------------------- /application/libraries/Crypt/RSA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/RSA.php -------------------------------------------------------------------------------- /application/libraries/Crypt/RSA/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/RSA/Key.php -------------------------------------------------------------------------------- /application/libraries/Crypt/RSA/Key/Private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/RSA/Key/Private.php -------------------------------------------------------------------------------- /application/libraries/Crypt/RSA/Key/Public.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/RSA/Key/Public.php -------------------------------------------------------------------------------- /application/libraries/Crypt/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Crypt/URL.php -------------------------------------------------------------------------------- /application/libraries/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/OAuth.php -------------------------------------------------------------------------------- /application/libraries/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/Service.php -------------------------------------------------------------------------------- /application/libraries/api_controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/api_controller.php -------------------------------------------------------------------------------- /application/libraries/composerlib/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/composerlib/composer.json -------------------------------------------------------------------------------- /application/libraries/composerlib/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/composerlib/composer.lock -------------------------------------------------------------------------------- /application/libraries/composerlib/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/composerlib/composer.phar -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/libraries/key/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/key/auth -------------------------------------------------------------------------------- /application/libraries/key/auth.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/key/auth.pub -------------------------------------------------------------------------------- /application/libraries/service/AccessControl/APIAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/AccessControl/APIAuth.php -------------------------------------------------------------------------------- /application/libraries/service/CacheData/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/CacheData/Store.php -------------------------------------------------------------------------------- /application/libraries/service/Constant/ActivityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Constant/ActivityType.php -------------------------------------------------------------------------------- /application/libraries/service/Constant/EventType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Constant/EventType.php -------------------------------------------------------------------------------- /application/libraries/service/ErrorCode/ErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/ErrorCode/ErrorCode.php -------------------------------------------------------------------------------- /application/libraries/service/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Event/Event.php -------------------------------------------------------------------------------- /application/libraries/service/Event/EventData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Event/EventData.php -------------------------------------------------------------------------------- /application/libraries/service/Event/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Event/EventDispatcher.php -------------------------------------------------------------------------------- /application/libraries/service/Event/ServiceEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Event/ServiceEvent.php -------------------------------------------------------------------------------- /application/libraries/service/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Exception/Exception.php -------------------------------------------------------------------------------- /application/libraries/service/Git/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Git/Command.php -------------------------------------------------------------------------------- /application/libraries/service/Network/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Network/Request.php -------------------------------------------------------------------------------- /application/libraries/service/Network/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Network/Response.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/Command.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/DataConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/DataConstructor.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/Helper.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/Logger.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/MessageGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/MessageGenerator.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/TOTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/TOTP.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/UUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/UUID.php -------------------------------------------------------------------------------- /application/libraries/service/Utility/Workspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/Utility/Workspace.php -------------------------------------------------------------------------------- /application/libraries/service/autoLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/service/autoLoader.php -------------------------------------------------------------------------------- /application/libraries/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/storage.php -------------------------------------------------------------------------------- /application/libraries/storage/disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/storage/disk.php -------------------------------------------------------------------------------- /application/libraries/xmlrpc/xmlrpc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/xmlrpc/xmlrpc.inc -------------------------------------------------------------------------------- /application/libraries/xmlrpc/xmlrpc_wrappers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/xmlrpc/xmlrpc_wrappers.inc -------------------------------------------------------------------------------- /application/libraries/xmlrpc/xmlrpcs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/libraries/xmlrpc/xmlrpcs.inc -------------------------------------------------------------------------------- /application/models/group_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/models/group_model.php -------------------------------------------------------------------------------- /application/models/notification_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/models/notification_model.php -------------------------------------------------------------------------------- /application/models/repository_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/models/repository_model.php -------------------------------------------------------------------------------- /application/models/user_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/models/user_model.php -------------------------------------------------------------------------------- /application/models/user_sshkey_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/models/user_sshkey_model.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/base/disable_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/base/disable_message.php -------------------------------------------------------------------------------- /application/views/base/error_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/base/error_message.php -------------------------------------------------------------------------------- /application/views/base/success_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/base/success_message.php -------------------------------------------------------------------------------- /application/views/doc/detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/doc/detail.php -------------------------------------------------------------------------------- /application/views/newpage/footer_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/footer_include.php -------------------------------------------------------------------------------- /application/views/newpage/header_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/header_include.php -------------------------------------------------------------------------------- /application/views/newpage/login_activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/login_activity.php -------------------------------------------------------------------------------- /application/views/newpage/user/countries_dropdown_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/user/countries_dropdown_menu.php -------------------------------------------------------------------------------- /application/views/newpage/user/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/user/login.php -------------------------------------------------------------------------------- /application/views/newpage/user/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/user/register.php -------------------------------------------------------------------------------- /application/views/newpage/user/reset_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/user/reset_password.php -------------------------------------------------------------------------------- /application/views/newpage/user/verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/newpage/user/verify.php -------------------------------------------------------------------------------- /application/views/nopage/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/application/views/nopage/index.php -------------------------------------------------------------------------------- /codefever.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/codefever.build -------------------------------------------------------------------------------- /config.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/config.template.yaml -------------------------------------------------------------------------------- /doc/en-us/admin/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/admin/dashboard.md -------------------------------------------------------------------------------- /doc/en-us/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/admin/index.md -------------------------------------------------------------------------------- /doc/en-us/admin/repository_and_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/admin/repository_and_groups.md -------------------------------------------------------------------------------- /doc/en-us/admin/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/admin/settings.md -------------------------------------------------------------------------------- /doc/en-us/admin/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/admin/users.md -------------------------------------------------------------------------------- /doc/en-us/common/clone_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/clone_method.md -------------------------------------------------------------------------------- /doc/en-us/common/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/history.md -------------------------------------------------------------------------------- /doc/en-us/common/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/index.md -------------------------------------------------------------------------------- /doc/en-us/common/multiple_email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/multiple_email.md -------------------------------------------------------------------------------- /doc/en-us/common/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/role.md -------------------------------------------------------------------------------- /doc/en-us/common/ssh_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/ssh_key.md -------------------------------------------------------------------------------- /doc/en-us/common/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/common/workflow.md -------------------------------------------------------------------------------- /doc/en-us/contribute/bug_fix_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/bug_fix_issue.md -------------------------------------------------------------------------------- /doc/en-us/contribute/bug_fix_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/bug_fix_pr.md -------------------------------------------------------------------------------- /doc/en-us/contribute/doc_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/doc_pr.md -------------------------------------------------------------------------------- /doc/en-us/contribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/index.md -------------------------------------------------------------------------------- /doc/en-us/contribute/new_feature_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/new_feature_pr.md -------------------------------------------------------------------------------- /doc/en-us/contribute/request_feature_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/contribute/request_feature_issue.md -------------------------------------------------------------------------------- /doc/en-us/git/checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/checkout.md -------------------------------------------------------------------------------- /doc/en-us/git/clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/clone.md -------------------------------------------------------------------------------- /doc/en-us/git/create_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/create_branch.md -------------------------------------------------------------------------------- /doc/en-us/git/git_command_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/git_command_reference.md -------------------------------------------------------------------------------- /doc/en-us/git/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/index.md -------------------------------------------------------------------------------- /doc/en-us/git/merge_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/merge_branch.md -------------------------------------------------------------------------------- /doc/en-us/git/push_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/push_branch.md -------------------------------------------------------------------------------- /doc/en-us/git/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/remote.md -------------------------------------------------------------------------------- /doc/en-us/git/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/git/revert.md -------------------------------------------------------------------------------- /doc/en-us/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/index.md -------------------------------------------------------------------------------- /doc/en-us/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/installation/index.md -------------------------------------------------------------------------------- /doc/en-us/installation/install_from_scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/installation/install_from_scratch.md -------------------------------------------------------------------------------- /doc/en-us/installation/install_via_docker.md: -------------------------------------------------------------------------------- 1 | # Docker 镜像安装 2 | 3 | > 文档正在准备中 -------------------------------------------------------------------------------- /doc/en-us/repo/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/commit.md -------------------------------------------------------------------------------- /doc/en-us/repo/create_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/create_branch.md -------------------------------------------------------------------------------- /doc/en-us/repo/create_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/create_repo.md -------------------------------------------------------------------------------- /doc/en-us/repo/create_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/create_tag.md -------------------------------------------------------------------------------- /doc/en-us/repo/fork_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/fork_repo.md -------------------------------------------------------------------------------- /doc/en-us/repo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/index.md -------------------------------------------------------------------------------- /doc/en-us/repo/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/members.md -------------------------------------------------------------------------------- /doc/en-us/repo/merge_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/merge_request.md -------------------------------------------------------------------------------- /doc/en-us/repo/protected_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/protected_branch.md -------------------------------------------------------------------------------- /doc/en-us/repo/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/settings.md -------------------------------------------------------------------------------- /doc/en-us/repo/view_commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/view_commits.md -------------------------------------------------------------------------------- /doc/en-us/repo/view_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/view_files.md -------------------------------------------------------------------------------- /doc/en-us/repo/view_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo/view_history.md -------------------------------------------------------------------------------- /doc/en-us/repo_group/create_repo_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo_group/create_repo_group.md -------------------------------------------------------------------------------- /doc/en-us/repo_group/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo_group/index.md -------------------------------------------------------------------------------- /doc/en-us/repo_group/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo_group/members.md -------------------------------------------------------------------------------- /doc/en-us/repo_group/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/repo_group/settings.md -------------------------------------------------------------------------------- /doc/en-us/start/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/start/index.md -------------------------------------------------------------------------------- /doc/en-us/start/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/en-us/start/welcome.md -------------------------------------------------------------------------------- /doc/zh-cn/admin/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/admin/dashboard.md -------------------------------------------------------------------------------- /doc/zh-cn/admin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/admin/index.md -------------------------------------------------------------------------------- /doc/zh-cn/admin/repository_and_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/admin/repository_and_groups.md -------------------------------------------------------------------------------- /doc/zh-cn/admin/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/admin/settings.md -------------------------------------------------------------------------------- /doc/zh-cn/admin/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/admin/users.md -------------------------------------------------------------------------------- /doc/zh-cn/common/clone_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/clone_method.md -------------------------------------------------------------------------------- /doc/zh-cn/common/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/history.md -------------------------------------------------------------------------------- /doc/zh-cn/common/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/index.md -------------------------------------------------------------------------------- /doc/zh-cn/common/multiple_email.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/multiple_email.md -------------------------------------------------------------------------------- /doc/zh-cn/common/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/role.md -------------------------------------------------------------------------------- /doc/zh-cn/common/ssh_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/ssh_key.md -------------------------------------------------------------------------------- /doc/zh-cn/common/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/common/workflow.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/bug_fix_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/bug_fix_issue.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/bug_fix_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/bug_fix_pr.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/doc_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/doc_pr.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/index.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/new_feature_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/new_feature_pr.md -------------------------------------------------------------------------------- /doc/zh-cn/contribute/request_feature_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/contribute/request_feature_issue.md -------------------------------------------------------------------------------- /doc/zh-cn/git/checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/checkout.md -------------------------------------------------------------------------------- /doc/zh-cn/git/clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/clone.md -------------------------------------------------------------------------------- /doc/zh-cn/git/create_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/create_branch.md -------------------------------------------------------------------------------- /doc/zh-cn/git/git_command_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/git_command_reference.md -------------------------------------------------------------------------------- /doc/zh-cn/git/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/index.md -------------------------------------------------------------------------------- /doc/zh-cn/git/merge_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/merge_branch.md -------------------------------------------------------------------------------- /doc/zh-cn/git/push_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/push_branch.md -------------------------------------------------------------------------------- /doc/zh-cn/git/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/remote.md -------------------------------------------------------------------------------- /doc/zh-cn/git/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/git/revert.md -------------------------------------------------------------------------------- /doc/zh-cn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/index.md -------------------------------------------------------------------------------- /doc/zh-cn/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/installation/index.md -------------------------------------------------------------------------------- /doc/zh-cn/installation/install_from_scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/installation/install_from_scratch.md -------------------------------------------------------------------------------- /doc/zh-cn/installation/install_via_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/installation/install_via_docker.md -------------------------------------------------------------------------------- /doc/zh-cn/installation/install_via_docker_compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/installation/install_via_docker_compose.md -------------------------------------------------------------------------------- /doc/zh-cn/installation/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/installation/update.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/commit.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/create_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/create_branch.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/create_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/create_repo.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/create_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/create_tag.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/fork_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/fork_repo.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/index.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/members.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/merge_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/merge_request.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/protected_branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/protected_branch.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/settings.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/view_commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/view_commits.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/view_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/view_files.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/view_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/view_history.md -------------------------------------------------------------------------------- /doc/zh-cn/repo/webhooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo/webhooks.md -------------------------------------------------------------------------------- /doc/zh-cn/repo_group/create_repository_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo_group/create_repository_group.md -------------------------------------------------------------------------------- /doc/zh-cn/repo_group/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo_group/index.md -------------------------------------------------------------------------------- /doc/zh-cn/repo_group/members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo_group/members.md -------------------------------------------------------------------------------- /doc/zh-cn/repo_group/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/repo_group/settings.md -------------------------------------------------------------------------------- /doc/zh-cn/start/index.md: -------------------------------------------------------------------------------- 1 | [欢迎使用](welcome.md) 2 | -------------------------------------------------------------------------------- /doc/zh-cn/start/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/doc/zh-cn/start/welcome.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/env.template.yaml -------------------------------------------------------------------------------- /git-storage/hooks/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/git-storage/hooks/main -------------------------------------------------------------------------------- /git-storage/hooks/post-receive: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /git-storage/hooks/pre-receive: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /git-storage/hooks/update: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /http-gateway/JsonHttpClient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/http-gateway/JsonHttpClient/main.go -------------------------------------------------------------------------------- /http-gateway/Request/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/http-gateway/Request/main.go -------------------------------------------------------------------------------- /http-gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/http-gateway/main.go -------------------------------------------------------------------------------- /misc/codefever: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/codefever -------------------------------------------------------------------------------- /misc/codefever-service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/codefever-service-template -------------------------------------------------------------------------------- /misc/create_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/create_db.sh -------------------------------------------------------------------------------- /misc/db_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/db_data.sql -------------------------------------------------------------------------------- /misc/db_structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/db_structure.sql -------------------------------------------------------------------------------- /misc/db_update_20220215.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/db_update_20220215.sql -------------------------------------------------------------------------------- /misc/docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /misc/docker/supervisor-codefever-http-gateway.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/docker/supervisor-codefever-http-gateway.conf -------------------------------------------------------------------------------- /misc/docker/vhost.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/docker/vhost.conf-template -------------------------------------------------------------------------------- /misc/hooks/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/hooks/main -------------------------------------------------------------------------------- /misc/hooks/post-receive: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /misc/hooks/pre-receive: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /misc/hooks/update: -------------------------------------------------------------------------------- 1 | main -------------------------------------------------------------------------------- /misc/initailize_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/initailize_container.sh -------------------------------------------------------------------------------- /misc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/install.sh -------------------------------------------------------------------------------- /misc/modify_authorized_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/modify_authorized_keys.php -------------------------------------------------------------------------------- /misc/nginx-service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/nginx-service-template -------------------------------------------------------------------------------- /misc/nginx.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/nginx.conf-template -------------------------------------------------------------------------------- /misc/php-fpm-service-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/php-fpm-service-template -------------------------------------------------------------------------------- /misc/php-fpm.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/php-fpm.conf-template -------------------------------------------------------------------------------- /misc/php.ini-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/php.ini-template -------------------------------------------------------------------------------- /misc/remove_test_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/remove_test_data.sh -------------------------------------------------------------------------------- /misc/system_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/system_init.sh -------------------------------------------------------------------------------- /misc/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/update.sh -------------------------------------------------------------------------------- /misc/www.conf-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/misc/www.conf-template -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/phpunit.xml -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/run_test.sh -------------------------------------------------------------------------------- /ssh-gateway/JsonHttpClient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/ssh-gateway/JsonHttpClient/main.go -------------------------------------------------------------------------------- /ssh-gateway/shell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/ssh-gateway/shell/main.go -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_active_rec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_active_rec.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Log.php -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Session.php -------------------------------------------------------------------------------- /system/libraries/Sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Sha1.php -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /system/libraries/javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/system/libraries/javascript/Jquery.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/model/group/CheckPreserveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/CheckPreserveTest.php -------------------------------------------------------------------------------- /tests/model/group/GetMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/GetMemberRoleTest.php -------------------------------------------------------------------------------- /tests/model/group/GetMergeRequestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/GetMergeRequestsTest.php -------------------------------------------------------------------------------- /tests/model/group/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/GetTest.php -------------------------------------------------------------------------------- /tests/model/group/ListActivitiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/ListActivitiesTest.php -------------------------------------------------------------------------------- /tests/model/group/ListJoinedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/ListJoinedTest.php -------------------------------------------------------------------------------- /tests/model/group/ListMembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/ListMembersTest.php -------------------------------------------------------------------------------- /tests/model/group/ListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/ListTest.php -------------------------------------------------------------------------------- /tests/model/group/ModifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/ModifyTest.php -------------------------------------------------------------------------------- /tests/model/group/NormalizeActivitiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/NormalizeActivitiesTest.php -------------------------------------------------------------------------------- /tests/model/group/NormalizeCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/NormalizeCreatorTest.php -------------------------------------------------------------------------------- /tests/model/group/NormalizeMembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/NormalizeMembersTest.php -------------------------------------------------------------------------------- /tests/model/group/NormalizeMergeRequestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/NormalizeMergeRequestsTest.php -------------------------------------------------------------------------------- /tests/model/group/NormalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/NormalizeTest.php -------------------------------------------------------------------------------- /tests/model/group/SearchByDisplayNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/SearchByDisplayNameTest.php -------------------------------------------------------------------------------- /tests/model/group/SearchByNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/group/SearchByNameTest.php -------------------------------------------------------------------------------- /tests/model/notification/AddNotificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/notification/AddNotificationTest.php -------------------------------------------------------------------------------- /tests/model/notification/ListNotificationRefusedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/notification/ListNotificationRefusedTest.php -------------------------------------------------------------------------------- /tests/model/notification/ListNotificationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/notification/ListNotificationsTest.php -------------------------------------------------------------------------------- /tests/model/notification/NormalizeNotificationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/notification/NormalizeNotificationsTest.php -------------------------------------------------------------------------------- /tests/model/notification/SetGroupOrRepoRefusedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/notification/SetGroupOrRepoRefusedTest.php -------------------------------------------------------------------------------- /tests/model/repository/CreateProtectedBranchRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/CreateProtectedBranchRuleTest.php -------------------------------------------------------------------------------- /tests/model/repository/GetProtectedBranchRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/GetProtectedBranchRuleTest.php -------------------------------------------------------------------------------- /tests/model/repository/ListProtectedBranchRulesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/ListProtectedBranchRulesTest.php -------------------------------------------------------------------------------- /tests/model/repository/NormalizeReviewersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/NormalizeReviewersTest.php -------------------------------------------------------------------------------- /tests/model/repository/addMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/addMemberTest.php -------------------------------------------------------------------------------- /tests/model/repository/catObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/catObjectTest.php -------------------------------------------------------------------------------- /tests/model/repository/countForksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/countForksTest.php -------------------------------------------------------------------------------- /tests/model/repository/countMergeRequestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/countMergeRequestsTest.php -------------------------------------------------------------------------------- /tests/model/repository/createBranchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/createBranchTest.php -------------------------------------------------------------------------------- /tests/model/repository/createTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/createTagTest.php -------------------------------------------------------------------------------- /tests/model/repository/deleteBranchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/deleteBranchTest.php -------------------------------------------------------------------------------- /tests/model/repository/deleteTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/deleteTagTest.php -------------------------------------------------------------------------------- /tests/model/repository/getAccessURLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getAccessURLTest.php -------------------------------------------------------------------------------- /tests/model/repository/getBranchCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getBranchCountTest.php -------------------------------------------------------------------------------- /tests/model/repository/getBranchListBySHA1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getBranchListBySHA1Test.php -------------------------------------------------------------------------------- /tests/model/repository/getBranchListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getBranchListTest.php -------------------------------------------------------------------------------- /tests/model/repository/getBranchesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getBranchesTest.php -------------------------------------------------------------------------------- /tests/model/repository/getChangedFileListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getChangedFileListTest.php -------------------------------------------------------------------------------- /tests/model/repository/getCommitCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getCommitCountTest.php -------------------------------------------------------------------------------- /tests/model/repository/getCommitDetailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getCommitDetailTest.php -------------------------------------------------------------------------------- /tests/model/repository/getCommitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getCommitsTest.php -------------------------------------------------------------------------------- /tests/model/repository/getFileSizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getFileSizeTest.php -------------------------------------------------------------------------------- /tests/model/repository/getLastCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getLastCommitTest.php -------------------------------------------------------------------------------- /tests/model/repository/getMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getMemberRoleTest.php -------------------------------------------------------------------------------- /tests/model/repository/getObjectsCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getObjectsCountTest.php -------------------------------------------------------------------------------- /tests/model/repository/getTagCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getTagCountTest.php -------------------------------------------------------------------------------- /tests/model/repository/getTagListBySHA1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getTagListBySHA1Test.php -------------------------------------------------------------------------------- /tests/model/repository/getTagListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getTagListTest.php -------------------------------------------------------------------------------- /tests/model/repository/getTagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getTagsTest.php -------------------------------------------------------------------------------- /tests/model/repository/getTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/getTest.php -------------------------------------------------------------------------------- /tests/model/repository/isMergedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/isMergedTest.php -------------------------------------------------------------------------------- /tests/model/repository/listActivitiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/listActivitiesTest.php -------------------------------------------------------------------------------- /tests/model/repository/listInGroupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/listInGroupTest.php -------------------------------------------------------------------------------- /tests/model/repository/listJoinedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/listJoinedTest.php -------------------------------------------------------------------------------- /tests/model/repository/listMembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/listMembersTest.php -------------------------------------------------------------------------------- /tests/model/repository/listTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/listTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeActivitiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeActivitiesTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeBranchesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeBranchesTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeCommitDetailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeCommitDetailTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeCommitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeCommitsTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeCreatorTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeMembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeMembersTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeMergeRequestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeMergeRequestsTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeTagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeTagsTest.php -------------------------------------------------------------------------------- /tests/model/repository/normalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/normalizeTest.php -------------------------------------------------------------------------------- /tests/model/repository/removeMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/removeMemberTest.php -------------------------------------------------------------------------------- /tests/model/repository/searchByNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/searchByNameTest.php -------------------------------------------------------------------------------- /tests/model/repository/searchByUKeyAndNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/repository/searchByUKeyAndNameTest.php -------------------------------------------------------------------------------- /tests/model/user/AddCommitEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user/AddCommitEmailTest.php -------------------------------------------------------------------------------- /tests/model/user/GetByEmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user/GetByEmailTest.php -------------------------------------------------------------------------------- /tests/model/user/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user/GetTest.php -------------------------------------------------------------------------------- /tests/model/user/NormalizeCommitEmailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user/NormalizeCommitEmailsTest.php -------------------------------------------------------------------------------- /tests/model/user/NormalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user/NormalizeTest.php -------------------------------------------------------------------------------- /tests/model/user_sshkey/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user_sshkey/GetTest.php -------------------------------------------------------------------------------- /tests/model/user_sshkey/ListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user_sshkey/ListTest.php -------------------------------------------------------------------------------- /tests/model/user_sshkey/NormalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user_sshkey/NormalizeTest.php -------------------------------------------------------------------------------- /tests/model/user_sshkey/SearchAuthKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user_sshkey/SearchAuthKeyTest.php -------------------------------------------------------------------------------- /tests/model/user_sshkey/SearchKeyHashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/model/user_sshkey/SearchKeyHashTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/DeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/DeleteTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/EmptyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/EmptyTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/ExsitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/ExsitTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/GetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/GetTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/ListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/ListTest.php -------------------------------------------------------------------------------- /tests/service/CacheData/Store/SetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/CacheData/Store/SetTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/CreateTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/CreateTagTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetCommitInfoByHashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetCommitInfoByHashTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetCommitListFromLocalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetCommitListFromLocalTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetCommitListFromRemoteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetCommitListFromRemoteTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetCommitListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetCommitListTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetCommitLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetCommitLogTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetLastLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetLastLogTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/GetRevisionRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/GetRevisionRangeTest.php -------------------------------------------------------------------------------- /tests/service/Git/Command/ShowTagCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Git/Command/ShowTagCommitTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/GetDelimiterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/GetDelimiterTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/GetSSHKeyTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/GetSSHKeyTypeTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/GetUniqueItemListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/GetUniqueItemListTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/IsCrontabTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/IsCrontabTimeTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/ParseDiffStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/ParseDiffStringTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/ParseJSONTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/ParseJSONTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/ParseObjectToFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/ParseObjectToFileTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/ParseTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/ParseTableTest.php -------------------------------------------------------------------------------- /tests/service/Utility/Helper/ToJSONTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/Helper/ToJSONTest.php -------------------------------------------------------------------------------- /tests/service/Utility/TOTP/TOTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/TOTP/TOTPTest.php -------------------------------------------------------------------------------- /tests/service/Utility/UUID/GetKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/UUID/GetKeyTest.php -------------------------------------------------------------------------------- /tests/service/Utility/UUID/GetUUIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/tests/service/Utility/UUID/GetUUIDTest.php -------------------------------------------------------------------------------- /www/app: -------------------------------------------------------------------------------- 1 | view/build -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/index.php -------------------------------------------------------------------------------- /www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/manifest.json -------------------------------------------------------------------------------- /www/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/sitemap.xml -------------------------------------------------------------------------------- /www/static/css/asset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/css/asset.css -------------------------------------------------------------------------------- /www/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/css/common.css -------------------------------------------------------------------------------- /www/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/css/main.css -------------------------------------------------------------------------------- /www/static/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/css/markdown.css -------------------------------------------------------------------------------- /www/static/css/scroll-animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/css/scroll-animation.css -------------------------------------------------------------------------------- /www/static/images/activity_pgyer_codefever_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/activity_pgyer_codefever_.png -------------------------------------------------------------------------------- /www/static/images/branch-rules-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/branch-rules-empty.png -------------------------------------------------------------------------------- /www/static/images/branches-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/branches-empty.png -------------------------------------------------------------------------------- /www/static/images/commits-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/commits-empty.png -------------------------------------------------------------------------------- /www/static/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/default_avatar.png -------------------------------------------------------------------------------- /www/static/images/header-codefever-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/header-codefever-logo.png -------------------------------------------------------------------------------- /www/static/images/language_chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/language_chinese.png -------------------------------------------------------------------------------- /www/static/images/language_english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/language_english.png -------------------------------------------------------------------------------- /www/static/images/logo-community-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/logo-community-doc.png -------------------------------------------------------------------------------- /www/static/images/logo-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/logo-community.png -------------------------------------------------------------------------------- /www/static/images/logo-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/logo-ico.png -------------------------------------------------------------------------------- /www/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/logo.png -------------------------------------------------------------------------------- /www/static/images/mergerequests-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/mergerequests-empty.png -------------------------------------------------------------------------------- /www/static/images/repositories-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/repositories-empty.png -------------------------------------------------------------------------------- /www/static/images/tags-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/images/tags-empty.png -------------------------------------------------------------------------------- /www/static/script/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/script/additional-methods.js -------------------------------------------------------------------------------- /www/static/script/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/script/common.js -------------------------------------------------------------------------------- /www/static/script/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/script/marked.min.js -------------------------------------------------------------------------------- /www/static/script/scrollAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/script/scrollAnimation.js -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/css/bootstrap-grid.css -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/css/bootstrap.css -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/js/bootstrap.js -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/js/bootstrap.js.map -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /www/static/vendor/bootstrap-4.4.1/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/bootstrap-4.4.1/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/LICENSE.txt -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/css/all.css -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/css/all.min.css -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/css/brands.css -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/css/solid.css -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/all.js -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/all.min.js -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/brands.js -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/regular.js -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/solid.js -------------------------------------------------------------------------------- /www/static/vendor/fontawesome-free-5.13.0/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/fontawesome-free-5.13.0/js/v4-shims.js -------------------------------------------------------------------------------- /www/static/vendor/intltel/css/intlTelInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/intltel/css/intlTelInput.css -------------------------------------------------------------------------------- /www/static/vendor/intltel/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/intltel/img/flags.png -------------------------------------------------------------------------------- /www/static/vendor/intltel/img/flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/intltel/img/flags@2x.png -------------------------------------------------------------------------------- /www/static/vendor/intltel/js/intlTelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/intltel/js/intlTelInput.js -------------------------------------------------------------------------------- /www/static/vendor/intltel/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/intltel/js/utils.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-3.5.0/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-3.5.0/jquery.min.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/Gruntfile.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/README.md -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/lib/jquery.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/package.json -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/src/ajax.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/src/core.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/test/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/test/aria.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/test/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/test/rules.js -------------------------------------------------------------------------------- /www/static/vendor/jquery-validation-1.19.1/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/jquery-validation-1.19.1/test/test.js -------------------------------------------------------------------------------- /www/static/vendor/poper-1.16.0/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/poper-1.16.0/popper.min.js -------------------------------------------------------------------------------- /www/static/vendor/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/toastr/toastr.css -------------------------------------------------------------------------------- /www/static/vendor/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/static/vendor/toastr/toastr.js -------------------------------------------------------------------------------- /www/view/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/.gitignore -------------------------------------------------------------------------------- /www/view/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/asset-manifest.json -------------------------------------------------------------------------------- /www/view/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/favicon.ico -------------------------------------------------------------------------------- /www/view/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/index.html -------------------------------------------------------------------------------- /www/view/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/manifest.json -------------------------------------------------------------------------------- /www/view/build/static/css/1.75563d44.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/css/1.75563d44.chunk.css -------------------------------------------------------------------------------- /www/view/build/static/css/1.75563d44.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/css/1.75563d44.chunk.css.map -------------------------------------------------------------------------------- /www/view/build/static/js/1.1be53246.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/js/1.1be53246.chunk.js -------------------------------------------------------------------------------- /www/view/build/static/js/1.1be53246.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/js/1.1be53246.chunk.js.LICENSE.txt -------------------------------------------------------------------------------- /www/view/build/static/js/1.1be53246.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/js/1.1be53246.chunk.js.map -------------------------------------------------------------------------------- /www/view/build/static/js/main.e442a514.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/js/main.e442a514.js -------------------------------------------------------------------------------- /www/view/build/static/js/main.e442a514.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/build/static/js/main.e442a514.js.map -------------------------------------------------------------------------------- /www/view/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/env.js -------------------------------------------------------------------------------- /www/view/config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/getHttpsConfig.js -------------------------------------------------------------------------------- /www/view/config/jest/babelTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/jest/babelTransform.js -------------------------------------------------------------------------------- /www/view/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/jest/cssTransform.js -------------------------------------------------------------------------------- /www/view/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/jest/fileTransform.js -------------------------------------------------------------------------------- /www/view/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/modules.js -------------------------------------------------------------------------------- /www/view/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/paths.js -------------------------------------------------------------------------------- /www/view/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/pnpTs.js -------------------------------------------------------------------------------- /www/view/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/webpack.config.js -------------------------------------------------------------------------------- /www/view/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /www/view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/package.json -------------------------------------------------------------------------------- /www/view/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/public/favicon.ico -------------------------------------------------------------------------------- /www/view/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/public/index.html -------------------------------------------------------------------------------- /www/view/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/public/manifest.json -------------------------------------------------------------------------------- /www/view/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/scripts/build.js -------------------------------------------------------------------------------- /www/view/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/scripts/start.js -------------------------------------------------------------------------------- /www/view/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/scripts/test.js -------------------------------------------------------------------------------- /www/view/src/assets/styles/App.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/assets/styles/App.styl -------------------------------------------------------------------------------- /www/view/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/App.js -------------------------------------------------------------------------------- /www/view/src/components/Comformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/Comformation.js -------------------------------------------------------------------------------- /www/view/src/components/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/Drawer.js -------------------------------------------------------------------------------- /www/view/src/components/DrawerList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/DrawerList.js -------------------------------------------------------------------------------- /www/view/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/Header.js -------------------------------------------------------------------------------- /www/view/src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/Main.js -------------------------------------------------------------------------------- /www/view/src/components/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/Notification.js -------------------------------------------------------------------------------- /www/view/src/components/NotificationBars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/NotificationBars.js -------------------------------------------------------------------------------- /www/view/src/components/unit/ActivityItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/ActivityItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/AvatarUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/AvatarUploader.js -------------------------------------------------------------------------------- /www/view/src/components/unit/CodeDiffViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/CodeDiffViewer.js -------------------------------------------------------------------------------- /www/view/src/components/unit/CodeLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/CodeLine.js -------------------------------------------------------------------------------- /www/view/src/components/unit/CodeViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/CodeViewer.js -------------------------------------------------------------------------------- /www/view/src/components/unit/CommitHashChip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/CommitHashChip.js -------------------------------------------------------------------------------- /www/view/src/components/unit/CommitItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/CommitItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/EmptyListNotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/EmptyListNotice.js -------------------------------------------------------------------------------- /www/view/src/components/unit/FileBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/FileBrowser.js -------------------------------------------------------------------------------- /www/view/src/components/unit/FileDiffExpansionPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/FileDiffExpansionPanel.js -------------------------------------------------------------------------------- /www/view/src/components/unit/FormattedTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/FormattedTime.js -------------------------------------------------------------------------------- /www/view/src/components/unit/GroupCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/GroupCard.js -------------------------------------------------------------------------------- /www/view/src/components/unit/GroupDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/GroupDashboard.js -------------------------------------------------------------------------------- /www/view/src/components/unit/GroupRepositoryMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/GroupRepositoryMenu.js -------------------------------------------------------------------------------- /www/view/src/components/unit/InlineMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/InlineMarker.js -------------------------------------------------------------------------------- /www/view/src/components/unit/LanguageSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/LanguageSelect.js -------------------------------------------------------------------------------- /www/view/src/components/unit/Member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/Member.js -------------------------------------------------------------------------------- /www/view/src/components/unit/MemberItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/MemberItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/MemberList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/MemberList.js -------------------------------------------------------------------------------- /www/view/src/components/unit/MergeRequestDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/MergeRequestDiff.js -------------------------------------------------------------------------------- /www/view/src/components/unit/MergeRequestItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/MergeRequestItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/MergeRequestReviewers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/MergeRequestReviewers.js -------------------------------------------------------------------------------- /www/view/src/components/unit/NumbericDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/NumbericDashboard.js -------------------------------------------------------------------------------- /www/view/src/components/unit/ObjectDiffViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/ObjectDiffViewer.js -------------------------------------------------------------------------------- /www/view/src/components/unit/ObjectViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/ObjectViewer.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RefFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RefFilter.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RefList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RefList.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RefSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RefSelector.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RepositoryCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RepositoryCard.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RepositoryDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RepositoryDashboard.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RepositoryEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RepositoryEmpty.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RepositoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RepositoryList.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RepositoryListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RepositoryListItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/RevisionSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/RevisionSelector.js -------------------------------------------------------------------------------- /www/view/src/components/unit/SSHKeyItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/SSHKeyItem.js -------------------------------------------------------------------------------- /www/view/src/components/unit/ShowHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/ShowHelper.js -------------------------------------------------------------------------------- /www/view/src/components/unit/SmartLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/SmartLink.js -------------------------------------------------------------------------------- /www/view/src/components/unit/SquareIconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/SquareIconButton.js -------------------------------------------------------------------------------- /www/view/src/components/unit/TabHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/TabHeader.js -------------------------------------------------------------------------------- /www/view/src/components/unit/TableList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/TableList.js -------------------------------------------------------------------------------- /www/view/src/components/unit/TitleList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/TitleList.js -------------------------------------------------------------------------------- /www/view/src/components/unit/UserOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/unit/UserOption.js -------------------------------------------------------------------------------- /www/view/src/components/view/ActivityList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/ActivityList.js -------------------------------------------------------------------------------- /www/view/src/components/view/BranchList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/BranchList.js -------------------------------------------------------------------------------- /www/view/src/components/view/CommitDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/CommitDetail.js -------------------------------------------------------------------------------- /www/view/src/components/view/CommitList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/CommitList.js -------------------------------------------------------------------------------- /www/view/src/components/view/CreateBranch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/CreateBranch.js -------------------------------------------------------------------------------- /www/view/src/components/view/CreateMergeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/CreateMergeRequest.js -------------------------------------------------------------------------------- /www/view/src/components/view/CreateTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/CreateTag.js -------------------------------------------------------------------------------- /www/view/src/components/view/FileDiffDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/FileDiffDetail.js -------------------------------------------------------------------------------- /www/view/src/components/view/FileTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/FileTree.js -------------------------------------------------------------------------------- /www/view/src/components/view/GroupList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/GroupList.js -------------------------------------------------------------------------------- /www/view/src/components/view/GroupSettingAdvanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/GroupSettingAdvanced.js -------------------------------------------------------------------------------- /www/view/src/components/view/GroupSettingGeneral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/GroupSettingGeneral.js -------------------------------------------------------------------------------- /www/view/src/components/view/GroupSettingMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/GroupSettingMembers.js -------------------------------------------------------------------------------- /www/view/src/components/view/MergeRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/MergeRequest.js -------------------------------------------------------------------------------- /www/view/src/components/view/MergeRequestDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/MergeRequestDetail.js -------------------------------------------------------------------------------- /www/view/src/components/view/NewGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/NewGroup.js -------------------------------------------------------------------------------- /www/view/src/components/view/NewRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/NewRepository.js -------------------------------------------------------------------------------- /www/view/src/components/view/NewRepositoryFork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/NewRepositoryFork.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositoryList.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositorySettingBranch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositorySettingBranch.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositorySettingGeneral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositorySettingGeneral.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositorySettingJob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositorySettingJob.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositorySettingMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositorySettingMembers.js -------------------------------------------------------------------------------- /www/view/src/components/view/RepositorySettingWebhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/RepositorySettingWebhook.js -------------------------------------------------------------------------------- /www/view/src/components/view/TagList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/TagList.js -------------------------------------------------------------------------------- /www/view/src/components/view/UserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/UserInfo.js -------------------------------------------------------------------------------- /www/view/src/components/view/UserSettingEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/UserSettingEmail.js -------------------------------------------------------------------------------- /www/view/src/components/view/UserSettingGeneral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/UserSettingGeneral.js -------------------------------------------------------------------------------- /www/view/src/components/view/UserSettingNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/UserSettingNotification.js -------------------------------------------------------------------------------- /www/view/src/components/view/UserSettingSSHKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/UserSettingSSHKey.js -------------------------------------------------------------------------------- /www/view/src/components/view/admin/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/admin/Dashboard.js -------------------------------------------------------------------------------- /www/view/src/components/view/admin/Groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/admin/Groups.js -------------------------------------------------------------------------------- /www/view/src/components/view/admin/Repositories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/admin/Repositories.js -------------------------------------------------------------------------------- /www/view/src/components/view/admin/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/admin/Settings.js -------------------------------------------------------------------------------- /www/view/src/components/view/admin/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/admin/Users.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/CommitContainRef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/CommitContainRef.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/FileDiffViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/FileDiffViewer.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/SetBaseInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/SetBaseInfo.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/SetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/SetEmail.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/SetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/SetPassword.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/SetUserInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/SetUserInfo.js -------------------------------------------------------------------------------- /www/view/src/components/view/unit/WebhookLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/components/view/unit/WebhookLog.js -------------------------------------------------------------------------------- /www/view/src/config/Activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/Activity.js -------------------------------------------------------------------------------- /www/view/src/config/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/Constants.js -------------------------------------------------------------------------------- /www/view/src/config/DrawerConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/DrawerConfig.js -------------------------------------------------------------------------------- /www/view/src/config/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/Group.js -------------------------------------------------------------------------------- /www/view/src/config/UAC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/UAC.js -------------------------------------------------------------------------------- /www/view/src/config/WebhookEventConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/WebhookEventConfig.js -------------------------------------------------------------------------------- /www/view/src/config/colors/theme1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/config/colors/theme1.js -------------------------------------------------------------------------------- /www/view/src/data_providers/AdminData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/data_providers/AdminData.js -------------------------------------------------------------------------------- /www/view/src/data_providers/GroupData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/data_providers/GroupData.js -------------------------------------------------------------------------------- /www/view/src/data_providers/RepositoryData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/data_providers/RepositoryData.js -------------------------------------------------------------------------------- /www/view/src/data_providers/UserData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/data_providers/UserData.js -------------------------------------------------------------------------------- /www/view/src/data_providers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/data_providers/main.js -------------------------------------------------------------------------------- /www/view/src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/env.js -------------------------------------------------------------------------------- /www/view/src/helpers/ErrorCodeParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/ErrorCodeParser.js -------------------------------------------------------------------------------- /www/view/src/helpers/EventGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/EventGenerator.js -------------------------------------------------------------------------------- /www/view/src/helpers/FilterGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/FilterGenerator.js -------------------------------------------------------------------------------- /www/view/src/helpers/LocaleSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/LocaleSelector.js -------------------------------------------------------------------------------- /www/view/src/helpers/NetworkHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/NetworkHelper.js -------------------------------------------------------------------------------- /www/view/src/helpers/ValidatorGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/ValidatorGenerator.js -------------------------------------------------------------------------------- /www/view/src/helpers/VaribleHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/VaribleHelper.js -------------------------------------------------------------------------------- /www/view/src/helpers/withScrollTrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/helpers/withScrollTrigger.js -------------------------------------------------------------------------------- /www/view/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/index.js -------------------------------------------------------------------------------- /www/view/src/lang/Lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/Lang.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/ActivityMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/ActivityMessage.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/ErrorMessage.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Label.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Menu.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Message.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Notification.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Phrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Phrase.js -------------------------------------------------------------------------------- /www/view/src/lang/en-us/Term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/en-us/Term.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/ActivityMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/ActivityMessage.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/ErrorMessage.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Label.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Menu.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Message.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Notification.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Phrase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Phrase.js -------------------------------------------------------------------------------- /www/view/src/lang/zh-cn/Term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/lang/zh-cn/Term.js -------------------------------------------------------------------------------- /www/view/src/maps/cn-all-sar-taiwan.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/maps/cn-all-sar-taiwan.geo.json -------------------------------------------------------------------------------- /www/view/src/maps/world-palestine-lowres.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/maps/world-palestine-lowres.geo.json -------------------------------------------------------------------------------- /www/view/src/reducers/DataStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/reducers/DataStore.js -------------------------------------------------------------------------------- /www/view/src/reducers/DrawerStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/reducers/DrawerStates.js -------------------------------------------------------------------------------- /www/view/src/reducers/NotificationStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/reducers/NotificationStates.js -------------------------------------------------------------------------------- /www/view/src/reducers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/reducers/main.js -------------------------------------------------------------------------------- /www/view/src/routes/BaseRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/routes/BaseRoutes.js -------------------------------------------------------------------------------- /www/view/src/routes/MainRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/src/routes/MainRoutes.js -------------------------------------------------------------------------------- /www/view/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/www/view/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PGYER/codefever/HEAD/yarn.lock --------------------------------------------------------------------------------