├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── Documentation │ ├── DatabaseScheme.mwb │ ├── WindowsGit.md │ └── version-control.sql ├── app │ ├── .htaccess │ ├── AppCache.php │ ├── AppKernel.php │ ├── Resources │ │ ├── FOSUserBundle │ │ │ └── views │ │ │ │ ├── ChangePassword │ │ │ │ ├── change_password.html.twig │ │ │ │ └── change_password_content.html.twig │ │ │ │ ├── Group │ │ │ │ ├── edit.html.twig │ │ │ │ ├── edit_content.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ ├── list_content.html.twig │ │ │ │ ├── new.html.twig │ │ │ │ ├── new_content.html.twig │ │ │ │ ├── show.html.twig │ │ │ │ └── show_content.html.twig │ │ │ │ ├── Profile │ │ │ │ ├── edit.html.twig │ │ │ │ ├── edit_content.html.twig │ │ │ │ ├── show.html.twig │ │ │ │ └── show_content.html.twig │ │ │ │ ├── Registration │ │ │ │ ├── checkEmail.html.twig │ │ │ │ ├── confirmed.html.twig │ │ │ │ ├── email.txt.twig │ │ │ │ ├── register.html.twig │ │ │ │ └── register_content.html.twig │ │ │ │ ├── Resetting │ │ │ │ ├── checkEmail.html.twig │ │ │ │ ├── email.txt.twig │ │ │ │ ├── passwordAlreadyRequested.html.twig │ │ │ │ ├── request.html.twig │ │ │ │ ├── request_content.html.twig │ │ │ │ ├── reset.html.twig │ │ │ │ └── reset_content.html.twig │ │ │ │ ├── Security │ │ │ │ └── login.html.twig │ │ │ │ ├── layout.html.old.twig │ │ │ │ └── layout.html.twig │ │ ├── HWIOAuthBundle │ │ │ └── views │ │ │ │ ├── Connect │ │ │ │ ├── connect_confirm.html.twig │ │ │ │ ├── connect_success.html.twig │ │ │ │ ├── login.html.twig │ │ │ │ ├── registration.html.twig │ │ │ │ └── registration_success.html.twig │ │ │ │ └── layout.html.twig │ │ ├── TwigBundle │ │ │ └── views │ │ │ │ ├── Exception │ │ │ │ ├── error.atom.twig │ │ │ │ ├── error.css.twig │ │ │ │ ├── error.html.twig │ │ │ │ ├── error.js.twig │ │ │ │ ├── error.json.twig │ │ │ │ ├── error.rdf.twig │ │ │ │ ├── error.txt.twig │ │ │ │ ├── error.xml.twig │ │ │ │ ├── exception.atom.twig │ │ │ │ ├── exception.css.twig │ │ │ │ ├── exception.html.twig │ │ │ │ ├── exception.js.twig │ │ │ │ ├── exception.json.twig │ │ │ │ ├── exception.rdf.twig │ │ │ │ ├── exception.txt.twig │ │ │ │ ├── exception.xml.twig │ │ │ │ ├── exception_full.html.twig │ │ │ │ ├── logs.html.twig │ │ │ │ ├── trace.html.twig │ │ │ │ ├── trace.txt.twig │ │ │ │ ├── traces.html.twig │ │ │ │ ├── traces.txt.twig │ │ │ │ ├── traces.xml.twig │ │ │ │ └── traces_text.html.twig │ │ │ │ ├── error.layout.html.twig │ │ │ │ └── layout.html.twig │ │ └── views │ │ │ └── base.html.twig │ ├── SymfonyRequirements.php │ ├── autoload.php │ ├── bootstrap.php.cache │ ├── cache │ │ └── .gitkeep │ ├── check.php │ ├── config │ │ ├── config.yml │ │ ├── config_dev.yml │ │ ├── config_prod.yml │ │ ├── config_test.yml │ │ ├── parameters.yml │ │ ├── parameters.yml.dist │ │ ├── parameters.yml.travis │ │ ├── routing.yml │ │ ├── routing_dev.yml │ │ ├── security.yml │ │ └── services.yml │ ├── console │ ├── logs │ │ ├── .gitkeep │ │ ├── dev.log │ │ └── test.log │ └── phpunit.xml.dist ├── bin │ ├── coveralls │ ├── doctrine │ ├── doctrine-dbal │ ├── doctrine.php │ ├── phpunit │ └── security-checker ├── composer.json ├── composer.lock ├── src │ ├── .htaccess │ └── VersionControl │ │ ├── DoctrineEncryptBundle │ │ ├── .gitignore │ │ ├── Configuration │ │ │ └── Encrypted.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── VersionControlDoctrineEncryptExtension.php │ │ ├── Encryptors │ │ │ ├── AES256Encryptor.php │ │ │ └── EncryptorInterface.php │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── orm-services.xml │ │ │ └── doc │ │ │ │ ├── configuration_reference.md │ │ │ │ ├── example_of_usage.md │ │ │ │ ├── index.md │ │ │ │ └── installation.md │ │ ├── Subscribers │ │ │ └── DoctrineEncryptSubscriber.php │ │ └── VersionControlDoctrineEncryptBundle.php │ │ ├── GitCommandBundle │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── VersionControlGitCommandExtension.php │ │ ├── Entity │ │ │ ├── Collections │ │ │ │ └── GitCommitFileCollection.php │ │ │ ├── FileInfo.php │ │ │ ├── FileInfoInterface.php │ │ │ ├── GitCommitFile.php │ │ │ ├── GitDiff.php │ │ │ ├── GitDiffLine.php │ │ │ ├── GitFile.php │ │ │ ├── GitLog.php │ │ │ ├── GitRemote.php │ │ │ ├── GitTag.php │ │ │ └── RemoteFileInfo.php │ │ ├── Event │ │ │ └── GitAlterFilesEvent.php │ │ ├── GitCommands │ │ │ ├── Builder │ │ │ │ └── GitBuilder.php │ │ │ ├── Command │ │ │ │ ├── AbstractGitCommand.php │ │ │ │ ├── GitBranchCommand.php │ │ │ │ ├── GitCommitCommand.php │ │ │ │ ├── GitDiffCommand.php │ │ │ │ ├── GitFilesCommand.php │ │ │ │ ├── GitInitCommand.php │ │ │ │ ├── GitLogCommand.php │ │ │ │ ├── GitStatusCommand.php │ │ │ │ ├── GitSyncCommand.php │ │ │ │ ├── GitTagCommand.php │ │ │ │ ├── GitUndoCommand.php │ │ │ │ ├── GitUserInterface.php │ │ │ │ └── InterfaceGitCommand.php │ │ │ ├── Exception │ │ │ │ ├── DeleteBranchException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── FileStatusException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidBranchNameException.php │ │ │ │ ├── InvalidDirectoryException.php │ │ │ │ ├── InvalidFilePathException.php │ │ │ │ ├── RunGitCommandException.php │ │ │ │ └── SshLoginException.php │ │ │ ├── GitCommand.php │ │ │ ├── GitDiffParser.php │ │ │ └── GitEnvironmentInterface.php │ │ ├── Logger │ │ │ └── GitCommandLogger.php │ │ ├── Profiler │ │ │ └── GitCommandCollector.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.yml │ │ │ └── views │ │ │ │ └── Profiler │ │ │ │ └── GitCommand.html.twig │ │ ├── Service │ │ │ ├── SecLibSftpProcess.php │ │ │ ├── SecLibSshProcess.php │ │ │ ├── SftpProcessInterface.php │ │ │ ├── SshProcess.php │ │ │ └── SshProcessInterface.php │ │ ├── Tests │ │ │ ├── GitCommandTestCase.php │ │ │ ├── GitCommands │ │ │ │ ├── Command │ │ │ │ │ ├── GitBranchCommandTest.php │ │ │ │ │ ├── GitCommitCommandTest.php │ │ │ │ │ ├── GitDiffCommandTest.php │ │ │ │ │ ├── GitFilesCommandTest.php │ │ │ │ │ └── GitTagCommandTest.php │ │ │ │ ├── GitDiffParserTest.php │ │ │ │ └── GitUserFixture.php │ │ │ └── SimpleGitEnvironment.php │ │ ├── Twig │ │ │ └── Extension │ │ │ │ └── IsIgnoredExtension.php │ │ └── VersionControlGitCommandBundle.php │ │ ├── GitControlBundle │ │ ├── Annotation │ │ │ ├── Driver │ │ │ │ └── ProjectAccessAnnotationDriver.php │ │ │ └── ProjectAccess.php │ │ ├── Command │ │ │ ├── CreateAdminCommand.php │ │ │ └── InstallerCommand.php │ │ ├── Controller │ │ │ ├── Admin │ │ │ │ └── IssueLabelAdminController.php │ │ │ ├── Base │ │ │ │ └── BaseProjectController.php │ │ │ ├── DefaultController.php │ │ │ ├── Issues │ │ │ │ ├── IssueController.php │ │ │ │ ├── IssueLabelController.php │ │ │ │ └── IssueMilestoneController.php │ │ │ ├── ProjectBranchController.php │ │ │ ├── ProjectCommitController.php │ │ │ ├── ProjectController.php │ │ │ ├── ProjectEnvironmentController.php │ │ │ ├── ProjectFilesController.php │ │ │ ├── ProjectHistoryController.php │ │ │ ├── ProjectIndexController.php │ │ │ ├── ProjectIssueIntegratorController.php │ │ │ ├── ProjectRemoteController.php │ │ │ ├── ProjectSyncController.php │ │ │ ├── ProjectTagController.php │ │ │ ├── UndoCommitController.php │ │ │ ├── UserManagementController.php │ │ │ └── UserProjectsController.php │ │ ├── DataFixtures │ │ │ └── ORM │ │ │ │ └── LoadProjectData.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── VersionControlGitControlExtension.php │ │ ├── Encryptors │ │ │ └── AES256Encryptor.php │ │ ├── Entity │ │ │ ├── Commit.php │ │ │ ├── Issue.php │ │ │ ├── IssueComment.php │ │ │ ├── IssueLabel.php │ │ │ ├── IssueMilestone.php │ │ │ ├── Issues │ │ │ │ ├── Issue.php │ │ │ │ ├── IssueCommentInteface.php │ │ │ │ ├── IssueInterface.php │ │ │ │ ├── IssueLabel.php │ │ │ │ ├── IssueLabelInterface.php │ │ │ │ ├── IssueMilestoneInterface.php │ │ │ │ └── IssueUserInterface.php │ │ │ ├── Project.php │ │ │ ├── ProjectEnvironment.php │ │ │ ├── ProjectEnvironmentFilePerm.php │ │ │ ├── ProjectIssueIntegrator.php │ │ │ ├── User │ │ │ │ └── User.php │ │ │ └── UserProjects.php │ │ ├── EventListener │ │ │ ├── DoctrineEventListener.php │ │ │ ├── GitAlterFilesEventListener.php │ │ │ ├── ProjectAccessControlList.php │ │ │ └── ProjectEnviromentBeforeListener.php │ │ ├── Form │ │ │ ├── CommitType.php │ │ │ ├── DataTransformer │ │ │ │ └── EntityToIdTransformer.php │ │ │ ├── EditUserProjectsType.php │ │ │ ├── EditUserType.php │ │ │ ├── Embbed │ │ │ │ ├── ProjectEnvironmentEmbbedType.php │ │ │ │ └── ProjectEnvironmentPositionType.php │ │ │ ├── Field │ │ │ │ └── EntityHiddenType.php │ │ │ ├── IssueCommentType.php │ │ │ ├── IssueEditType.php │ │ │ ├── IssueLabelType.php │ │ │ ├── IssueMilestoneType.php │ │ │ ├── IssueType.php │ │ │ ├── ProjectEnvironmentFilePermType.php │ │ │ ├── ProjectEnvironmentType.php │ │ │ ├── ProjectIssueIntegratorType.php │ │ │ ├── ProjectType.php │ │ │ ├── RegistrationType.php │ │ │ └── UserProjectsType.php │ │ ├── Installer │ │ │ ├── DatabaseInstall.php │ │ │ └── dbscript │ │ │ │ ├── data.sql │ │ │ │ ├── schema.sql │ │ │ │ └── testData.sql │ │ ├── Repository │ │ │ ├── IssueLabelRepository.php │ │ │ ├── IssueMilestoneRepository.php │ │ │ ├── IssueRepository.php │ │ │ ├── Issues │ │ │ │ ├── IssueLabelRepositoryInterface.php │ │ │ │ ├── IssueMilestoneRepositoryInterface.php │ │ │ │ ├── IssueRepositoryInterface.php │ │ │ │ └── IssueRepositoryManager.php │ │ │ ├── ProjectEnvironmentFilePermRepository.php │ │ │ ├── ProjectEnvironmentRepository.php │ │ │ ├── ProjectIssueIntegratorRepository.php │ │ │ ├── ProjectRepository.php │ │ │ └── UserProjectsRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── gitservices.yml │ │ │ │ └── services.yml │ │ │ ├── public │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── font-awesome │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── less │ │ │ │ │ │ ├── animated.less │ │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ │ ├── core.less │ │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ ├── icons.less │ │ │ │ │ │ ├── larger.less │ │ │ │ │ │ ├── list.less │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ ├── path.less │ │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ │ ├── spinning.less │ │ │ │ │ │ ├── stacked.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── _path.scss │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── font-awesome.scss │ │ │ │ ├── images │ │ │ │ │ ├── default_user_icon.jpg │ │ │ │ │ └── screenshot.png │ │ │ │ ├── js │ │ │ │ │ ├── ajaxifypage.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── jquery-ui │ │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── pick-a-color-1.2.3.min.js │ │ │ │ │ ├── select2 │ │ │ │ │ │ └── v3.5 │ │ │ │ │ │ │ ├── select2-bootstrap.css │ │ │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ │ ├── select2.min.js │ │ │ │ │ │ │ ├── select2.png │ │ │ │ │ │ │ └── select2x2.png │ │ │ │ │ └── tinycolor-min.js │ │ │ │ └── theme │ │ │ │ │ ├── css │ │ │ │ │ ├── AdminLTE.css │ │ │ │ │ ├── AdminLTE.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── pick-a-color-1.2.3.min.css │ │ │ │ │ └── skins │ │ │ │ │ │ ├── _all-skins.css │ │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ │ ├── skin-black-light.css │ │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ │ ├── skin-black.css │ │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ │ ├── skin-blue-light.css │ │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ │ ├── skin-blue.css │ │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ │ ├── skin-green-light.css │ │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ │ ├── skin-green.css │ │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ │ ├── skin-purple-light.css │ │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ │ ├── skin-purple.css │ │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ │ ├── skin-red-light.css │ │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ │ ├── skin-red.css │ │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ │ ├── skin-yellow-light.css │ │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ │ ├── skin-yellow.css │ │ │ │ │ │ └── skin-yellow.min.css │ │ │ │ │ ├── img │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── avatar04.png │ │ │ │ │ ├── avatar2.png │ │ │ │ │ ├── avatar3.png │ │ │ │ │ ├── avatar5.png │ │ │ │ │ ├── boxed-bg.jpg │ │ │ │ │ ├── boxed-bg.png │ │ │ │ │ ├── credit │ │ │ │ │ │ ├── american-express.png │ │ │ │ │ │ ├── cirrus.png │ │ │ │ │ │ ├── mastercard.png │ │ │ │ │ │ ├── mestro.png │ │ │ │ │ │ ├── paypal.png │ │ │ │ │ │ ├── paypal2.png │ │ │ │ │ │ └── visa.png │ │ │ │ │ ├── default-50x50.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── photo1.png │ │ │ │ │ ├── photo2.png │ │ │ │ │ ├── photo3.jpg │ │ │ │ │ ├── photo4.jpg │ │ │ │ │ ├── user1-128x128.jpg │ │ │ │ │ ├── user2-160x160.jpg │ │ │ │ │ ├── user3-128x128.jpg │ │ │ │ │ ├── user4-128x128.jpg │ │ │ │ │ ├── user5-128x128.jpg │ │ │ │ │ ├── user6-128x128.jpg │ │ │ │ │ ├── user7-128x128.jpg │ │ │ │ │ └── user8-128x128.jpg │ │ │ │ │ ├── js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── app.min.js │ │ │ │ │ ├── demo.js │ │ │ │ │ └── pages │ │ │ │ │ │ ├── dashboard.js │ │ │ │ │ │ └── dashboard2.js │ │ │ │ │ └── plugins │ │ │ │ │ ├── bootstrap-slider │ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ │ └── slider.css │ │ │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ │ │ ├── chartjs │ │ │ │ │ ├── Chart.js │ │ │ │ │ └── Chart.min.js │ │ │ │ │ ├── ckeditor │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── build-config.js │ │ │ │ │ ├── ckeditor.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── contents.css │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ │ ├── fakeobjects │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ │ └── default.js │ │ │ │ │ │ ├── scayt │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ │ ├── specialchar │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── table.js │ │ │ │ │ │ ├── tabletools │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ │ └── wsc │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ │ ├── tmp.html │ │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ ├── skins │ │ │ │ │ │ └── moono │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── styles.js │ │ │ │ │ ├── colorpicker │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── img │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ │ ├── datatables │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ │ ├── ColVis │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ │ ├── Responsive │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ │ ├── Scroller │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ │ └── TableTools │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ │ └── swf │ │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ │ ├── datepicker │ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ │ ├── datepicker3.css │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ │ │ ├── daterangepicker │ │ │ │ │ ├── daterangepicker-bs3.css │ │ │ │ │ ├── daterangepicker.js │ │ │ │ │ ├── moment.js │ │ │ │ │ └── moment.min.js │ │ │ │ │ ├── fastclick │ │ │ │ │ ├── fastclick.js │ │ │ │ │ └── fastclick.min.js │ │ │ │ │ ├── flot │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ │ ├── jquery.flot.image.js │ │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ │ ├── jquery.flot.js │ │ │ │ │ ├── jquery.flot.min.js │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ │ ├── jquery.flot.time.js │ │ │ │ │ └── jquery.flot.time.min.js │ │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ ├── fullcalendar.js │ │ │ │ │ ├── fullcalendar.min.css │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ │ ├── iCheck │ │ │ │ │ ├── all.css │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── flat.css │ │ │ │ │ │ ├── flat.png │ │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── futurico │ │ │ │ │ │ ├── futurico.css │ │ │ │ │ │ ├── futurico.png │ │ │ │ │ │ └── futurico@2x.png │ │ │ │ │ ├── icheck.js │ │ │ │ │ ├── icheck.min.js │ │ │ │ │ ├── line │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── line.css │ │ │ │ │ │ ├── line.png │ │ │ │ │ │ ├── line@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ └── yellow.css │ │ │ │ │ ├── minimal │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── minimal.css │ │ │ │ │ │ ├── minimal.png │ │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── polaris │ │ │ │ │ │ ├── polaris.css │ │ │ │ │ │ ├── polaris.png │ │ │ │ │ │ └── polaris@2x.png │ │ │ │ │ └── square │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── square.css │ │ │ │ │ │ ├── square.png │ │ │ │ │ │ ├── square@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── input-mask │ │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ │ ├── jquery.inputmask.js │ │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ │ └── phone-codes │ │ │ │ │ │ ├── phone-be.json │ │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── ionslider │ │ │ │ │ ├── img │ │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ │ │ ├── jQuery │ │ │ │ │ └── jQuery-2.1.4.min.js │ │ │ │ │ ├── jQueryUI │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ │ ├── jvectormap │ │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ │ │ ├── knob │ │ │ │ │ └── jquery.knob.js │ │ │ │ │ ├── loadmask │ │ │ │ │ ├── jquery.loadmask.spin-old.css │ │ │ │ │ ├── jquery.loadmask.spin-old.js │ │ │ │ │ ├── jquery.loadmask.spin.css │ │ │ │ │ └── jquery.loadmask.spin.js │ │ │ │ │ ├── morris │ │ │ │ │ ├── morris.css │ │ │ │ │ ├── morris.js │ │ │ │ │ └── morris.min.js │ │ │ │ │ ├── pace │ │ │ │ │ ├── pace.css │ │ │ │ │ ├── pace.js │ │ │ │ │ ├── pace.min.css │ │ │ │ │ └── pace.min.js │ │ │ │ │ ├── prism │ │ │ │ │ ├── prism.css │ │ │ │ │ └── prism.js │ │ │ │ │ ├── select2 │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.css │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ ├── select2.min.css │ │ │ │ │ └── select2.min.js │ │ │ │ │ ├── slimScroll │ │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ │ └── jquery.slimscroll.min.js │ │ │ │ │ ├── sparkline │ │ │ │ │ ├── jquery.sparkline.js │ │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ │ └── timepicker │ │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ │ └── bootstrap-timepicker.min.js │ │ │ ├── translations │ │ │ │ └── messages.en.xlf │ │ │ └── views │ │ │ │ ├── Admin │ │ │ │ ├── IssueLabel │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ └── new.html.twig │ │ │ │ └── sidemenu.html.twig │ │ │ │ ├── Default │ │ │ │ └── list.html.twig │ │ │ │ ├── Error │ │ │ │ └── request.html.twig │ │ │ │ ├── FormTheme │ │ │ │ ├── _editproject-prototype.html.twig │ │ │ │ └── _field-prototype.html.twig │ │ │ │ ├── Issues │ │ │ │ ├── Issue │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ ├── latest.html.twig │ │ │ │ │ ├── new.html.twig │ │ │ │ │ ├── show.html.twig │ │ │ │ │ └── showModal.html.twig │ │ │ │ ├── IssueLabel │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ ├── new.html.twig │ │ │ │ │ └── show.html.twig │ │ │ │ └── IssueMilestone │ │ │ │ │ ├── edit.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ ├── milestonesIssues.html.twig │ │ │ │ │ ├── new.html.twig │ │ │ │ │ └── show.html.twig │ │ │ │ ├── Partials │ │ │ │ ├── detachedHead.html.twig │ │ │ │ ├── gitStatus.html.twig │ │ │ │ ├── modifiySideMenu.html.twig │ │ │ │ ├── projectEnvironments.html.twig │ │ │ │ └── sidemenu.html.twig │ │ │ │ ├── Project │ │ │ │ ├── FormTheme │ │ │ │ │ └── edit-project-prototype.html.twig │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── new.html.twig │ │ │ │ ├── ProjectBranch │ │ │ │ ├── branches.html.twig │ │ │ │ └── remoteBranches.html.twig │ │ │ │ ├── ProjectCommit │ │ │ │ ├── fileDiff.html.twig │ │ │ │ ├── fixAddConflict.html.twig │ │ │ │ ├── fixConflict.html.twig │ │ │ │ ├── fixDeleteConflict.html.twig │ │ │ │ └── list.html.twig │ │ │ │ ├── ProjectEnvironment │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── new.html.twig │ │ │ │ ├── ProjectFiles │ │ │ │ ├── fileList.html.twig │ │ │ │ └── viewFile.html.twig │ │ │ │ ├── ProjectHistory │ │ │ │ ├── commitHistory.html.twig │ │ │ │ ├── fileDiff.html.twig │ │ │ │ └── list.html.twig │ │ │ │ ├── ProjectIndex │ │ │ │ └── index.html.twig │ │ │ │ ├── ProjectIssueIntegrator │ │ │ │ ├── edit.html.twig │ │ │ │ ├── index.html.twig │ │ │ │ └── new.html.twig │ │ │ │ ├── ProjectRemote │ │ │ │ ├── list.html.twig │ │ │ │ ├── new.html.twig │ │ │ │ └── rename.html.twig │ │ │ │ ├── ProjectSync │ │ │ │ ├── pull.html.twig │ │ │ │ └── push.html.twig │ │ │ │ ├── ProjectTag │ │ │ │ ├── pushTag.html.twig │ │ │ │ └── tags.html.twig │ │ │ │ ├── UserManagement │ │ │ │ ├── edit.html.twig │ │ │ │ ├── list.html.twig │ │ │ │ └── new.html.twig │ │ │ │ ├── UserProjects │ │ │ │ └── membersList.html.twig │ │ │ │ ├── admin.layout.html.twig │ │ │ │ ├── admincontent.layout.html.twig │ │ │ │ └── layout.html.twig │ │ ├── Security │ │ │ ├── Authentication │ │ │ │ └── FOSVersionUserProvider.php │ │ │ └── GitUserFactory.php │ │ ├── Tests │ │ │ └── Controller │ │ │ │ ├── BaseControllerTestCase.php │ │ │ │ ├── DefaultControllerTest.php │ │ │ │ ├── IssueControllerTest.php │ │ │ │ ├── IssueLabelControllerTest.php │ │ │ │ ├── IssueMilestoneControllerTest.php │ │ │ │ ├── ProjectControllerTest.php │ │ │ │ ├── ProjectEnvironmentControllerTest.php │ │ │ │ ├── ProjectFilesControllerTest.php │ │ │ │ └── UserProjectsControllerTest.php │ │ ├── Twig │ │ │ └── Extension │ │ │ │ ├── CommitHashLinkExtension.php │ │ │ │ ├── IssueLinkExtension.php │ │ │ │ ├── IssueNumberLinkExtension.php │ │ │ │ ├── PaginationExtension.php │ │ │ │ ├── ParentDirectoryExtension.php │ │ │ │ ├── ProjectEnvironmnentStorageExtension.php │ │ │ │ └── TextColorExtension.php │ │ ├── Utility │ │ │ └── ProjectEnvironmentStorage.php │ │ ├── Validator │ │ │ └── Constraints │ │ │ │ ├── GitFolderExists.php │ │ │ │ ├── GitFolderExistsValidator.php │ │ │ │ ├── GitFolderNotExists.php │ │ │ │ ├── GitFolderNotExistsValidator.php │ │ │ │ ├── SshDetails.php │ │ │ │ ├── SshDetailsValidator.php │ │ │ │ ├── StatusHash.php │ │ │ │ └── StatusHashValidator.php │ │ └── VersionControlGitControlBundle.php │ │ ├── GithubIssueBundle │ │ ├── Controller │ │ │ └── ProjectIssueIntegratorGithubController.php │ │ ├── DataTransformer │ │ │ ├── DataTransformerInterface.php │ │ │ ├── IssueCommentToEntityTransformer.php │ │ │ ├── IssueLabelToEntityTransformer.php │ │ │ ├── IssueMilestoneToEntityTransformer.php │ │ │ ├── IssueToEntityTransformer.php │ │ │ └── UserToEntityTransformer.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── VersionControlGithubIssueExtension.php │ │ ├── Entity │ │ │ ├── Issues │ │ │ │ ├── Issue.php │ │ │ │ ├── IssueComment.php │ │ │ │ ├── IssueLabel.php │ │ │ │ └── IssueMilestone.php │ │ │ ├── ProjectIssueIntegratorGithub.php │ │ │ └── User.php │ │ ├── Form │ │ │ ├── IssueCommentType.php │ │ │ ├── IssueEditType.php │ │ │ ├── IssueLabelType.php │ │ │ ├── IssueMilestoneType.php │ │ │ ├── IssueType.php │ │ │ └── ProjectIssueIntegratorGithubType.php │ │ ├── Repository │ │ │ ├── GithubBase.php │ │ │ ├── IssueLabelRepository.php │ │ │ ├── IssueMilestoneRepository.php │ │ │ └── IssueRepository.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── routing.yml │ │ │ │ └── services.yml │ │ │ └── views │ │ │ │ └── ProjectIssueIntegratorGithub │ │ │ │ ├── edit.html.twig │ │ │ │ └── new.html.twig │ │ └── VersionControlGithubIssueBundle.php │ │ └── GitlabIssueBundle │ │ ├── Controller │ │ └── ProjectIssueIntegratorGitlabController.php │ │ ├── DataTransformer │ │ ├── DataTransformerInterface.php │ │ ├── GitlabProjectToEntityTransformer.php │ │ ├── IssueCommentToEntityTransformer.php │ │ ├── IssueLabelToEntityTransformer.php │ │ ├── IssueMilestoneToEntityTransformer.php │ │ ├── IssueToEntityTransformer.php │ │ └── UserToEntityTransformer.php │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── VersionControlGitlabIssueExtension.php │ │ ├── Entity │ │ ├── GitlabProject.php │ │ ├── Issues │ │ │ ├── Issue.php │ │ │ ├── IssueComment.php │ │ │ ├── IssueLabel.php │ │ │ └── IssueMilestone.php │ │ ├── ProjectIssueIntegratorGitlab.php │ │ └── User.php │ │ ├── Form │ │ ├── DataTransformer │ │ │ └── IdToGitlabProjectTransformer.php │ │ ├── EventListener │ │ │ └── AddProjectNameFieldSubscriber.php │ │ ├── Field │ │ │ └── GitlabProjectType.php │ │ ├── IssueCommentType.php │ │ ├── IssueEditType.php │ │ ├── IssueLabelType.php │ │ ├── IssueMilestoneType.php │ │ ├── IssueType.php │ │ ├── ProjectIssueIntegratorGitlabNewType.php │ │ └── ProjectIssueIntegratorGitlabType.php │ │ ├── Repository │ │ ├── GitlabBase.php │ │ ├── IssueLabelRepository.php │ │ ├── IssueMilestoneRepository.php │ │ └── IssueRepository.php │ │ ├── Resources │ │ ├── config │ │ │ ├── routing.yml │ │ │ └── services.yml │ │ ├── doc │ │ │ └── index.rst │ │ ├── translations │ │ │ └── messages.fr.xlf │ │ └── views │ │ │ └── ProjectIssueIntegratorGitlab │ │ │ ├── edit.html.twig │ │ │ └── new.html.twig │ │ └── VersionControlGitlabIssueBundle.php ├── vendor │ ├── psr │ │ ├── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ └── LoggerInterfaceTest.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── stof │ │ └── doctrine-extensions-bundle │ │ │ ├── CHANGELOG.md │ │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ └── ValidateExtensionConfigurationPass.php │ │ │ ├── Configuration.php │ │ │ └── StofDoctrineExtensionsExtension.php │ │ │ ├── EventListener │ │ │ ├── BlameListener.php │ │ │ ├── LocaleListener.php │ │ │ └── LoggerListener.php │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── blameable.xml │ │ │ │ ├── loggable.xml │ │ │ │ ├── reference_integrity.xml │ │ │ │ ├── sluggable.xml │ │ │ │ ├── softdeleteable.xml │ │ │ │ ├── sortable.xml │ │ │ │ ├── timestampable.xml │ │ │ │ ├── translatable.xml │ │ │ │ ├── tree.xml │ │ │ │ └── uploadable.xml │ │ │ └── doc │ │ │ │ └── index.rst │ │ │ ├── StofDoctrineExtensionsBundle.php │ │ │ ├── Upgrade_to_1_1.md │ │ │ ├── Uploadable │ │ │ ├── MimeTypeGuesserAdapter.php │ │ │ ├── UploadableManager.php │ │ │ ├── UploadedFileInfo.php │ │ │ └── ValidatorConfigurator.php │ │ │ └── composer.json │ └── twig │ │ └── twig │ │ ├── doc │ │ ├── advanced.rst │ │ ├── api.rst │ │ ├── coding_standards.rst │ │ ├── deprecated.rst │ │ ├── filters │ │ │ ├── abs.rst │ │ │ ├── batch.rst │ │ │ ├── capitalize.rst │ │ │ ├── convert_encoding.rst │ │ │ ├── date.rst │ │ │ ├── date_modify.rst │ │ │ ├── default.rst │ │ │ ├── escape.rst │ │ │ ├── first.rst │ │ │ ├── format.rst │ │ │ ├── index.rst │ │ │ ├── join.rst │ │ │ ├── json_encode.rst │ │ │ ├── keys.rst │ │ │ ├── last.rst │ │ │ ├── length.rst │ │ │ ├── lower.rst │ │ │ ├── merge.rst │ │ │ ├── nl2br.rst │ │ │ ├── number_format.rst │ │ │ ├── raw.rst │ │ │ ├── replace.rst │ │ │ ├── reverse.rst │ │ │ ├── round.rst │ │ │ ├── slice.rst │ │ │ ├── sort.rst │ │ │ ├── split.rst │ │ │ ├── striptags.rst │ │ │ ├── title.rst │ │ │ ├── trim.rst │ │ │ ├── upper.rst │ │ │ └── url_encode.rst │ │ ├── functions │ │ │ ├── attribute.rst │ │ │ ├── block.rst │ │ │ ├── constant.rst │ │ │ ├── cycle.rst │ │ │ ├── date.rst │ │ │ ├── dump.rst │ │ │ ├── include.rst │ │ │ ├── index.rst │ │ │ ├── max.rst │ │ │ ├── min.rst │ │ │ ├── parent.rst │ │ │ ├── random.rst │ │ │ ├── range.rst │ │ │ ├── source.rst │ │ │ └── template_from_string.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── internals.rst │ │ ├── intro.rst │ │ ├── recipes.rst │ │ ├── tags │ │ │ ├── autoescape.rst │ │ │ ├── block.rst │ │ │ ├── do.rst │ │ │ ├── embed.rst │ │ │ ├── extends.rst │ │ │ ├── filter.rst │ │ │ ├── flush.rst │ │ │ ├── for.rst │ │ │ ├── from.rst │ │ │ ├── if.rst │ │ │ ├── import.rst │ │ │ ├── include.rst │ │ │ ├── index.rst │ │ │ ├── macro.rst │ │ │ ├── sandbox.rst │ │ │ ├── set.rst │ │ │ ├── spaceless.rst │ │ │ ├── use.rst │ │ │ ├── verbatim.rst │ │ │ └── with.rst │ │ ├── templates.rst │ │ └── tests │ │ │ ├── constant.rst │ │ │ ├── defined.rst │ │ │ ├── divisibleby.rst │ │ │ ├── empty.rst │ │ │ ├── even.rst │ │ │ ├── index.rst │ │ │ ├── iterable.rst │ │ │ ├── null.rst │ │ │ ├── odd.rst │ │ │ └── sameas.rst │ │ └── lib │ │ └── Twig │ │ └── Node │ │ ├── Block.php │ │ ├── Body.php │ │ ├── Do.php │ │ ├── Embed.php │ │ ├── Expression │ │ └── Test │ │ │ ├── Constant.php │ │ │ ├── Defined.php │ │ │ ├── Even.php │ │ │ ├── Null.php │ │ │ ├── Odd.php │ │ │ └── Sameas.php │ │ ├── Flush.php │ │ ├── For.php │ │ ├── If.php │ │ ├── Macro.php │ │ ├── Print.php │ │ ├── Set.php │ │ ├── Text.php │ │ └── With.php └── web │ ├── .htaccess │ ├── app.php │ ├── apple-touch-icon.png │ ├── config.php │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── docker-compose.yml └── docker ├── nginx ├── dev │ ├── Dockerfile │ └── default.conf └── prod │ └── default.conf ├── php ├── dev │ ├── Dockerfile.php.dev │ └── development.ini └── prod │ └── production.ini ├── redis └── Dockerfile └── ssh-test └── Dockerfile /.gitattributes: -------------------------------------------------------------------------------- 1 | # Make GitHub ignore vendor libraries while computing language stats. 2 | # See https://github.com/github/linguist#overrides. 3 | 4 | /app/src/VersionControl/GitControlBundle/Resources/public/* linguist-vendored=true 5 | /app/src/VersionControl/GitCommandBundle/Resources/public/* linguist-vendored=true 6 | /app/src/VersionControl/GithubIssueBundle/Resources/public/* linguist-vendored=true 7 | /app/src/VersionControl/GitlabIssueBundle/Resources/public/* linguist-vendored=true 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /app/web/bundles/ 2 | /app/app/bootstrap.php.cache 3 | /app/app/cache/* 4 | /app/app/config/parameters.yml 5 | /app/app/logs/* 6 | !app/app/cache/.gitkeep 7 | !app/app/logs/.gitkeep 8 | /app/build/ 9 | /app/vendor/ 10 | /app/bin/ 11 | /app/composer.phar 12 | /app/Documentation/*.mwb.bak 13 | /nbproject/ 14 | .idea 15 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | services: 4 | - mysql 5 | 6 | php: 7 | - 7.2 8 | 9 | before_script: 10 | - cp app/app/config/parameters.yml.travis app/app/config/parameters.yml 11 | - cd app 12 | - composer install -n 13 | - git --version 14 | - git config --global user.email "test@travis-ci.org" 15 | - git config --global user.name "Travis" 16 | - git --version 17 | - php app/console doctrine:database:create --env=test 18 | - php app/console version:install --env=test 19 | - php app/console doctrine:fixtures:load --no-interaction --env=test 20 | 21 | script: bin/phpunit --coverage-clover build/logs/clover.xml -c app 22 | 23 | after_script: 24 | - bin/coveralls -v 25 | -------------------------------------------------------------------------------- /app/Documentation/DatabaseScheme.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/Documentation/DatabaseScheme.mwb -------------------------------------------------------------------------------- /app/app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Order deny,allow 6 | Deny from all 7 | 8 | -------------------------------------------------------------------------------- /app/app/AppCache.php: -------------------------------------------------------------------------------- 1 | 5 | 8 |
9 | 10 |
11 | 12 |
13 | {% include "FOSUserBundle:ChangePassword:change_password_content.html.twig" %} 14 |
15 | 16 | 17 | {% endblock fos_user_content %} 18 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/ChangePassword/change_password_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 | {{ form_widget(form) }} 5 |
6 | 7 |
8 |
9 |
10 |
11 |
12 | Cancel 13 |
14 |
15 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/edit.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Group:edit_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/edit_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 | {{ form_widget(form) }} 5 |
6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/list.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Group:list_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/list_content.html.twig: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/new.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Group:new_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/new_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 | {{ form_widget(form) }} 5 |
6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/show.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Group:show_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Group/show_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 |

{{ 'group.show.name'|trans }}: {{ group.getName() }}

5 |
6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Profile/edit.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 |
5 | 8 |
9 | 10 |
11 | 12 |
13 | {% include "FOSUserBundle:Profile:edit_content.html.twig" %} 14 |
15 |
16 | {% endblock fos_user_content %} 17 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Profile/edit_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 | {{ form_widget(form) }} 5 |
6 | 7 |
8 |
9 | 10 |
11 |
12 |
13 | Cancel 14 |
15 |
16 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Profile/show_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 |

{{ 'profile.show.username'|trans }}: {{ user.username }}

5 |

{{ 'profile.show.email'|trans }}: {{ user.email }}

6 |
7 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Registration/checkEmail.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% trans_default_domain 'FOSUserBundle' %} 4 | 5 | {% block fos_user_content %} 6 |

{{ 'registration.check_email'|trans({'%email%': user.email}) }}

7 | {% endblock fos_user_content %} 8 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Registration/confirmed.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% trans_default_domain 'FOSUserBundle' %} 4 | 5 | {% block fos_user_content %} 6 |

{{ 'registration.confirmed'|trans({'%username%': user.username}) }}

7 | {% if app.session is not empty %} 8 | {% set targetUrl = app.session.get('_security.' ~ app.security.token.providerKey ~ '.target_path') %} 9 | 10 | {% if targetUrl is not empty %}

{{ 'registration.back'|trans }}

{% endif %} 11 | {% endif %} 12 | {% endblock fos_user_content %} 13 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Registration/email.txt.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | {% block subject %} 3 | {% autoescape false %} 4 | {{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }} 5 | {% endautoescape %} 6 | {% endblock %} 7 | {% block body_text %} 8 | {% autoescape false %} 9 | {{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }} 10 | {% endautoescape %} 11 | {% endblock %} 12 | {% block body_html %}{% endblock %} 13 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Registration/register.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Registration:register_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/checkEmail.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% trans_default_domain 'FOSUserBundle' %} 4 | 5 | {% block fos_user_content %} 6 |

7 | {{ 'resetting.check_email'|trans({'%email%': email}) }} 8 |

9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/email.txt.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | {% block subject %} 3 | {% autoescape false %} 4 | {{ 'resetting.email.subject'|trans }} 5 | {% endautoescape %} 6 | {% endblock %} 7 | {% block body_text %} 8 | {% autoescape false %} 9 | {{ 'resetting.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }} 10 | {% endautoescape %} 11 | {% endblock %} 12 | {% block body_html %}{% endblock %} 13 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/passwordAlreadyRequested.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% trans_default_domain 'FOSUserBundle' %} 4 | 5 | {% block fos_user_content %} 6 |

{{ 'resetting.password_already_requested'|trans }}

7 | {% endblock fos_user_content %} 8 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/request.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Resetting:request_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/request_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 |
5 | {% if invalid_username is defined %} 6 |

{{ 'resetting.request.invalid_username'|trans({'%username%': invalid_username}) }}

7 | {% endif %} 8 | 9 | 10 |
11 |
12 | 13 |
14 |
15 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/reset.html.twig: -------------------------------------------------------------------------------- 1 | {% extends "FOSUserBundle::layout.html.twig" %} 2 | 3 | {% block fos_user_content %} 4 | {% include "FOSUserBundle:Resetting:reset_content.html.twig" %} 5 | {% endblock fos_user_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/FOSUserBundle/views/Resetting/reset_content.html.twig: -------------------------------------------------------------------------------- 1 | {% trans_default_domain 'FOSUserBundle' %} 2 | 3 |
4 | {{ form_widget(form) }} 5 |
6 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /app/app/Resources/HWIOAuthBundle/views/Connect/connect_success.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'HWIOAuthBundle::layout.html.twig' %} 2 | 3 | {% block hwi_oauth_content %} 4 |

{{ 'header.success' | trans({'%name%': userInformation.realName}, 'HWIOAuthBundle') }}

5 | {% endblock hwi_oauth_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/HWIOAuthBundle/views/Connect/login.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'HWIOAuthBundle::layout.html.twig' %} 2 | 3 | {% block hwi_oauth_content %} 4 | {% if error %} 5 | {{ error }} 6 | {% endif %} 7 | {% for owner in hwi_oauth_resource_owners() %} 8 | {{ owner | trans({}, 'HWIOAuthBundle') }}
9 | {% endfor %} 10 | {% endblock hwi_oauth_content %} 11 | -------------------------------------------------------------------------------- /app/app/Resources/HWIOAuthBundle/views/Connect/registration_success.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'HWIOAuthBundle::layout.html.twig' %} 2 | 3 | {% block hwi_oauth_content %} 4 |

{{ 'header.registration_success' | trans({'%username%': app.user.username}, 'HWIOAuthBundle') }}

5 | {% endblock hwi_oauth_content %} 6 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.atom.twig: -------------------------------------------------------------------------------- 1 | {% include '@Twig/Exception/error.xml.twig' %} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.css.twig: -------------------------------------------------------------------------------- 1 | /* 2 | {{ status_code }} {{ status_text }} 3 | 4 | */ 5 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.js.twig: -------------------------------------------------------------------------------- 1 | /* 2 | {{ status_code }} {{ status_text }} 3 | 4 | */ 5 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.json.twig: -------------------------------------------------------------------------------- 1 | {{ { 'error': { 'code': status_code, 'message': status_text } }|json_encode|raw }} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.rdf.twig: -------------------------------------------------------------------------------- 1 | {% include '@Twig/Exception/error.xml.twig' %} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.txt.twig: -------------------------------------------------------------------------------- 1 | Oops! An Error Occurred 2 | ======================= 3 | 4 | The server returned a "{{ status_code }} {{ status_text }}". 5 | 6 | Something is broken. Please let us know what you were doing when this error occurred. 7 | We will fix it as soon as possible. Sorry for any inconvenience caused. 8 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/error.xml.twig: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.atom.twig: -------------------------------------------------------------------------------- 1 | {% include '@Twig/Exception/exception.xml.twig' with { 'exception': exception } %} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.css.twig: -------------------------------------------------------------------------------- 1 | /* 2 | {% include '@Twig/Exception/exception.txt.twig' with { 'exception': exception } %} 3 | */ 4 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.js.twig: -------------------------------------------------------------------------------- 1 | /* 2 | {% include '@Twig/Exception/exception.txt.twig' with { 'exception': exception } %} 3 | */ 4 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.json.twig: -------------------------------------------------------------------------------- 1 | {{ { 'error': { 'code': status_code, 'message': status_text, 'exception': exception.toarray } }|json_encode|raw }} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.rdf.twig: -------------------------------------------------------------------------------- 1 | {% include '@Twig/Exception/exception.xml.twig' with { 'exception': exception } %} 2 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.txt.twig: -------------------------------------------------------------------------------- 1 | [exception] {{ status_code ~ ' | ' ~ status_text ~ ' | ' ~ exception.class }} 2 | [message] {{ exception.message }} 3 | {% for i, e in exception.toarray %} 4 | [{{ i + 1 }}] {{ e.class }}: {{ e.message }} 5 | {% include '@Twig/Exception/traces.txt.twig' with { 'exception': e } only %} 6 | 7 | {% endfor %} 8 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception.xml.twig: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% for e in exception.toarray %} 5 | 6 | {% include '@Twig/Exception/traces.xml.twig' with { 'exception': e } only %} 7 | 8 | {% endfor %} 9 | 10 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/exception_full.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@Twig/layout.html.twig' %} 2 | 3 | {% block head %} 4 | 5 | {% endblock %} 6 | 7 | {% block title %} 8 | {{ exception.message }} ({{ status_code }} {{ status_text }}) 9 | {% endblock %} 10 | 11 | {% block body %} 12 | {% include '@Twig/Exception/exception.html.twig' %} 13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/logs.html.twig: -------------------------------------------------------------------------------- 1 |
    2 | {% for log in logs %} 3 | = 400 %} class="error"{% elseif log.priority >= 300 %} class="warning"{% endif %}> 4 | {{ log.priorityName }} - {{ log.message }} 5 | 6 | {% endfor %} 7 |
8 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/trace.txt.twig: -------------------------------------------------------------------------------- 1 | {% if trace.function %} 2 | at {{ trace.class ~ trace.type ~ trace.function }}({{ trace.args|format_args_as_text }}) 3 | {% else %} 4 | at n/a 5 | {% endif %} 6 | {% if trace.file is defined and trace.line is defined %} 7 | in {{ trace.file }} line {{ trace.line }} 8 | {% endif %} 9 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/traces.txt.twig: -------------------------------------------------------------------------------- 1 | {% if exception.trace|length %} 2 | {% for trace in exception.trace %} 3 | {% include '@Twig/Exception/trace.txt.twig' with { 'trace': trace } only %} 4 | 5 | {% endfor %} 6 | {% endif %} 7 | -------------------------------------------------------------------------------- /app/app/Resources/TwigBundle/views/Exception/traces.xml.twig: -------------------------------------------------------------------------------- 1 | 2 | {% for trace in exception.trace %} 3 | 4 | {% include '@Twig/Exception/trace.txt.twig' with { 'trace': trace } only %} 5 | 6 | 7 | {% endfor %} 8 | 9 | -------------------------------------------------------------------------------- /app/app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {% block title %}Welcome!{% endblock %} 6 | {% block stylesheets %}{% endblock %} 7 | 8 | 9 | 10 | {% block body %}{% endblock %} 11 | {% block javascripts %}{% endblock %} 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/app/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Order deny,allow 6 | Deny from all 7 | 8 | -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/Configuration/Encrypted.php: -------------------------------------------------------------------------------- 1 | 9 | * @Annotation 10 | */ 11 | class Encrypted 12 | { 13 | // some parameters will be added 14 | } 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/Encryptors/EncryptorInterface.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface EncryptorInterface 11 | { 12 | /** 13 | * Must accept secret key for encryption. 14 | */ 15 | public function __construct($secretKey); 16 | 17 | /** 18 | * Must accept data and return encrypted data. 19 | */ 20 | public function encrypt($data); 21 | 22 | /** 23 | * Must accept data and return decrypted data. 24 | */ 25 | public function decrypt($data); 26 | } 27 | -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/README.md: -------------------------------------------------------------------------------- 1 | #DoctrineEncryptBundle 2 | 3 | Bundle allows to create doctrine entities with fields that will be protected with 4 | help of some encryption algorithm in database and it will be clearly for developer, because bundle is uses doctrine life cycle events 5 | 6 | ###Documentation 7 | 8 | The bulk of the documentation is stored in the `Resources/doc/index.md` file in this bundle 9 | 10 | [Read the Documentation](https://github.com/vmelnik-ukraine/DoctrineEncryptBundle/blob/master/Resources/doc/index.md) 11 | 12 | ###License 13 | 14 | This bundle is under the MIT license. See the complete license in the bundle 15 | 16 | ###Versions 17 | 18 | I'm using Semantic Versioning like described [here](http://semver.org) -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/Resources/doc/index.md: -------------------------------------------------------------------------------- 1 | #DoctrineEncryptBundle 2 | 3 | This bundle is responsible for encryption/decryption of the data in DB. All encryption/decryption work 4 | on PHP side 5 | 6 | The following documents are available: 7 | 8 | * [Configuration reference](https://github.com/vmelnik-ukraine/DoctrineEncryptBundle/blob/master/Resources/doc/configuration_reference.md) 9 | * [Installation](https://github.com/vmelnik-ukraine/DoctrineEncryptBundle/blob/master/Resources/doc/installation.md) 10 | * [Example of usage](https://github.com/vmelnik-ukraine/DoctrineEncryptBundle/blob/master/Resources/doc/example_of_usage.md) 11 | -------------------------------------------------------------------------------- /app/src/VersionControl/DoctrineEncryptBundle/VersionControlDoctrineEncryptBundle.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | declare(strict_types=1); 12 | 13 | namespace VersionControl\GitCommandBundle\GitCommands\Command; 14 | 15 | class GitBuilder 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Command/GitUserInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Command; 13 | 14 | /** 15 | * Git Command interface. 16 | * 17 | * @author Paul Schweppe 18 | */ 19 | interface InterfaceGitCommand 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/DeleteBranchException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidArgumentException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class DeleteBranchException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | interface ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/FileStatusException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidDirectoryException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class FileStatusException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | /** 15 | * InvalidArgumentException. 16 | * 17 | * @author Paul Schweppe 18 | */ 19 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 20 | { 21 | } 22 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/InvalidBranchNameException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidArgumentException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class InvalidBranchNameException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/InvalidDirectoryException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidDirectoryException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class InvalidDirectoryException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/InvalidFilePathException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidDirectoryException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class InvalidFilePathException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/RunGitCommandException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidArgumentException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class RunGitCommandException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/GitCommands/Exception/SshLoginException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace VersionControl\GitCommandBundle\GitCommands\Exception; 13 | 14 | use Exception; 15 | 16 | /** 17 | * InvalidArgumentException. 18 | * 19 | * @author Paul Schweppe 20 | */ 21 | class SshLoginException extends Exception implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitCommandBundle/Tests/GitCommands/GitUserFixture.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitCommandBundle; 12 | 13 | use Symfony\Component\HttpKernel\Bundle\Bundle; 14 | 15 | class VersionControlGitCommandBundle extends Bundle 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Annotation/ProjectAccess.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle\Annotation; 12 | 13 | /** 14 | * @Annotation 15 | */ 16 | class ProjectAccess 17 | { 18 | public $grantType; 19 | } 20 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Entity/Issues/IssueUserInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle\Entity\Issues; 12 | 13 | /* 14 | * To change this license header, choose License Headers in Project Properties. 15 | * To change this template file, choose Tools | Templates 16 | * and open the template in the editor. 17 | */ 18 | interface IssueUserInterface 19 | { 20 | public function getName(); 21 | } 22 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Installer/dbscript/data.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Dumping data for table issue_label 3 | -- 4 | 5 | INSERT INTO issue_label (id, title, hex_color, all_projects, project_id) VALUES 6 | (1, 'New Feature', '4171f6', 1, NULL), 7 | (2, 'Bug', 'ff0000', 1, NULL), 8 | (3, 'Enhancement', 'd900ff', 1, NULL), 9 | (4, 'Maintenance', 'ff7070', 1, NULL), 10 | (5, 'Dublicate', 'c9c9c9', 1, NULL), 11 | (6, 'Help wanted', '008000', 1, NULL), 12 | (7, 'Invalid', 'b0b0b0', 1, NULL), 13 | (8, 'Question', 'bf4051', 1, NULL), 14 | (9, 'Wontfix', 'ff6600', 1, NULL); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Installer/dbscript/testData.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Dumping data for table issue_label 3 | -- 4 | 5 | INSERT INTO issue_label (id, title, hex_color, all_projects, project_id) VALUES 6 | (1, 'New Feature', '4171f6', 1, NULL), 7 | (2, 'Bug', 'ff0000', 1, NULL), 8 | (3, 'Enhancement', 'd900ff', 1, NULL), 9 | (4, 'Maintenance', 'ff7070', 1, NULL), 10 | (5, 'Dublicate', 'c9c9c9', 1, NULL), 11 | (6, 'Help wanted', '008000', 1, NULL), 12 | (7, 'Invalid', 'b0b0b0', 1, NULL), 13 | (8, 'Question', 'bf4051', 1, NULL), 14 | (9, 'Wontfix', 'ff6600', 1, NULL); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Repository/ProjectEnvironmentFilePermRepository.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle\Repository; 12 | 13 | use Doctrine\ORM\EntityRepository; 14 | 15 | class ProjectEnvironmentFilePermRepository extends EntityRepository 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Repository/ProjectEnvironmentRepository.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle\Repository; 12 | 13 | use Doctrine\ORM\EntityRepository; 14 | 15 | class ProjectEnvironmentRepository extends EntityRepository 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Repository/ProjectIssueIntegratorRepository.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle\Repository; 12 | 13 | use Doctrine\ORM\EntityRepository; 14 | 15 | class ProjectIssueIntegratorRepository extends EntityRepository 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/images/default_user_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/images/default_user_icon.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/images/screenshot.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2-spinner.gif -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/js/select2/v3.5/select2x2.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar04.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar2.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar3.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/avatar5.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/boxed-bg.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/boxed-bg.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/american-express.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/cirrus.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/mastercard.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/mestro.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/paypal.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/paypal2.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/credit/visa.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/default-50x50.gif -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/icons.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo1.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo2.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo3.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/photo4.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user1-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user2-160x160.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user3-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user4-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user5-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user6-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user7-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/img/user8-128x128.jpg -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/loadmask/jquery.loadmask.spin-old.css: -------------------------------------------------------------------------------- 1 | .loadmask { 2 | z-index: 100; 3 | position: absolute; 4 | top:0; 5 | left:0; 6 | width: 100%; 7 | height: 100%; 8 | zoom: 1; 9 | background:#fff; 10 | } 11 | 12 | .loadmask-msg { 13 | z-index: 20001; 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | line-height: 1; /* this enables us to center the label text relative to the spinner */ 18 | } 19 | 20 | .masked { 21 | overflow: hidden !important; 22 | } 23 | .masked-relative { 24 | position: relative !important; 25 | } 26 | .masked-hidden { 27 | visibility: hidden !important; 28 | } -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/loadmask/jquery.loadmask.spin.css: -------------------------------------------------------------------------------- 1 | .loadmask { 2 | z-index: 20000; 3 | position: absolute; 4 | top:0; 5 | left:0; 6 | width: 100%; 7 | height: 100%; 8 | zoom: 1; 9 | background:#fff; 10 | } 11 | 12 | .loadmask-msg { 13 | z-index: 20001; 14 | position: fixed; 15 | top: 50vh; 16 | left: calc(50% - 38px); 17 | line-height: 1; /* this enables us to center the label text relative to the spinner */ 18 | } 19 | 20 | .masked { 21 | overflow: hidden !important; 22 | } 23 | .masked-relative { 24 | position: relative !important; 25 | } 26 | .masked-hidden { 27 | visibility: hidden !important; 28 | } -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/public/theme/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/views/Admin/sidemenu.html.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Resources/views/Partials/gitStatus.html.twig: -------------------------------------------------------------------------------- 1 | {% if(status == 'M') %} 2 | {{status}} 3 | {% elseif(status == 'A') %} 4 | {{status}} 5 | {% elseif(status == 'U') %} 6 | {{status}} 7 | {% elseif(status == 'D') %} 8 | {{status}} 9 | {% elseif(status == 'C') %} 10 | {{status}} 11 | {% elseif(status == '?') %} 12 | {{status}} 13 | {% elseif(status == '!') %} 14 | {{status}} 15 | {% else %} 16 | {{status}} 17 | {% endif %} -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/Tests/Controller/DefaultControllerTest.php: -------------------------------------------------------------------------------- 1 | createAuthorizedClient(); 10 | 11 | $crawler = $this->client->request('GET', '/'); 12 | 13 | $this->assertTrue($crawler->filter('html:contains("Your Git Projects")')->count() > 0); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitControlBundle/VersionControlGitControlBundle.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitControlBundle; 12 | 13 | use Symfony\Component\HttpKernel\Bundle\Bundle; 14 | 15 | class VersionControlGitControlBundle extends Bundle 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GithubIssueBundle/DataTransformer/DataTransformerInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GithubIssueBundle\DataTransformer; 12 | 13 | interface DataTransformerInterface 14 | { 15 | public function transform($array); 16 | 17 | public function reverseTransform($entiy); 18 | } 19 | -------------------------------------------------------------------------------- /app/src/VersionControl/GithubIssueBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GithubIssueBundle/VersionControlGithubIssueBundle.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GithubIssueBundle; 12 | 13 | use Symfony\Component\HttpKernel\Bundle\Bundle; 14 | 15 | class VersionControlGithubIssueBundle extends Bundle 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitlabIssueBundle/DataTransformer/DataTransformerInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitlabIssueBundle\DataTransformer; 12 | 13 | interface DataTransformerInterface 14 | { 15 | public function transform($array); 16 | 17 | public function reverseTransform($entiy); 18 | } 19 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitlabIssueBundle/Resources/config/routing.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitlabIssueBundle/Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHVersionControl/git-web-client/4198964ef30ea7aacdeaf39e25a1ce9e519028f7/app/src/VersionControl/GitlabIssueBundle/Resources/doc/index.rst -------------------------------------------------------------------------------- /app/src/VersionControl/GitlabIssueBundle/Resources/translations/messages.fr.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Symfony2 is great 7 | J'aime Symfony2 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/VersionControl/GitlabIssueBundle/VersionControlGitlabIssueBundle.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace VersionControl\GitlabIssueBundle; 12 | 13 | use Symfony\Component\HttpKernel\Bundle\Bundle; 14 | 15 | class VersionControlGitlabIssueBundle extends Bundle 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /app/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- 1 | PSR Http Message 2 | ================ 3 | 4 | This repository holds all interfaces/classes/traits related to 5 | [PSR-7](http://www.php-fig.org/psr/psr-7/). 6 | 7 | Note that this is not a HTTP message implementation of its own. It is merely an 8 | interface that describes a HTTP message. See the specification for more details. 9 | 10 | Usage 11 | ----- 12 | 13 | We'll certainly need some stuff in here. -------------------------------------------------------------------------------- /app/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/http-message", 3 | "description": "Common interface for HTTP messages", 4 | "keywords": ["psr", "psr-7", "http", "http-message", "request", "response"], 5 | "homepage": "https://github.com/php-fig/http-message", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Http\\Message\\": "src/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.0.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /app/vendor/psr/log/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | logger = $logger; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- 1 | logger) { }` 11 | * blocks. 12 | */ 13 | class NullLogger extends AbstractLogger 14 | { 15 | /** 16 | * Logs with an arbitrary level. 17 | * 18 | * @param mixed $level 19 | * @param string $message 20 | * @param array $context 21 | * 22 | * @return void 23 | */ 24 | public function log($level, $message, array $context = array()) 25 | { 26 | // noop 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/log", 3 | "description": "Common interface for logging libraries", 4 | "keywords": ["psr", "psr-3", "log"], 5 | "homepage": "https://github.com/php-fig/log", 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "PHP-FIG", 10 | "homepage": "http://www.php-fig.org/" 11 | } 12 | ], 13 | "require": { 14 | "php": ">=5.3.0" 15 | }, 16 | "autoload": { 17 | "psr-4": { 18 | "Psr\\Log\\": "Psr/Log/" 19 | } 20 | }, 21 | "extra": { 22 | "branch-alias": { 23 | "dev-master": "1.0.x-dev" 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/vendor/stof/doctrine-extensions-bundle/StofDoctrineExtensionsBundle.php: -------------------------------------------------------------------------------- 1 | addCompilerPass(new ValidateExtensionConfigurationPass()); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/vendor/stof/doctrine-extensions-bundle/Upgrade_to_1_1.md: -------------------------------------------------------------------------------- 1 | Upgrading from 1.0 to 1.1 2 | ========================= 3 | 4 | This file describes the needed changes when upgrading from 1.0 to 1.1 5 | 6 | ### Bumped the requirements 7 | 8 | The bundle now requires Symfony 2.1 and the 2.3 version of the Gedmo extensions 9 | (which is the master branch at the time of this writing) 10 | 11 | ### Removed the duplicated entities. 12 | 13 | The bundle no longer duplicates the entities provided by the extensions 14 | to make the maintenance easier. You need to configure the mapping explicitly 15 | for the extensions as DoctrineBundle cannot guess it. 16 | See the updated documentation about registering the mapping for the way to 17 | register them. 18 | -------------------------------------------------------------------------------- /app/vendor/stof/doctrine-extensions-bundle/Uploadable/MimeTypeGuesserAdapter.php: -------------------------------------------------------------------------------- 1 | guess($filePath); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /app/vendor/stof/doctrine-extensions-bundle/Uploadable/ValidatorConfigurator.php: -------------------------------------------------------------------------------- 1 | validateWritableDirectory = $validateWritableDirectory; 20 | } 21 | 22 | public function configure() 23 | { 24 | Validator::$validateWritableDirectory = $this->validateWritableDirectory; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/abs.rst: -------------------------------------------------------------------------------- 1 | ``abs`` 2 | ======= 3 | 4 | The ``abs`` filter returns the absolute value. 5 | 6 | .. code-block:: twig 7 | 8 | {# number = -5 #} 9 | 10 | {{ number|abs }} 11 | 12 | {# outputs 5 #} 13 | 14 | .. note:: 15 | 16 | Internally, Twig uses the PHP `abs`_ function. 17 | 18 | .. _`abs`: https://secure.php.net/abs 19 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/capitalize.rst: -------------------------------------------------------------------------------- 1 | ``capitalize`` 2 | ============== 3 | 4 | The ``capitalize`` filter capitalizes a value. The first character will be 5 | uppercase, all others lowercase: 6 | 7 | .. code-block:: twig 8 | 9 | {{ 'my first car'|capitalize }} 10 | 11 | {# outputs 'My first car' #} 12 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/convert_encoding.rst: -------------------------------------------------------------------------------- 1 | ``convert_encoding`` 2 | ==================== 3 | 4 | The ``convert_encoding`` filter converts a string from one encoding to 5 | another. The first argument is the expected output charset and the second one 6 | is the input charset: 7 | 8 | .. code-block:: twig 9 | 10 | {{ data|convert_encoding('UTF-8', 'iso-2022-jp') }} 11 | 12 | .. note:: 13 | 14 | This filter relies on the `iconv`_ extension. 15 | 16 | Arguments 17 | --------- 18 | 19 | * ``to``: The output charset 20 | * ``from``: The input charset 21 | 22 | .. _`iconv`: https://secure.php.net/iconv 23 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/date_modify.rst: -------------------------------------------------------------------------------- 1 | ``date_modify`` 2 | =============== 3 | 4 | The ``date_modify`` filter modifies a date with a given modifier string: 5 | 6 | .. code-block:: twig 7 | 8 | {{ post.published_at|date_modify("+1 day")|date("m/d/Y") }} 9 | 10 | The ``date_modify`` filter accepts strings (it must be in a format supported 11 | by the `strtotime`_ function) or `DateTime`_ instances. You can easily combine 12 | it with the :doc:`date` filter for formatting. 13 | 14 | Arguments 15 | --------- 16 | 17 | * ``modifier``: The modifier 18 | 19 | .. _`strtotime`: https://secure.php.net/strtotime 20 | .. _`DateTime`: https://secure.php.net/DateTime 21 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/first.rst: -------------------------------------------------------------------------------- 1 | ``first`` 2 | ========= 3 | 4 | The ``first`` filter returns the first "element" of a sequence, a mapping, or 5 | a string: 6 | 7 | .. code-block:: twig 8 | 9 | {{ [1, 2, 3, 4]|first }} 10 | {# outputs 1 #} 11 | 12 | {{ { a: 1, b: 2, c: 3, d: 4 }|first }} 13 | {# outputs 1 #} 14 | 15 | {{ '1234'|first }} 16 | {# outputs 1 #} 17 | 18 | .. note:: 19 | 20 | It also works with objects implementing the `Traversable`_ interface. 21 | 22 | .. _`Traversable`: https://secure.php.net/manual/en/class.traversable.php 23 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/format.rst: -------------------------------------------------------------------------------- 1 | ``format`` 2 | ========== 3 | 4 | The ``format`` filter formats a given string by replacing the placeholders 5 | (placeholders follows the `sprintf`_ notation): 6 | 7 | .. code-block:: twig 8 | 9 | {{ "I like %s and %s."|format(foo, "bar") }} 10 | 11 | {# outputs I like foo and bar 12 | if the foo parameter equals to the foo string. #} 13 | 14 | .. _`sprintf`: https://secure.php.net/sprintf 15 | 16 | .. seealso:: :doc:`replace` 17 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/index.rst: -------------------------------------------------------------------------------- 1 | Filters 2 | ======= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | abs 8 | batch 9 | capitalize 10 | column 11 | convert_encoding 12 | date 13 | date_modify 14 | default 15 | escape 16 | filter 17 | first 18 | format 19 | join 20 | json_encode 21 | keys 22 | last 23 | length 24 | lower 25 | map 26 | merge 27 | nl2br 28 | number_format 29 | raw 30 | reduce 31 | replace 32 | reverse 33 | round 34 | slice 35 | sort 36 | spaceless 37 | split 38 | striptags 39 | title 40 | trim 41 | upper 42 | url_encode 43 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/json_encode.rst: -------------------------------------------------------------------------------- 1 | ``json_encode`` 2 | =============== 3 | 4 | The ``json_encode`` filter returns the JSON representation of a value: 5 | 6 | .. code-block:: twig 7 | 8 | {{ data|json_encode() }} 9 | 10 | .. note:: 11 | 12 | Internally, Twig uses the PHP `json_encode`_ function. 13 | 14 | Arguments 15 | --------- 16 | 17 | * ``options``: A bitmask of `json_encode options`_: ``{{ 18 | data|json_encode(constant('JSON_PRETTY_PRINT')) }}``. 19 | Combine constants using :ref:`bitwise operators`: 20 | ``{{ data|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_HEX_QUOT')) }}`` 21 | 22 | .. _`json_encode`: https://secure.php.net/json_encode 23 | .. _`json_encode options`: https://secure.php.net/manual/en/json.constants.php 24 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/keys.rst: -------------------------------------------------------------------------------- 1 | ``keys`` 2 | ======== 3 | 4 | The ``keys`` filter returns the keys of an array. It is useful when you want to 5 | iterate over the keys of an array: 6 | 7 | .. code-block:: twig 8 | 9 | {% for key in array|keys %} 10 | ... 11 | {% endfor %} 12 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/last.rst: -------------------------------------------------------------------------------- 1 | ``last`` 2 | ======== 3 | 4 | The ``last`` filter returns the last "element" of a sequence, a mapping, or 5 | a string: 6 | 7 | .. code-block:: twig 8 | 9 | {{ [1, 2, 3, 4]|last }} 10 | {# outputs 4 #} 11 | 12 | {{ { a: 1, b: 2, c: 3, d: 4 }|last }} 13 | {# outputs 4 #} 14 | 15 | {{ '1234'|last }} 16 | {# outputs 4 #} 17 | 18 | .. note:: 19 | 20 | It also works with objects implementing the `Traversable`_ interface. 21 | 22 | .. _`Traversable`: https://secure.php.net/manual/en/class.traversable.php 23 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/lower.rst: -------------------------------------------------------------------------------- 1 | ``lower`` 2 | ========= 3 | 4 | The ``lower`` filter converts a value to lowercase: 5 | 6 | .. code-block:: twig 7 | 8 | {{ 'WELCOME'|lower }} 9 | 10 | {# outputs 'welcome' #} 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/nl2br.rst: -------------------------------------------------------------------------------- 1 | ``nl2br`` 2 | ========= 3 | 4 | The ``nl2br`` filter inserts HTML line breaks before all newlines in a string: 5 | 6 | .. code-block:: twig 7 | 8 | {{ "I like Twig.\nYou will like it too."|nl2br }} 9 | {# outputs 10 | 11 | I like Twig.
12 | You will like it too. 13 | 14 | #} 15 | 16 | .. note:: 17 | 18 | The ``nl2br`` filter pre-escapes the input before applying the 19 | transformation. 20 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/replace.rst: -------------------------------------------------------------------------------- 1 | ``replace`` 2 | =========== 3 | 4 | The ``replace`` filter formats a given string by replacing the placeholders 5 | (placeholders are free-form): 6 | 7 | .. code-block:: twig 8 | 9 | {{ "I like %this% and %that%."|replace({'%this%': foo, '%that%': "bar"}) }} 10 | 11 | {# outputs I like foo and bar 12 | if the foo parameter equals to the foo string. #} 13 | 14 | {# using % as a delimiter is purely conventional and optional #} 15 | 16 | {{ "I like this and --that--."|replace({'this': foo, '--that--': "bar"}) }} 17 | 18 | {# outputs I like foo and bar #} 19 | 20 | Arguments 21 | --------- 22 | 23 | * ``from``: The placeholder values 24 | 25 | .. seealso:: :doc:`format` 26 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/sort.rst: -------------------------------------------------------------------------------- 1 | ``sort`` 2 | ======== 3 | 4 | The ``sort`` filter sorts an array: 5 | 6 | .. code-block:: twig 7 | 8 | {% for user in users|sort %} 9 | ... 10 | {% endfor %} 11 | 12 | .. note:: 13 | 14 | Internally, Twig uses the PHP `asort`_ function to maintain index 15 | association. It supports Traversable objects by transforming 16 | those to arrays. 17 | 18 | .. _`asort`: https://secure.php.net/asort 19 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/striptags.rst: -------------------------------------------------------------------------------- 1 | ``striptags`` 2 | ============= 3 | 4 | The ``striptags`` filter strips SGML/XML tags and replace adjacent whitespace 5 | by one space: 6 | 7 | .. code-block:: twig 8 | 9 | {{ some_html|striptags }} 10 | 11 | You can also provide tags which should not be stripped: 12 | 13 | .. code-block:: twig 14 | 15 | {{ some_html|striptags('

') }} 16 | 17 | In this example, the ``
``, ``
``, ``

``, and ``

`` tags won't be 18 | removed from the string. 19 | 20 | .. note:: 21 | 22 | Internally, Twig uses the PHP `strip_tags`_ function. 23 | 24 | Arguments 25 | --------- 26 | 27 | * ``allowable_tags``: Tags which should not be stripped 28 | 29 | .. _`strip_tags`: https://secure.php.net/strip_tags 30 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/title.rst: -------------------------------------------------------------------------------- 1 | ``title`` 2 | ========= 3 | 4 | The ``title`` filter returns a titlecased version of the value. Words will 5 | start with uppercase letters, all remaining characters are lowercase: 6 | 7 | .. code-block:: twig 8 | 9 | {{ 'my first car'|title }} 10 | 11 | {# outputs 'My First Car' #} 12 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/upper.rst: -------------------------------------------------------------------------------- 1 | ``upper`` 2 | ========= 3 | 4 | The ``upper`` filter converts a value to uppercase: 5 | 6 | .. code-block:: twig 7 | 8 | {{ 'welcome'|upper }} 9 | 10 | {# outputs 'WELCOME' #} 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/filters/url_encode.rst: -------------------------------------------------------------------------------- 1 | ``url_encode`` 2 | ============== 3 | 4 | The ``url_encode`` filter percent encodes a given string as URL segment 5 | or an array as query string: 6 | 7 | .. code-block:: twig 8 | 9 | {{ "path-seg*ment"|url_encode }} 10 | {# outputs "path-seg%2Ament" #} 11 | 12 | {{ "string with spaces"|url_encode }} 13 | {# outputs "string%20with%20spaces" #} 14 | 15 | {{ {'param': 'value', 'foo': 'bar'}|url_encode }} 16 | {# outputs "param=value&foo=bar" #} 17 | 18 | .. note:: 19 | 20 | Internally, Twig uses the PHP ``rawurlencode``. 21 | 22 | .. _`rawurlencode`: https://secure.php.net/rawurlencode 23 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/attribute.rst: -------------------------------------------------------------------------------- 1 | ``attribute`` 2 | ============= 3 | 4 | The ``attribute`` function can be used to access a "dynamic" attribute of a 5 | variable: 6 | 7 | .. code-block:: twig 8 | 9 | {{ attribute(object, method) }} 10 | {{ attribute(object, method, arguments) }} 11 | {{ attribute(array, item) }} 12 | 13 | In addition, the ``defined`` test can check for the existence of a dynamic 14 | attribute: 15 | 16 | .. code-block:: twig 17 | 18 | {{ attribute(object, method) is defined ? 'Method exists' : 'Method does not exist' }} 19 | 20 | .. note:: 21 | 22 | The resolution algorithm is the same as the one used for the ``.`` 23 | notation, except that the item can be any valid expression. 24 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/constant.rst: -------------------------------------------------------------------------------- 1 | ``constant`` 2 | ============ 3 | 4 | ``constant`` returns the constant value for a given string: 5 | 6 | .. code-block:: twig 7 | 8 | {{ some_date|date(constant('DATE_W3C')) }} 9 | {{ constant('Namespace\\Classname::CONSTANT_NAME') }} 10 | 11 | You can read constants from object instances as well: 12 | 13 | .. code-block:: twig 14 | 15 | {{ constant('RSS', date) }} 16 | 17 | Use the ``defined`` test to check if a constant is defined: 18 | 19 | .. code-block:: twig 20 | 21 | {% if constant('SOME_CONST') is defined %} 22 | ... 23 | {% endif %} 24 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/cycle.rst: -------------------------------------------------------------------------------- 1 | ``cycle`` 2 | ========= 3 | 4 | The ``cycle`` function cycles on an array of values: 5 | 6 | .. code-block:: twig 7 | 8 | {% set start_year = date() | date('Y') %} 9 | {% set end_year = start_year + 5 %} 10 | 11 | {% for year in start_year..end_year %} 12 | {{ cycle(['odd', 'even'], loop.index0) }} 13 | {% endfor %} 14 | 15 | The array can contain any number of values: 16 | 17 | .. code-block:: twig 18 | 19 | {% set fruits = ['apple', 'orange', 'citrus'] %} 20 | 21 | {% for i in 0..10 %} 22 | {{ cycle(fruits, i) }} 23 | {% endfor %} 24 | 25 | Arguments 26 | --------- 27 | 28 | * ``position``: The cycle position 29 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/index.rst: -------------------------------------------------------------------------------- 1 | Functions 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | attribute 8 | block 9 | constant 10 | cycle 11 | date 12 | dump 13 | include 14 | max 15 | min 16 | parent 17 | random 18 | range 19 | source 20 | template_from_string 21 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/max.rst: -------------------------------------------------------------------------------- 1 | ``max`` 2 | ======= 3 | 4 | ``max`` returns the biggest value of a sequence or a set of values: 5 | 6 | .. code-block:: twig 7 | 8 | {{ max(1, 3, 2) }} 9 | {{ max([1, 3, 2]) }} 10 | 11 | When called with a mapping, max ignores keys and only compares values: 12 | 13 | .. code-block:: twig 14 | 15 | {{ max({2: "e", 1: "a", 3: "b", 5: "d", 4: "c"}) }} 16 | {# returns "e" #} 17 | 18 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/min.rst: -------------------------------------------------------------------------------- 1 | ``min`` 2 | ======= 3 | 4 | ``min`` returns the lowest value of a sequence or a set of values: 5 | 6 | .. code-block:: twig 7 | 8 | {{ min(1, 3, 2) }} 9 | {{ min([1, 3, 2]) }} 10 | 11 | When called with a mapping, min ignores keys and only compares values: 12 | 13 | .. code-block:: twig 14 | 15 | {{ min({2: "e", 3: "a", 1: "b", 5: "d", 4: "c"}) }} 16 | {# returns "a" #} 17 | 18 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/functions/parent.rst: -------------------------------------------------------------------------------- 1 | ``parent`` 2 | ========== 3 | 4 | When a template uses inheritance, it's possible to render the contents of the 5 | parent block when overriding a block by using the ``parent`` function: 6 | 7 | .. code-block:: twig 8 | 9 | {% extends "base.html" %} 10 | 11 | {% block sidebar %} 12 |

Table Of Contents

13 | ... 14 | {{ parent() }} 15 | {% endblock %} 16 | 17 | The ``parent()`` call will return the content of the ``sidebar`` block as 18 | defined in the ``base.html`` template. 19 | 20 | .. seealso:: :doc:`extends<../tags/extends>`, :doc:`block<../functions/block>`, :doc:`block<../tags/block>` 21 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/index.rst: -------------------------------------------------------------------------------- 1 | Twig 2 | ==== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | intro 8 | installation 9 | templates 10 | api 11 | advanced 12 | internals 13 | deprecated 14 | recipes 15 | coding_standards 16 | tags/index 17 | filters/index 18 | functions/index 19 | tests/index 20 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/installation.rst: -------------------------------------------------------------------------------- 1 | Installation 2 | ============ 3 | 4 | Install `Composer`_ and run the following command to get the latest version: 5 | 6 | .. code-block:: bash 7 | 8 | composer require "twig/twig:^2.0" 9 | 10 | .. _`Composer`: https://getcomposer.org/download/ 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/block.rst: -------------------------------------------------------------------------------- 1 | ``block`` 2 | ========= 3 | 4 | Blocks are used for inheritance and act as placeholders and replacements at 5 | the same time. They are documented in detail in the documentation for the 6 | :doc:`extends<../tags/extends>` tag. 7 | 8 | Block names should consist of alphanumeric characters, and underscores. Dashes 9 | are not permitted. 10 | 11 | .. seealso:: :doc:`block<../functions/block>`, :doc:`parent<../functions/parent>`, :doc:`use<../tags/use>`, :doc:`extends<../tags/extends>` 12 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/do.rst: -------------------------------------------------------------------------------- 1 | ``do`` 2 | ====== 3 | 4 | The ``do`` tag works exactly like the regular variable expression (``{{ ... 5 | }}``) just that it doesn't print anything: 6 | 7 | .. code-block:: twig 8 | 9 | {% do 1 + 2 %} 10 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/filter.rst: -------------------------------------------------------------------------------- 1 | ``filter`` 2 | ========== 3 | 4 | .. note:: 5 | 6 | As of Twig 2.9, you should use the ``apply`` tag instead which does the 7 | same thing except that the wrapped template data is not scoped. 8 | 9 | Filter sections allow you to apply regular Twig filters on a block of template 10 | data. Just wrap the code in the special ``filter`` section: 11 | 12 | .. code-block:: twig 13 | 14 | {% filter upper %} 15 | This text becomes uppercase 16 | {% endfilter %} 17 | 18 | You can also chain filters and pass arguments to them: 19 | 20 | .. code-block:: twig 21 | 22 | {% filter lower|escape('html') %} 23 | SOME TEXT 24 | {% endfilter %} 25 | 26 | {# outputs "<strong>some text</strong>" #} 27 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/flush.rst: -------------------------------------------------------------------------------- 1 | ``flush`` 2 | ========= 3 | 4 | The ``flush`` tag tells Twig to flush the output buffer: 5 | 6 | .. code-block:: twig 7 | 8 | {% flush %} 9 | 10 | .. note:: 11 | 12 | Internally, Twig uses the PHP `flush`_ function. 13 | 14 | .. _`flush`: https://secure.php.net/flush 15 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/from.rst: -------------------------------------------------------------------------------- 1 | ``from`` 2 | ======== 3 | 4 | The ``from`` tag imports :doc:`macro<../tags/macro>` names into the current 5 | namespace. The tag is documented in detail in the documentation for the 6 | :doc:`macro<../tags/macro>` tag. 7 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/import.rst: -------------------------------------------------------------------------------- 1 | ``import`` 2 | ========== 3 | 4 | The ``import`` tag imports :doc:`macro<../tags/macro>` names in a local 5 | variable. The tag is documented in detail in the documentation for the 6 | :doc:`macro<../tags/macro>` tag. 7 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/index.rst: -------------------------------------------------------------------------------- 1 | Tags 2 | ==== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | apply 8 | autoescape 9 | block 10 | deprecated 11 | do 12 | embed 13 | extends 14 | filter 15 | flush 16 | for 17 | from 18 | if 19 | import 20 | include 21 | macro 22 | sandbox 23 | set 24 | spaceless 25 | use 26 | verbatim 27 | with 28 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tags/verbatim.rst: -------------------------------------------------------------------------------- 1 | ``verbatim`` 2 | ============ 3 | 4 | The ``verbatim`` tag marks sections as being raw text that should not be 5 | parsed. For example to put Twig syntax as example into a template you can use 6 | this snippet: 7 | 8 | .. code-block:: twig 9 | 10 | {% verbatim %} 11 |
    12 | {% for item in seq %} 13 |
  • {{ item }}
  • 14 | {% endfor %} 15 |
16 | {% endverbatim %} 17 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/constant.rst: -------------------------------------------------------------------------------- 1 | ``constant`` 2 | ============ 3 | 4 | ``constant`` checks if a variable has the exact same value as a constant. You 5 | can use either global constants or class constants: 6 | 7 | .. code-block:: twig 8 | 9 | {% if post.status is constant('Post::PUBLISHED') %} 10 | the status attribute is exactly the same as Post::PUBLISHED 11 | {% endif %} 12 | 13 | You can test constants from object instances as well: 14 | 15 | .. code-block:: twig 16 | 17 | {% if post.status is constant('PUBLISHED', post) %} 18 | the status attribute is exactly the same as Post::PUBLISHED 19 | {% endif %} 20 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/divisibleby.rst: -------------------------------------------------------------------------------- 1 | ``divisible by`` 2 | ================ 3 | 4 | ``divisible by`` checks if a variable is divisible by a number: 5 | 6 | .. code-block:: twig 7 | 8 | {% if loop.index is divisible by(3) %} 9 | ... 10 | {% endif %} 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/empty.rst: -------------------------------------------------------------------------------- 1 | ``empty`` 2 | ========= 3 | 4 | .. versionadded:: 2.3 5 | 6 | Support for the ``__toString()`` magic method has been added in Twig 2.3. 7 | 8 | ``empty`` checks if a variable is an empty string, an empty array, an empty 9 | hash, exactly ``false``, or exactly ``null``. 10 | 11 | For objects that implement the ``Countable`` interface, ``empty`` will check the 12 | return value of the ``count()`` method. 13 | 14 | For objects that implement the ``__toString()`` magic method (and not ``Countable``), 15 | it will check if an empty string is returned. 16 | 17 | .. code-block:: twig 18 | 19 | {% if foo is empty %} 20 | ... 21 | {% endif %} 22 | 23 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/even.rst: -------------------------------------------------------------------------------- 1 | ``even`` 2 | ======== 3 | 4 | ``even`` returns ``true`` if the given number is even: 5 | 6 | .. code-block:: twig 7 | 8 | {{ var is even }} 9 | 10 | .. seealso:: :doc:`odd<../tests/odd>` 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/index.rst: -------------------------------------------------------------------------------- 1 | Tests 2 | ===== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | constant 8 | defined 9 | divisibleby 10 | empty 11 | even 12 | iterable 13 | null 14 | odd 15 | sameas 16 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/iterable.rst: -------------------------------------------------------------------------------- 1 | ``iterable`` 2 | ============ 3 | 4 | ``iterable`` checks if a variable is an array or a traversable object: 5 | 6 | .. code-block:: twig 7 | 8 | {# evaluates to true if the foo variable is iterable #} 9 | {% if users is iterable %} 10 | {% for user in users %} 11 | Hello {{ user }}! 12 | {% endfor %} 13 | {% else %} 14 | {# users is probably a string #} 15 | Hello {{ users }}! 16 | {% endif %} 17 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/null.rst: -------------------------------------------------------------------------------- 1 | ``null`` 2 | ======== 3 | 4 | ``null`` returns ``true`` if the variable is ``null``: 5 | 6 | .. code-block:: twig 7 | 8 | {{ var is null }} 9 | 10 | .. note:: 11 | 12 | ``none`` is an alias for ``null``. 13 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/odd.rst: -------------------------------------------------------------------------------- 1 | ``odd`` 2 | ======= 3 | 4 | ``odd`` returns ``true`` if the given number is odd: 5 | 6 | .. code-block:: twig 7 | 8 | {{ var is odd }} 9 | 10 | .. seealso:: :doc:`even<../tests/even>` 11 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/doc/tests/sameas.rst: -------------------------------------------------------------------------------- 1 | ``same as`` 2 | =========== 3 | 4 | ``same as`` checks if a variable is the same as another variable. 5 | This is the equivalent to ``===`` in PHP: 6 | 7 | .. code-block:: twig 8 | 9 | {% if foo.attribute is same as(false) %} 10 | the foo attribute really is the 'false' PHP value 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /app/vendor/twig/twig/lib/Twig/Node/Block.php: -------------------------------------------------------------------------------- 1 | /etc/nginx/conf.d/default.conf 11 | 12 | -------------------------------------------------------------------------------- /docker/php/prod/production.ini: -------------------------------------------------------------------------------- 1 | ; ------------------------------------- 2 | ; PRODUCTION configuration 3 | ; ------------------------------------- 4 | 5 | ; this file will overwrite default php.ini settings 6 | 7 | display_errors = 0 8 | 9 | short_open_tag = On 10 | variables_order = 'GPCS' 11 | request_order = 'GP' 12 | 13 | allow_url_fopen = On 14 | allow_url_include = Off 15 | 16 | memory_limit = 512M 17 | max_execution_time = 900 18 | max_input_time = 300 19 | post_max_size = 50M 20 | upload_max_filesize = 50M 21 | max_input_vars = 5000 22 | always_populate_raw_post_data = -1 23 | 24 | expose_php = Off 25 | 26 | date.timezone = UTC 27 | 28 | 29 | ; XDebug 30 | xdebug.remote_enable = 0 31 | xdebug.remote_connect_back = off 32 | -------------------------------------------------------------------------------- /docker/redis/Dockerfile: -------------------------------------------------------------------------------- 1 | #++++++++++++++++++++++++++++++++++++++ 2 | # Redis Docker container 3 | #++++++++++++++++++++++++++++++++++++++ 4 | # 5 | # Official images: 6 | # 7 | # redis - official Redis 8 | # https://hub.docker.com/r/library/redis/ 9 | # 10 | #++++++++++++++++++++++++++++++++++++++ 11 | 12 | FROM redis 13 | -------------------------------------------------------------------------------- /docker/ssh-test/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:16.04 2 | 3 | RUN apt-get update && apt-get install -y openssh-server git 4 | RUN mkdir /var/run/sshd 5 | RUN echo 'root:root' | chpasswd 6 | RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config 7 | 8 | # SSH login fix. Otherwise user is kicked off after login 9 | RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd 10 | 11 | ENV NOTVISIBLE "in users profile" 12 | RUN echo "export VISIBLE=now" >> /etc/profile 13 | 14 | RUN mkdir /var/www 15 | RUN cd /var/www/ && git clone https://github.com/SSHVersionControl/git-web-client.git 16 | 17 | EXPOSE 22 18 | CMD ["/usr/sbin/sshd", "-D"] 19 | --------------------------------------------------------------------------------