├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── node-checks.yml │ ├── php-checks.yml │ ├── phpstan-evaluate-pr.yml │ └── phpstan-generate-baseline.yml ├── .gitignore ├── .htaccess ├── AUTHORS ├── History.md ├── LICENCE ├── README.md ├── SECURITY.md ├── assets ├── .htaccess ├── Arvo │ ├── .DS_Store │ ├── Arvo-Italic.ttf │ ├── Arvo-Regular_v104.ttf │ ├── Arvo_Gruen_1004.otf │ └── _Arvo-Copyright.rtf ├── OpenOffice-Template-Std.odt ├── OpenOffice-Template-ods │ ├── Configurations2 │ │ └── accelerator │ │ │ └── current.xml │ ├── META-INF │ │ └── manifest.xml │ ├── Thumbnails │ │ └── thumbnail.png │ ├── content.xml │ ├── manifest.rdf │ ├── meta.xml │ ├── mimetype │ ├── settings.xml │ └── styles.xml ├── OpenOffice-Template-odt │ ├── Configurations2 │ │ └── accelerator │ │ │ └── current.xml │ ├── META-INF │ │ └── manifest.xml │ ├── Thumbnails │ │ └── thumbnail.png │ ├── content.xml │ ├── manifest.rdf │ ├── meta.xml │ ├── mimetype │ ├── settings.xml │ └── styles.xml ├── OpenOffice-Template.ods ├── PT-Sans │ ├── PTS55F.ttf │ ├── PTS56F.ttf │ ├── PTS75F.ttf │ ├── PTS76F.ttf │ └── _Paratype PT Sans Free Font License.txt ├── db │ ├── cleanup-deleted-sites.sql │ ├── copy-site.sql │ ├── create.sql │ ├── data.sql │ └── delete.sql ├── html2pdf │ ├── application.css │ ├── application.css.map │ ├── application.html │ └── application.scss └── phpstan-helper.php ├── codeception.yml ├── commands ├── .htaccess ├── AdminController.php ├── BackgroundJobController.php ├── BugfixController.php ├── DatabaseController.php ├── EmailBlocklistController.php ├── LiveController.php ├── MotionCloneController.php ├── MoveBinaryContentToFileController.php ├── PerformanceTestController.php └── UserController.php ├── components ├── .htaccess ├── AntiSpam.php ├── BackgroundJobProcessor.php ├── BackgroundJobScheduler.php ├── Captcha.php ├── ConsultationAccessPassword.php ├── CookieUser.php ├── CssCompiler.php ├── DateTools.php ├── EmailNotifications.php ├── ExternalPasswordAuthenticatorInterface.php ├── HTMLTools.php ├── HashedStaticCache.php ├── IMotionSorter.php ├── IMotionStatusFilter.php ├── JwtCreator.php ├── LineSplitter.php ├── LiveTools.php ├── LoginProviderInterface.php ├── MotionNumbering.php ├── MotionSorter.php ├── RSSExporter.php ├── RequestContext.php ├── ResourceLock.php ├── SecondFactorAuthentication.php ├── SitePurger.php ├── StringSplitter.php ├── Tools.php ├── UrlHelper.php ├── UserGroupAdminMethods.php ├── VotingMethods.php ├── ZipWriter.php ├── diff │ ├── AffectedLinesFilter.php │ ├── AmendmentCollissionDetector.php │ ├── AmendmentRewriter.php │ ├── AmendmentSectionFormatter.php │ ├── ArrayMatcher.php │ ├── DataTypes │ │ ├── AffectedLineBlock.php │ │ ├── DiffWord.php │ │ ├── GroupedParagraphData.php │ │ ├── InsDelGroup.php │ │ └── ParagraphMergerWord.php │ ├── Diff.php │ ├── DiffRenderer.php │ ├── Engine.php │ ├── MovingParagraphDetector.php │ ├── SingleAmendmentMergeViewParagraphData.php │ └── amendmentMerger │ │ ├── CollidingParagraphDiff.php │ │ ├── ParagraphDiff.php │ │ ├── ParagraphDiffGroup.php │ │ ├── ParagraphMerger.php │ │ ├── ParagraphOriginalData.php │ │ └── SectionMerger.php ├── html2pdf │ ├── Content.php │ └── Html2PdfConverter.php ├── latex │ ├── Content.php │ ├── Exporter.php │ └── Layout.php ├── mail │ ├── AmazonSES.php │ ├── Base.php │ ├── Mailjet.php │ ├── None.php │ ├── SMTP.php │ ├── Sendmail.php │ └── Tools.php ├── updater │ ├── MigrateHelper.php │ ├── Update.php │ ├── UpdateChecker.php │ ├── UpdatedFiles.php │ ├── available-migrations.php │ ├── available-updates.php │ ├── layout-footer.php │ ├── layout-header.php │ ├── updater.php │ └── view-enter-key.php └── yii │ ├── Application.php │ ├── DBConnection.php │ ├── LoggerFileTarget.php │ ├── MessageSource.php │ ├── UrlManager.php │ └── User.php ├── composer.json ├── composer.lock ├── config ├── .gitignore ├── .htaccess ├── TEST_DOMAIN ├── common.php ├── config.template.json ├── config.template_singlesite.json ├── config_tests.template.json ├── console.php ├── defines.php ├── latex-replaces.template.php ├── update-public.key ├── urls.php └── web.php ├── controllers ├── .htaccess ├── AmendmentActionsTrait.php ├── AmendmentController.php ├── AmendmentMergingTrait.php ├── Base.php ├── ConsultationController.php ├── InstallationController.php ├── ManagerController.php ├── MotionActionsTrait.php ├── MotionController.php ├── MotionExportTraits.php ├── MotionMergingTrait.php ├── PagesController.php ├── SpeechController.php ├── TestController.php ├── UserController.php ├── VotingController.php └── admin │ ├── AdminBase.php │ ├── AgendaController.php │ ├── AmendmentController.php │ ├── IndexController.php │ ├── MotionController.php │ ├── MotionListController.php │ ├── MotionTypeController.php │ ├── ProposedProcedureController.php │ └── UsersController.php ├── docker-compose.development.yml ├── docker ├── config.json ├── nginx │ └── default.conf └── php │ └── Dockerfile ├── docs ├── .htaccess ├── UPGRADING.md ├── apache.sample.conf ├── caches.md ├── create-dist.sh ├── create-update.php ├── fontello-config.json ├── latex │ └── neos.tex ├── nginx.sample.conf ├── openapi.yaml ├── selenium-antragsgruen.toml ├── simplesaml-nginx.conf ├── supervisor.conf ├── update-mechanism.md ├── update-repository.sh └── update-troubleshooting.md ├── eslint.config.mjs ├── gulpfile.js ├── index.php ├── messages ├── .gitignore ├── .htaccess ├── ca │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pagedata.php │ ├── pages.php │ ├── speech.php │ ├── structure.php │ ├── user.php │ ├── voting.php │ └── wizard.php ├── de-aevorschlaege │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── consultation.php │ ├── export.php │ ├── motion.php │ ├── structure.php │ ├── user.php │ └── voting.php ├── de-bdk │ ├── admin.php │ ├── amend.php │ ├── consultation.php │ └── motion.php ├── de-bewerbung │ └── motion.php ├── de-jusosth │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── structure.php │ ├── user.php │ └── wizard.php ├── de-parteitag │ ├── base.php │ └── consultation.php ├── de-programm │ └── consultation.php ├── de-spdth │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── consultation.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── structure.php │ ├── user.php │ └── wizard.php ├── de │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── speech.php │ ├── structure.php │ ├── user.php │ ├── voting.php │ └── wizard.php ├── en-gb │ ├── initiator.php │ └── structure.php ├── en │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── speech.php │ ├── structure.php │ ├── user.php │ ├── voting.php │ └── wizard.php ├── fr │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── structure.php │ ├── user.php │ └── wizard.php ├── me │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── speech.php │ ├── structure.php │ ├── user.php │ ├── voting.php │ └── wizard.php └── nl │ ├── admin.php │ ├── amend.php │ ├── base.php │ ├── comment.php │ ├── consultation.php │ ├── diff.php │ ├── export.php │ ├── initiator.php │ ├── manager.php │ ├── motion.php │ ├── pages.php │ ├── read_me │ ├── speech.php │ ├── structure.php │ ├── user.php │ ├── voting.php │ └── wizard.php ├── migrations ├── .htaccess ├── m150930_094343_amendment_multiple_paragraphs.php ├── m151021_084634_supporter_organization_contact_person.php ├── m151025_123256_user_email_change.php ├── m151104_092212_motion_type_deletable.php ├── m151104_132242_site_consultation_date_creation.php ├── m151106_083636_site_properties.php ├── m151106_183055_motion_type_two_cols.php ├── m160114_200337_motion_section_is_right.php ├── m160228_152511_motion_type_rename_initiator_form.php ├── m160304_095858_motion_slug.php ├── m160305_201135_support_separate_to_motions_and_amendments.php ├── m160305_214526_support_likes_dislikes.php ├── m160605_104819_remove_consultation_type.php ├── m161112_161536_add_date_delete.php ├── m170111_182139_motions_non_amendable.php ├── m170129_173812_typo_maintenance.php ├── m170204_191243_additional_user_fields.php ├── m170206_185458_supporter_contact_name.php ├── m170226_134156_motionInitiatorsAmendmentMerging.php ├── m170419_182728_delete_consultation_admin.php ├── m170611_195343_global_alternatives.php ├── m170730_094020_amendment_proposed_changes.php ├── m170807_193931_voting_status.php ├── m170826_180536_proposal_notifications.php ├── m170923_151852_proposal_explanation.php ├── m171219_173517_motion_proposed_changes.php ├── m171231_093702_user_organization_ids.php ├── m180519_180908_siteTexts.php ├── m180524_153540_motionTypeDeadlines.php ├── m180531_062049_parent_motion_ids.php ├── m180602_121824_motion_create_buttons.php ├── m180604_080335_notification_settings.php ├── m180605_125835_consultation_files.php ├── m180609_095225_consultation_text_in_menu.php ├── m180619_080947_email_settings_to_consultations.php ├── m180621_113721_login_settings_to_consultation.php ├── m180623_113955_motionTypeSettings.php ├── m180901_131243_sectionPrintTitle.php ├── m180902_182805_initiatorSettings.php ├── m180906_171118_supporterExtraData.php ├── m181027_094836_fix_amendment_comment_relation.php ├── m181027_174827_consultationFilesSite.php ├── m181101_161124_proposed_procedure_active.php ├── m190816_074556_votingData.php ├── m190901_065243_deleteOldMergingDrafts.php ├── m191101_162351_motion_responsibility.php ├── m191201_080255_motion_support_types.php ├── m191208_065712_file_downloads.php ├── m191222_135810_lualatex.php ├── m200107_113326_motionSectionSettings.php ├── m200125_124424_minimalistic_ui.php ├── m200130_100306_agenda_extension.php ├── m200223_161553_agenda_obsoletion.php ├── m200301_110040_user_settings.php ├── m200329_135701_speech_list.php ├── m200621_063838_amendmentMotionExtraData.php ├── m201111_193448_consultation_text_per_motion_type.php ├── m210116_080438_rename_email_blocklist.php ├── m210207_145533_remove_obsolete_fields.php ├── m210307_092657_enhance_consultation_log.php ├── m210425_100105_tag_types_amendment_tags.php ├── m210509_173210_statute_amendments.php ├── m210724_134121_votings.php ├── m211031_004346_failed_login_attempts.php ├── m211108_192545_non_public_motion_sections.php ├── m211218_190505_voting_block_answers_permissions.php ├── m220102_130212_user_groups.php ├── m220116_154835_policy_data.php ├── m220305_160942_voting_quorum.php ├── m220512_074519_voting_position.php ├── m220528_175811_remove_user_privilege_tables.php ├── m220710_080845_remove_odt_templates.php ├── m220710_114056_document_file_groups.php ├── m220730_144556_voting_block_settings_usergroup_order.php ├── m220806_131705_motion_modification_date.php ├── m220902_181010_motion_not_commentable.php ├── m220904_083241_amendment_to_other_amendments.php ├── m221224_151157_remove_site_admins.php ├── m230218_110905_motion_proposal_reference.php ├── m230219_132917_motion_versions.php ├── m230318_132711_hierarchical_tags_with_settings.php ├── m240406_155022_vote_weight.php ├── m240427_090527_motion_status_index.php ├── m240830_181716_user_secret_key.php ├── m241013_105549_pages_files.php ├── m241027_074032_pages_policies.php ├── m241201_100317_background_jobs.php ├── m250608_180000_multiple_proposals.php ├── m250817_080222_date_submission.php ├── m250829_055949_increase_category_length.php └── m250916_234203_maxLen_not_nullable.php ├── models ├── .htaccess ├── AdminTodoItem.php ├── IMotionList.php ├── LimitedSupporterList.php ├── MotionSectionChanges.php ├── SearchResult.php ├── SectionedParagraph.php ├── amendmentNumbering │ ├── ByLine.php │ ├── GlobalCompact.php │ ├── IAmendmentNumbering.php │ ├── PerMotionCompact.php │ └── PerMotionEnglish.php ├── api │ ├── AgendaItem.php │ ├── AgendaItemSettings.php │ ├── SpeechQueue.php │ ├── SpeechQueueActiveSlot.php │ ├── SpeechSubqueue.php │ ├── SpeechSubqueueItem.php │ └── SpeechUser.php ├── backgroundJobs │ ├── IBackgroundJob.php │ ├── IBackgroundJobException.php │ └── SendNotification.php ├── consultationLog │ ├── ProposedProcedureAgreement.php │ ├── ProposedProcedureChange.php │ ├── ProposedProcedureUserNotification.php │ └── UserGroupChange.php ├── db │ ├── Amendment.php │ ├── AmendmentAdminComment.php │ ├── AmendmentComment.php │ ├── AmendmentProposal.php │ ├── AmendmentSection.php │ ├── AmendmentSupporter.php │ ├── CacheTrait.php │ ├── Consultation.php │ ├── ConsultationAgendaItem.php │ ├── ConsultationFile.php │ ├── ConsultationFileGroup.php │ ├── ConsultationLog.php │ ├── ConsultationMotionType.php │ ├── ConsultationSettingsMotionSection.php │ ├── ConsultationSettingsTag.php │ ├── ConsultationText.php │ ├── ConsultationUserGroup.php │ ├── EMailBlocklist.php │ ├── EMailLog.php │ ├── FailedLoginAttempt.php │ ├── IAdminComment.php │ ├── IComment.php │ ├── IHasPolicies.php │ ├── IMotion.php │ ├── IMotionSection.php │ ├── IProposal.php │ ├── IRSSItem.php │ ├── ISupporter.php │ ├── IVotingItem.php │ ├── Motion.php │ ├── MotionAdminComment.php │ ├── MotionComment.php │ ├── MotionCommentSupporter.php │ ├── MotionProposal.php │ ├── MotionSection.php │ ├── MotionSectionParagraph.php │ ├── MotionSectionParagraphAmendment.php │ ├── MotionSupporter.php │ ├── Site.php │ ├── SpeechQueue.php │ ├── SpeechQueueItem.php │ ├── SpeechSubqueue.php │ ├── TexTemplate.php │ ├── User.php │ ├── UserConsultationScreening.php │ ├── UserNotification.php │ ├── Vote.php │ ├── VotingBlock.php │ ├── VotingItemTrait.php │ ├── VotingQuestion.php │ └── repostory │ │ ├── ConsultationRepository.php │ │ └── MotionRepository.php ├── events │ ├── AmendmentEvent.php │ ├── AmendmentSupporterEvent.php │ ├── MotionEvent.php │ ├── MotionSupporterEvent.php │ └── UserEvent.php ├── exceptions │ ├── Access.php │ ├── AlreadyExists.php │ ├── ApiResponseException.php │ ├── ConfigurationError.php │ ├── DB.php │ ├── ExceptionBase.php │ ├── FormError.php │ ├── Inconsistency.php │ ├── Internal.php │ ├── Login.php │ ├── LoginInvalidPassword.php │ ├── LoginInvalidUser.php │ ├── MailNotSent.php │ ├── Network.php │ ├── NotAmendable.php │ ├── NotFound.php │ ├── ResponseException.php │ ├── ServerConfiguration.php │ └── UserEditFailed.php ├── forms │ ├── AdminMotionFilterForm.php │ ├── AgendaSaver.php │ ├── AmendmentEditForm.php │ ├── AntragsgruenInitConfigwriteTrait.php │ ├── AntragsgruenInitDb.php │ ├── AntragsgruenInitSite.php │ ├── AntragsgruenUpdateModeForm.php │ ├── CommentForm.php │ ├── ConsultationActivityFilterForm.php │ ├── ConsultationCreateForm.php │ ├── DeadlineForm.php │ ├── LoginUsernamePasswordForm.php │ ├── MergeSingleAmendmentForm.php │ ├── MotionDeepCopy.php │ ├── MotionEditForm.php │ ├── MotionMover.php │ ├── ProposedChangeForm.php │ └── SiteCreateForm.php ├── http │ ├── BinaryFileResponse.php │ ├── HtmlErrorResponse.php │ ├── HtmlResponse.php │ ├── JsonResponse.php │ ├── RedirectResponse.php │ ├── ResponseInterface.php │ ├── RestApiExceptionResponse.php │ ├── RestApiResponse.php │ └── SafeUrl.php ├── layoutHooks │ ├── Hooks.php │ ├── Layout.php │ └── StdHooks.php ├── majorityType │ ├── AbsoluteMajority.php │ ├── IMajorityType.php │ ├── SimpleMajority.php │ └── TwoThirdsMajority.php ├── mergeAmendments │ ├── Draft.php │ ├── DraftParagraph.php │ ├── Init.php │ └── Merge.php ├── motionTypeTemplates │ ├── Application.php │ ├── Manifesto.php │ ├── Motion.php │ ├── PDFApplication.php │ ├── ProgressReport.php │ └── Statutes.php ├── notifications │ ├── AmendmentCreated.php │ ├── AmendmentProposedProcedure.php │ ├── AmendmentPublished.php │ ├── AmendmentWithdrawn.php │ ├── Base.php │ ├── CommentNotificationSubscriptions.php │ ├── IEmailAdmin.php │ ├── IEmailUser.php │ ├── MotionCreated.php │ ├── MotionEdited.php │ ├── MotionNotificationSubscriptions.php │ ├── MotionProposedProcedure.php │ ├── MotionPublished.php │ ├── MotionWithdrawn.php │ └── UserAsksPermission.php ├── policies │ ├── Admins.php │ ├── All.php │ ├── EligibilityByGroup.php │ ├── GruenesNetz.php │ ├── IPolicy.php │ ├── LoggedIn.php │ ├── Nobody.php │ └── UserGroups.php ├── proposedProcedure │ ├── ActivityAdminComment.php │ ├── ActivityConsultationLog.php │ ├── Agenda.php │ ├── AgendaVoting.php │ ├── Factory.php │ └── IActivity.php ├── quorumType │ ├── HalfQuorum.php │ ├── IQuorumType.php │ ├── NoQuorum.php │ └── TwoThirdsQuorum.php ├── sectionTypes │ ├── Choice.php │ ├── ISectionType.php │ ├── Image.php │ ├── PDF.php │ ├── TabularData.php │ ├── TabularDataType.php │ ├── Text.php │ ├── TextEditorial.php │ ├── TextHTML.php │ ├── TextSimple.php │ ├── TextSimpleCommon.php │ ├── Title.php │ └── VideoEmbed.php ├── settings │ ├── AgendaItem.php │ ├── AntragsgruenApp.php │ ├── Consultation.php │ ├── ConsultationUserOrganisation.php │ ├── IMotionStatus.php │ ├── IMotionStatusEngine.php │ ├── InitiatorForm.php │ ├── JsonConfigTrait.php │ ├── Layout.php │ ├── MotionSection.php │ ├── MotionType.php │ ├── PDF.php │ ├── Permissions.php │ ├── Privilege.php │ ├── PrivilegeQueryContext.php │ ├── Privileges.php │ ├── Site.php │ ├── SpeechQueue.php │ ├── Stylesheet.php │ ├── Tag.php │ ├── User.php │ ├── UserGroupPermissionEntry.php │ ├── UserGroupPermissions.php │ ├── VotingBlock.php │ └── VotingData.php ├── supportTypes │ ├── CollectBeforePublish.php │ ├── GivenByInitiator.php │ ├── NoInitiator.php │ ├── OnlyInitiator.php │ └── SupportBase.php └── votings │ ├── Answer.php │ ├── AnswerTemplates.php │ └── VotingItemGroup.php ├── package.json ├── phpstan.neon ├── phpstan.use-baseline.neon ├── plugins ├── .gitignore ├── .htaccess ├── ModuleBase.php ├── antragsgruen_sites │ ├── Assets.php │ ├── LayoutHooks.php │ ├── Module.php │ ├── assets │ │ ├── sites.css │ │ ├── sites.css.map │ │ └── sites.scss │ ├── consultationCss │ │ └── .gitignore │ ├── controllers │ │ └── ManagerController.php │ ├── messages │ │ ├── de │ │ │ └── antragsgruen_sites.php │ │ └── en │ │ │ └── antragsgruen_sites.php │ └── views │ │ └── manager │ │ ├── allsites.php │ │ ├── created.php │ │ ├── createsite.php │ │ ├── help_amendments_de.php │ │ ├── help_amendments_en.php │ │ ├── help_de.php │ │ ├── help_en.php │ │ ├── help_motions_de.php │ │ ├── help_motions_en.php │ │ ├── help_progressreports_de.php │ │ ├── help_progressreports_en.php │ │ ├── help_status_de.php │ │ ├── help_status_en.php │ │ ├── index_de.php │ │ ├── index_en.php │ │ ├── sidebar_anonymous.php │ │ └── sidebar_user.php ├── discourse │ ├── LayoutHooks.php │ ├── Module.php │ ├── OnSubmittedHandler.php │ ├── Tools.php │ ├── controllers │ │ ├── AmendmentController.php │ │ └── MotionController.php │ ├── messages │ │ ├── de │ │ │ └── discourse.php │ │ └── en │ │ │ └── discourse.php │ └── views │ │ └── admin │ │ └── consultation_settings.php ├── drupal_civicrm │ ├── DrupalPasswordHashing.php │ ├── Module.php │ ├── PasswordAuthenticator.php │ └── PasswordAuthenticatorConfiguration.php ├── egp_usersync │ ├── DTO │ │ ├── User.php │ │ └── UserList.php │ ├── Module.php │ ├── UserSyncService.php │ └── controllers │ │ └── UsersyncController.php ├── extra_css_js │ ├── LayoutHooks.php │ ├── Module.php │ └── assets │ │ └── .gitignore ├── green_layout │ ├── Assets.php │ ├── LayoutHooks.php │ ├── Module.php │ ├── OpenOffice-Template-Gruen.odt │ ├── ThumbnailAssets.php │ └── assets │ │ ├── _Paratype PT Sans Free Font License.txt │ │ ├── _arvo.scss │ │ ├── _ptsans.scss │ │ ├── arvo_gruen.woff │ │ ├── arvo_regular.woff │ │ ├── gruenes_ci2_background.jpg │ │ ├── layout-green_layout.css │ │ ├── layout-green_layout.css.map │ │ ├── layout-green_layout.scss │ │ ├── layout-preview-green.png │ │ ├── logo_gruene-2015.png │ │ ├── ptsans_bold.woff │ │ └── ptsans_regular.woff ├── green_manager │ ├── Assets.php │ ├── LayoutHooks.php │ ├── Module.php │ ├── SiteSettings.php │ ├── assets │ │ ├── logo-b90.svg │ │ ├── logo-fyeg.png │ │ ├── sites.css │ │ ├── sites.css.map │ │ └── sites.scss │ ├── controllers │ │ └── ManagerController.php │ └── views │ │ └── manager │ │ ├── created.php │ │ ├── createsite.php │ │ ├── free_hosting_faq.php │ │ ├── help.php │ │ ├── index.php │ │ ├── wizard_index.php │ │ ├── wizard_language.php │ │ └── wizard_subdomain.php ├── gruen_ci │ ├── Assets1.php │ ├── Assets2.php │ ├── Assets3.php │ ├── LayoutHooks2.php │ ├── LayoutHooks3.php │ ├── Module.php │ ├── OpenOffice-Template-Gruen.odt │ ├── ThumbnailAssets.php │ ├── assets │ │ ├── .gitignore │ │ ├── _arvo.scss │ │ ├── _gruenetype.scss │ │ ├── _ptsans.scss │ │ ├── gruenes_ci2_background.jpg │ │ ├── layout-gruen_ci1.css │ │ ├── layout-gruen_ci1.css.map │ │ ├── layout-gruen_ci1.scss │ │ ├── layout-gruen_ci2.css │ │ ├── layout-gruen_ci2.css.map │ │ ├── layout-gruen_ci2.scss │ │ ├── layout-gruen_ci3.css │ │ ├── layout-gruen_ci3.css.map │ │ ├── layout-gruen_ci3.scss │ │ ├── layout-preview-ci3.png │ │ ├── layout-preview-green.png │ │ ├── layout-preview-old.png │ │ └── logo_gruene-2015.png │ └── messages │ │ ├── de │ │ └── gruen_ci.php │ │ └── en │ │ └── gruen_ci.php ├── gruen_gender │ ├── LayoutHooks.php │ └── Module.php ├── gruene_bw_pdf │ ├── HtmlToPdfLayout.php │ ├── Module.php │ ├── application.css │ ├── application.css.map │ ├── application.html │ └── application.scss ├── gruene_ch_saml │ ├── Module.php │ ├── SamlLogin.php │ ├── controllers │ │ └── LoginController.php │ ├── messages │ │ ├── de │ │ │ └── gruene_ch_saml.php │ │ └── fr │ │ │ └── gruene_ch_saml.php │ └── views │ │ └── login.php ├── gruene_de_saml │ ├── Module.php │ ├── SamlLogin.php │ ├── commands │ │ └── ImportUserGroupsController.php │ ├── controllers │ │ └── LoginController.php │ └── views │ │ ├── login.php │ │ └── users_add_multiple.php ├── motionslides │ ├── Controllers │ │ └── PageController.php │ ├── LayoutHooks.php │ ├── Module.php │ └── views │ │ ├── admin-content-page.php │ │ └── imotion-page.php ├── multisite_admin │ ├── LayoutHooks.php │ ├── Module.php │ ├── controllers │ │ └── ManagerController.php │ └── views │ │ └── manager │ │ ├── created.php │ │ ├── createsite.php │ │ └── index.php ├── openslides │ ├── AutoupdateSyncService.php │ ├── ConsultationSettings.php │ ├── DTO │ │ ├── AutoupdateChangedData.php │ │ ├── AutoupdateUpdate.php │ │ ├── LoginResponse.php │ │ ├── User.php │ │ └── Usergroup.php │ ├── Module.php │ ├── OpenslidesClient.php │ ├── PasswordAuthenticator.php │ ├── SiteSettings.php │ ├── controllers │ │ └── AutoupdateController.php │ ├── docs │ │ └── autoupdate-full.http │ ├── messages │ │ ├── de │ │ │ └── openslides.php │ │ └── en │ │ │ └── openslides.php │ └── views │ │ └── admin │ │ └── consultation_settings.php └── swagger_ui │ ├── Assets.php │ ├── Module.php │ ├── assets │ ├── swagger-ui-bundle.js │ ├── swagger-ui-standalone-preset.js │ └── swagger-ui.css │ ├── controllers │ └── SwaggeruiController.php │ └── views │ └── index.php ├── runtime └── .gitkeep ├── tests ├── .htaccess ├── Acceptance.suite.yml ├── Acceptance │ ├── _bootstrap.php │ ├── admin │ │ ├── AmendmentDefaultViewModeCept.php │ │ ├── AmendmentEditCept.php │ │ ├── AmendmentEditInitiatorsCept.php │ │ ├── AmendmentNumberingCept.php │ │ ├── ChangingMotionTypeCept.php │ │ ├── ComplexDeadlineCept.php │ │ ├── ConsultationPasswordCept.php │ │ ├── CreateConsultationByTemplateCept.php │ │ ├── CreateConsultationByWizardCept.php │ │ ├── DeleteMotionAmendmentCept.php │ │ ├── FixedTextCept.php │ │ ├── ForceLoginCept.php │ │ ├── GlobalAlternativesCept.php │ │ ├── MaintenanceCept.php │ │ ├── MotionEditCept.php │ │ ├── MotionEditInitiatorsCept.php │ │ ├── MotionEditLineNumberingCept.php │ │ ├── MotionListAmendmentAsTemplateCept.php │ │ ├── MotionListCept.php │ │ ├── MotionListMotionAsTemplateCept.php │ │ ├── MotionSupporterEditCept.php │ │ ├── MotionTypeCreateCept.php │ │ ├── MotionTypeMessagesCept.php │ │ ├── MoveMotionsToOtherConsultationCept.php │ │ ├── MoveMotionsWithinConsultationCept.php │ │ ├── ObsoletedByStatusCept.php │ │ ├── OrganisationListCept.php │ │ ├── SiteAdminManagerCept.php │ │ └── VotingResultsCept.php │ ├── amendments │ │ ├── AmendmentsToAmendmentsCept.php │ │ ├── CommentScreeningCept.php │ │ ├── CommentWriteCept.php │ │ ├── CreateCept.php │ │ ├── CreateForOtherInitiatorCept.php │ │ ├── CreateLoginCept.php │ │ ├── DeleteAsAdmin.php │ │ ├── DisableEditorialAmendmentsCept.php │ │ ├── DraftSaveCept.php │ │ ├── EditCept.php │ │ ├── EditDraftPermissionCept.php │ │ ├── FixedUserDataCept.php │ │ ├── GlobalAlternativeCept.php │ │ ├── GotoPrefixCept.php │ │ ├── InitiatorOrgaNaturalPersonCept.php │ │ ├── InlineInMotionViewCept.php │ │ ├── LikeDislikeCept.php │ │ ├── PersonalCommentsCept.php │ │ ├── ScreeningCept.php │ │ ├── ScreeningVisibleForUserCept.php │ │ ├── SimpleDeadlineCept.php │ │ ├── SingleParagraphModeCept.php │ │ ├── StatuteAmendmentsAgendaCept.php │ │ ├── StatuteAmendmentsCept.php │ │ ├── TagsCept.php │ │ ├── TitleChangesCept.php │ │ ├── ViewCept.php │ │ └── WithdrawCept.php │ ├── api │ │ ├── AmendmentViewCept.php │ │ ├── ConsultationListCept.php │ │ ├── ConsultationOverviewCept.php │ │ └── MotionViewCept.php │ ├── appearance │ │ ├── CustomThemeCept.php │ │ ├── EditContentPagesCept.php │ │ ├── EditHelpContentCept.php │ │ ├── ForceSingleMotionCept.php │ │ ├── HideAntragsgruenAdCept.php │ │ ├── HideBreadcrumbCept.php │ │ ├── HideTitlePrefixCept.php │ │ ├── MotiondataModeCept.php │ │ ├── ResolutionsSeparatelyCept.php │ │ ├── ShowFeedsCept.php │ │ ├── TranslationCept.php │ │ └── TranslationServicesCept.php │ ├── exports │ │ ├── AmendmentPDFCept.php │ │ ├── AmendmentsPDFListCept.php │ │ ├── FeedsCept.php │ │ ├── MotionODTCept.php │ │ ├── MotionPDFCept.php │ │ ├── MotionSingleHTMLCept.php │ │ ├── ODSCept.php │ │ ├── OpenslidesCept.php │ │ └── UserDataCept.php │ ├── manager │ │ ├── AntragsgruenAdCept.php │ │ ├── ApplicationsPdfCept.php │ │ ├── CreateCongressCept.php │ │ ├── CreateSingleMotionCept.php │ │ ├── LegalCept.php │ │ ├── SpeakingListQuotaCept.php │ │ └── StatutesCept.php │ ├── merging │ │ ├── AllAmendmentsDraftsCept.php │ │ ├── AllAmendmentsEmptySectionsCept.php │ │ ├── AllAmendmentsExcludingSomeCept.php │ │ ├── AllAmendmentsMergeAmendmentsCept.php │ │ ├── AppearingAmendmentsCept.php │ │ ├── ConflictResolvingProposalCept.php │ │ ├── CreateResolutionWithProtocolCept.php │ │ ├── DeletedReferencedByModificationCept.php │ │ ├── MarkingConflictsAsHandledCept.php │ │ ├── NoAmendmentsAsAdminCept.php │ │ ├── NoAmendmentsSimplifiedCept.php │ │ ├── ResolutionWithProgressReportCept.php │ │ ├── SingleAmendmentAsAdminCept.php │ │ ├── SingleAmendmentAsUserNoCollissionCept.php │ │ ├── SingleAmendmentAsUserWithCollissionCept.php │ │ └── WorksWithNumberedListsCept.php │ ├── misc │ │ ├── ActivityLogCept.php │ │ ├── AgendaEditCept.php │ │ ├── ConsultationDiscussionTagsCept.php │ │ ├── ConsultationHomeHiddenAmendmentsCept.php │ │ ├── LayoutTestCept.php │ │ ├── LegalPagesCept.php │ │ └── SearchCept.php │ ├── motions │ │ ├── AlternativeContactNameCept.php │ │ ├── ApplicationCreateCept.php │ │ ├── CommentLikeCept.php │ │ ├── CommentParagraphWriteCept.php │ │ ├── CommentScreeningCept.php │ │ ├── CommentScreeningWholeMotionCept.php │ │ ├── CommentWholeMotionCept.php │ │ ├── CreateCept.php │ │ ├── CreateForOtherInitiatorCept.php │ │ ├── CreateLoginCept.php │ │ ├── CreateSupporterCept.php │ │ ├── DeleteAsAdmin.php │ │ ├── DraftSaveCept.php │ │ ├── EditCept.php │ │ ├── EditDraftPermissionCept.php │ │ ├── EmptyPrefixesCept.php │ │ ├── FixedUserDataCept.php │ │ ├── FormattingsCept.php │ │ ├── GotoPrefixCept.php │ │ ├── HiddenSectionsCept.php │ │ ├── InitiatorConfirmEmailCept.php │ │ ├── InitiatorOrgaNaturalPersonCept.php │ │ ├── InitiatorOrganizationCept.php │ │ ├── InitiatorWithGenderCept.php │ │ ├── InitiatorWithoutResolutionDateCept.php │ │ ├── LikeDislikeCept.php │ │ ├── MaxLenCept.php │ │ ├── MinSupporterWarningCept.php │ │ ├── NonAmendableCept.php │ │ ├── PersonalCommentsCept.php │ │ ├── ProtocolCept.php │ │ ├── ScreeningCept.php │ │ ├── ScreeningVisibleForUserCept.php │ │ ├── SectionsEditCept.php │ │ ├── SimpleDeadlineCept.php │ │ ├── TagsCept.php │ │ ├── TagsDisallowToUserCept.php │ │ ├── TagsMultipleSelectionCept.php │ │ ├── ViewCept.php │ │ ├── WithdrawCept.php │ │ └── WurzelwerkCreatePermissionCept.php │ ├── pasterrors │ │ ├── AdminCanCreateMotionsCept.php │ │ ├── AmendmentEditDeleteTextCept.php │ │ ├── AmendmentViewCept.php │ │ ├── CreateAccountFromManagerCept.php │ │ ├── DeleteTagsCept.php │ │ ├── DeletedItemsCept.php │ │ ├── DeletingMotionBreaksVotingsCept.php │ │ ├── DontShowLinenumberPlaceholdersCept.php │ │ ├── DraftsNotVisibleCept.php │ │ ├── EditingMotionsAfterParagraphCommentsCept.php │ │ ├── EmptySupporterOnCreateCept.php │ │ ├── LostInsertedParagraphCept.php │ │ ├── MotionNotFoundCept.php │ │ ├── MotionViewCept.php │ │ ├── MovingAmendmentsToAmendmentsCept.php │ │ ├── ScreeningCept.php │ │ ├── UnscreenedItemsCept.php │ │ ├── UrlPathChangeCept.php │ │ ├── WhitespaceBeginningLineCept.php │ │ └── WurzelwerkManagerLoginCept.php │ ├── plugins │ │ ├── DbwvStdFlowCept.php │ │ └── YfjVotingCept.php │ ├── proposedprocedure │ │ ├── AgendaItemHideCept.php │ │ ├── AmendmentEditCept.php │ │ ├── AmendmentVersionsCept.php │ │ ├── DeactivatingCept.php │ │ ├── MergeSingleAmendmentsCept.php │ │ ├── ModificationVisibilityCept.php │ │ ├── MotionEditCept.php │ │ ├── MotionVersionsCept.php │ │ ├── MoveAmendmentToOtherMotionCept.php │ │ ├── ResponsibilitiesCept.php │ │ └── TagsCept.php │ ├── speech │ │ ├── NoQuotaNoLoginCept.php │ │ ├── PointOfOrderCept.php │ │ └── QuotaLoggedInCept.php │ ├── supporting │ │ ├── AmendmentLoginlessCept.php │ │ ├── AmendmentMinGenderCept.php │ │ ├── AmendmentMinWarningCept.php │ │ ├── AmendmentNonPublicSupportCept.php │ │ ├── AmendmentStdCept.php │ │ ├── AmendmentSupportingPhaseCept.php │ │ ├── BothOfficialSupportCept.php │ │ ├── MotionAllowMoreCept.php │ │ ├── MotionFullTextCept.php │ │ ├── MotionLoginlessCept.php │ │ ├── MotionMinGenderCept.php │ │ ├── MotionNonPublicSupportCept.php │ │ ├── MotionSupportingPhaseCept.php │ │ ├── OrganisationListsWithNoOrganisationFieldCept.php │ │ └── RestrictingNaturalOrgaProposerCept.php │ ├── user │ │ ├── AccountCreateCept.php │ │ ├── AccountDeleteCept.php │ │ ├── AccountEditCept.php │ │ ├── EMailChangeCept.php │ │ ├── NoEmailConfirmationCept.php │ │ ├── NotificationsCept.php │ │ ├── PasswordRecoveryCept.php │ │ └── SecondFactorCept.php │ ├── useradministration │ │ ├── AccountRequestThenAddedRegularCept.php │ │ ├── AccountScreeningCept.php │ │ ├── AdminPermissionsCept.php │ │ ├── AdminPermissionsInvalidOperationsCept.php │ │ ├── ForcePwdChangeCept.php │ │ ├── ForceSecondFactorCept.php │ │ ├── PreventPwdChangeCept.php │ │ ├── RestrictedPrivilegesCept.php │ │ ├── UserAccessBatchCreationNoEmailCept.php │ │ ├── UserAccessSingleCreationCept.php │ │ ├── UserdataEditingCept.php │ │ └── UsergroupsCept.php │ └── voting │ │ ├── CreateAndDeleteGroupedVotingCept.php │ │ ├── ListVoteCept.php │ │ ├── ProposedProcedureVotingCept.php │ │ ├── QuestionsCept.php │ │ ├── QuorumCept.php │ │ ├── RollCallCept.php │ │ ├── SortVotingsCept.php │ │ └── UserGroupPolicyAndWeightedVotesCept.php ├── Support │ ├── AcceptanceTester.php │ ├── Data │ │ ├── dbdata-dbwv.sql │ │ ├── dbdata-yfj.sql │ │ ├── dbdata1.sql │ │ ├── logo.png │ │ └── openslides-autoupdate-fullload.json │ ├── Helper │ │ ├── Acceptance.php │ │ ├── AccessibilityValidator.php │ │ ├── AntragsgruenWebDriver.php │ │ ├── BasePage.php │ │ ├── Bootbox.php │ │ ├── ConfigurationChanger.php │ │ ├── DBTestBase.php │ │ ├── Download.php │ │ ├── Functional.php │ │ ├── HTMLValidator.php │ │ ├── OldHTMLValidator.php │ │ ├── TestApi.php │ │ └── TestBase.php │ ├── UnitTester.php │ └── _generated │ │ └── .gitignore ├── Unit.suite.yml ├── Unit │ ├── AdminMotionFilterFormTest.php │ ├── AffectedLinesFilterTest.php │ ├── AgendaSerializationTest.php │ ├── AgendaTest.php │ ├── AmendmentAffectedParagraphsTest.php │ ├── AmendmentInlineDiffTest.php │ ├── AmendmentLineNumberingTest.php │ ├── AmendmentNumberingTest.php │ ├── AmendmentParagraphMergerTest.php │ ├── AmendmentRewriterCheckTest.php │ ├── AmendmentRewriterPerformTest.php │ ├── AmendmentSectionFormatterTest.php │ ├── AmendmentSectionMergerTest.php │ ├── ArrayMatcherTest.php │ ├── CleanTranslationStringsTest.php │ ├── ConsultationFindMotionTest.php │ ├── ConsultationNextStatusStringTest.php │ ├── CssCompilerTest.php │ ├── DBTest.php │ ├── DateFunctionsTest.php │ ├── DiffRendererTest.php │ ├── DiffTest.php │ ├── HTML2PlainTextTest.php │ ├── HTML2TexTest.php │ ├── HTMLLiValuesTest.php │ ├── HTMLNormalizeTest.php │ ├── HTMLSectioningTest.php │ ├── HTMLToolsStripInsDelMarkersTest.php │ ├── HTMLToolsTrimHtmlTest.php │ ├── IDNTest.php │ ├── LineSplitTest.php │ ├── LineSplitterAddLineBreaksTest.php │ ├── MotionNumberingTest.php │ ├── MotionSectionMappingTest.php │ ├── MotionShowInlineAmendmentTest.php │ ├── MotionSortTest.php │ ├── MovingParagraphDetectorTest.php │ ├── OpenslidesClientTest.php │ ├── RoutingTest.php │ ├── StripAfterInsertedNewslinesTest.php │ ├── Text2HtmlTest.php │ ├── URLAbsolutizeTest.php │ ├── VideoSectionTest.php │ └── VotingTest.php ├── _bootstrap.php ├── _output │ └── .gitignore ├── _pages │ ├── AdminAdminConsultationsPage.php │ ├── AdminAmendmentPage.php │ ├── AdminAppearancePage.php │ ├── AdminConsultationPage.php │ ├── AdminIndexPage.php │ ├── AdminMotionListPage.php │ ├── AdminMotionPage.php │ ├── AdminMotionTypePage.php │ ├── AdminTranslationPage.php │ ├── AdminUsersPage.php │ ├── AmendmentCreatePage.php │ ├── AmendmentEditPage.php │ ├── AmendmentPage.php │ ├── ConsultationHomePage.php │ ├── ContentPage.php │ ├── EmailChangePage.php │ ├── LoginPage.php │ ├── ManagerStartPage.php │ ├── MotionCreatePage.php │ ├── MotionEditPage.php │ ├── MotionPage.php │ ├── PasswordRecoveryPage.php │ ├── SiteHomePage.php │ ├── VotingAdminPage.php │ └── VotingResultsPage.php ├── config │ ├── 2fa.secret │ ├── AntragsgruenSetupDB.php │ ├── acceptance.php │ ├── config.php │ ├── functional.php │ └── unit.php ├── phpmd │ ├── codesize.xml │ ├── naming.xml │ └── unusedcode.xml └── start_debug_server.sh ├── tsconfig.json ├── views ├── .htaccess ├── admin │ ├── agenda │ │ ├── agenda.vue.php │ │ └── index.php │ ├── amendment │ │ ├── _update_voting.php │ │ ├── ods_list.php │ │ ├── ods_list_short.php │ │ ├── openslides_list.php │ │ ├── pdf_list.php │ │ ├── update.php │ │ └── xlsx_list.php │ ├── index │ │ ├── _consultation_tags.php │ │ ├── appearance.php │ │ ├── consultation_settings.php │ │ ├── index.php │ │ ├── index_updates.php │ │ ├── openslides2_user_list.php │ │ ├── site_consultations.php │ │ ├── site_deleted.php │ │ ├── theming.php │ │ ├── translation.php │ │ ├── translation_motion_type.php │ │ └── uploaded_files.php │ ├── motion-list │ │ ├── _list_all_export.php │ │ ├── _list_all_item_amendment.php │ │ ├── _list_all_item_motion.php │ │ ├── _list_all_status.php │ │ ├── _responsibility_dropdown.php │ │ ├── list_all.php │ │ ├── motion_list.php │ │ ├── ods_list.php │ │ ├── ods_list_all.php │ │ ├── openslides1_list.php │ │ ├── openslides2_list.php │ │ └── xlsx_comments.php │ ├── motion-type │ │ ├── _amendments_only_motions.php │ │ ├── _deadline_row.php │ │ ├── _deadlines.php │ │ ├── _initiator.php │ │ ├── _names.php │ │ ├── _pdf.php │ │ ├── _policy.php │ │ ├── _sections.php │ │ ├── create.php │ │ ├── deleted.php │ │ └── type.php │ ├── motion │ │ ├── _update_protocol.php │ │ ├── _update_supporter.php │ │ ├── _update_voting.php │ │ ├── move.php │ │ ├── moved_other_consultation.php │ │ └── update.php │ ├── proposed-procedure │ │ ├── _functions_dropdown.php │ │ ├── _index_comment.php │ │ ├── _index_content.php │ │ ├── _status_icons.php │ │ ├── _switch_dropdown.php │ │ ├── index.php │ │ └── ods.php │ └── users │ │ ├── _group_edit.vue.php │ │ ├── _organisation_edit.vue.php │ │ ├── _user_edit.vue.php │ │ ├── _users_add_accounts.php │ │ ├── _users_screening.php │ │ ├── index.php │ │ └── users.vue.php ├── amendment │ ├── LayoutHelper.php │ ├── _merge_step1.php │ ├── _merge_step2.php │ ├── _merge_step3.php │ ├── _set_proposed_procedure.php │ ├── _view_amendmentdata.php │ ├── _view_comments.php │ ├── _view_sidebar.php │ ├── _view_text.php │ ├── ajax_diff.php │ ├── ajax_rewrite_collisions.php │ ├── create_confirm.php │ ├── create_done.php │ ├── edit_done.php │ ├── edit_form.php │ ├── edit_proposed_change.php │ ├── merge_done.php │ ├── merge_err_collision.php │ ├── merge_with_collisions.php │ ├── merge_without_collisions.php │ ├── pdf_collection_html2pdf.php │ ├── pdf_collection_tcpdf.php │ ├── pdf_collection_tex.php │ ├── rest_get.php │ ├── view.php │ └── withdraw.php ├── consultation │ ├── LayoutHelper.php │ ├── _debug_time_bar.php │ ├── _index_phases_progress.php │ ├── _index_private_comment_list.php │ ├── _index_resolutions.php │ ├── _index_welcome_content.php │ ├── _proposed_procedure_content.php │ ├── activity_log.php │ ├── collecting.php │ ├── feeds.php │ ├── index.php │ ├── index_layout_agenda.php │ ├── index_layout_discussion_tags.php │ ├── index_layout_std.php │ ├── index_layout_tags.php │ ├── motions.php │ ├── proposed_procedure.php │ ├── proposed_procedure_rest_get.php │ ├── resolutions.php │ ├── rest_get.php │ ├── rest_site_get.php │ ├── search_results.php │ ├── sidebar.php │ ├── tag_motion_list.php │ ├── todo.php │ └── user_notifications.php ├── createsiteWizard │ ├── amend_deadline.php │ ├── amend_screening.php │ ├── amend_single_para.php │ ├── amend_who.php │ ├── amendments.php │ ├── application_type.php │ ├── comments.php │ ├── functionality.php │ ├── index.php │ ├── motion_deadline.php │ ├── motion_screening.php │ ├── motion_who.php │ ├── opennow.php │ ├── single_motion.php │ ├── sitedata_consultation.php │ ├── sitedata_singlesite.php │ ├── sitedata_subdomain.php │ ├── speech_login.php │ ├── speech_quotas.php │ └── supporters.php ├── errors │ ├── consultation_access.php │ └── error.php ├── installation │ ├── create_site.php │ ├── done.php │ └── init_db.php ├── layouts │ ├── column1.php │ ├── column2.php │ ├── email.php │ └── main.php ├── manager │ └── siteconfig.php ├── merging │ ├── _confirm_resolution_voting.php │ ├── _merging_paragraph.php │ ├── _merging_paragraph_status.vue.php │ ├── _merging_section.php │ ├── _merging_section_other.php │ ├── _merging_section_title.php │ ├── _public_version_content.php │ ├── confirm.php │ ├── done.php │ ├── init.php │ ├── init_pdf.php │ ├── merging.php │ ├── merging_draft_pdf.php │ └── public_version.php ├── motion │ ├── LayoutHelper.php │ ├── _set_proposed_procedure.php │ ├── _support_block.php │ ├── _view_change_section.php │ ├── _view_motiondata.php │ ├── _view_paragraph_private_note.php │ ├── _view_prevnext.php │ ├── _view_sidebar.php │ ├── _view_text.php │ ├── create_confirm.php │ ├── create_done.php │ ├── create_done_amendments_only.php │ ├── create_select_statutes.php │ ├── edit_done.php │ ├── edit_form.php │ ├── edit_proposed_change.php │ ├── pdf_amend_collection_html2pdf.php │ ├── pdf_amend_collection_tcpdf.php │ ├── pdf_amend_collection_tex.php │ ├── pdf_collection_html2pdf.php │ ├── pdf_collection_tcpdf.php │ ├── pdf_collection_tex.php │ ├── pdf_embed.php │ ├── pdf_embedded_amendments_tcpdf.php │ ├── pdf_full_html2pdf.php │ ├── pdf_full_tcpdf.php │ ├── pdf_full_tex.php │ ├── plain_html.php │ ├── rest_get.php │ ├── showEditorialTextSection.php │ ├── showSimpleTextSection.php │ ├── showTitleSection.php │ ├── view.php │ ├── view_changes.php │ ├── view_changes_odt.php │ ├── view_not_visible.php │ └── withdraw.php ├── pages │ ├── _content_files.php │ ├── _documents_sort.php │ ├── browse-images.php │ ├── contentpage.php │ ├── css.php │ ├── documents.php │ ├── imprint_multisite.php │ └── list.php ├── pdfLayouts │ ├── BDK.php │ ├── BDKPDF.php │ ├── ByLDK.php │ ├── ByLDKPDF.php │ ├── DBJR.php │ ├── DBJRPDF.php │ ├── IHtmlToPdfLayout.php │ ├── IPDFLayout.php │ ├── IPdfWriter.php │ └── PdfLayoutDescription.php ├── shared │ ├── _comment_form.php │ ├── _proposed_procedure_feedback_form.php │ ├── _proposed_procedure_feedback_status.php │ ├── _proposed_procedure_log.php │ ├── _proposed_procedure_saving.php │ ├── _proposed_procedure_status_details.php │ ├── _proposed_procedure_tags.php │ ├── _proposed_procedure_versions.php │ ├── _proposed_procedure_votings.php │ ├── _view_agree_to_proposal.php │ ├── comment.php │ ├── create_initiator.php │ ├── datetime_selector.vue.php │ ├── edit_tags.php │ ├── fullscreen-imotion.vue.php │ ├── fullscreen-projector.vue.php │ ├── selectize.vue.php │ ├── translate.php │ └── usergroup_selector.php ├── speech │ ├── LayoutHelper.php │ ├── _footer_widget.php │ ├── _index_speech.php │ ├── _speech_common_mixins.vue.php │ ├── admin-singlepage.php │ ├── admin-subqueue.vue.php │ ├── admin-widget.vue.php │ ├── index-singlepage.php │ ├── user-footer-widget.vue.php │ ├── user-full-list-widget.vue.php │ ├── user-fullscreen-widget.vue.php │ └── user-inline-widget.vue.php ├── user │ ├── account_deleted.php │ ├── confirm_registration.php │ ├── email_blocklist.php │ ├── login-2fa-force-registration.php │ ├── login-2fa.php │ ├── login-force-pwd-change.php │ ├── login.php │ ├── my_account.php │ ├── recovery.php │ ├── recovery_confirmed.php │ └── registration_confirmed.php └── voting │ ├── _index_voting.php │ ├── _policy-select.vue.php │ ├── _sidebar.php │ ├── _voting_common_mixins.vue.php │ ├── _voting_vote_list.vue.php │ ├── admin-download-results.php │ ├── admin-voting-sort.vue.php │ ├── admin-votings.php │ ├── admin-votings.vue.php │ ├── voting-block.vue.php │ ├── voting-results.php │ └── votings.php ├── web ├── .htaccess ├── assets │ ├── .gitignore │ └── .gitkeep ├── css │ ├── _base_layout.scss │ ├── _bootstrap.scss │ ├── _bootstrap_overwrites.scss │ ├── _consultation_motion_list.scss │ ├── _contentpage.scss │ ├── _elements.scss │ ├── _fontello.scss │ ├── _helpers.scss │ ├── _merging.scss │ ├── _mixins.scss │ ├── _motions.scss │ ├── _projector.scss │ ├── _proposed_procedure.scss │ ├── _sidebar.scss │ ├── _speech_lists.scss │ ├── _styles.scss │ ├── _user_pages.scss │ ├── _variables.scss │ ├── _voting.scss │ ├── _wizard.scss │ ├── backend.css │ ├── backend.css.map │ ├── backend.scss │ ├── bootstrap-3.4.3-sass │ │ ├── _bootstrap-compass.scss │ │ ├── _bootstrap-mincer.scss │ │ ├── _bootstrap-sprockets.scss │ │ ├── _bootstrap.scss │ │ └── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ ├── bootstrap-datetimepicker.min.css │ ├── formwizard.css │ ├── layout-classic.css │ ├── layout-classic.css.map │ ├── layout-classic.scss │ ├── layout-dbjr.css │ ├── layout-dbjr.css.map │ ├── layout-dbjr.scss │ ├── manager.css │ ├── manager.css.map │ ├── manager.scss │ ├── selectize.bootstrap3.css │ ├── update.css │ ├── update.css.map │ └── update.scss ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── fonts │ ├── BitstreamVeraSansMono │ │ ├── Bitstream Vera License.txt │ │ ├── VeraMono-Bold-Italic-webfont.woff │ │ ├── VeraMono-Bold-webfont.woff │ │ ├── VeraMono-Italic-webfont.woff │ │ ├── VeraMono-webfont.woff │ │ └── _verasans.scss │ ├── OpenSans │ │ ├── README.md │ │ ├── bower.json │ │ ├── fonts │ │ │ ├── Bold │ │ │ │ ├── OpenSans-Bold.woff │ │ │ │ └── OpenSans-Bold.woff2 │ │ │ ├── BoldItalic │ │ │ │ ├── OpenSans-BoldItalic.woff │ │ │ │ └── OpenSans-BoldItalic.woff2 │ │ │ ├── ExtraBold │ │ │ │ ├── OpenSans-ExtraBold.woff │ │ │ │ └── OpenSans-ExtraBold.woff2 │ │ │ ├── ExtraBoldItalic │ │ │ │ ├── OpenSans-ExtraBoldItalic.woff │ │ │ │ └── OpenSans-ExtraBoldItalic.woff2 │ │ │ ├── Italic │ │ │ │ ├── OpenSans-Italic.woff │ │ │ │ └── OpenSans-Italic.woff2 │ │ │ ├── Light │ │ │ │ ├── OpenSans-Light.woff │ │ │ │ └── OpenSans-Light.woff2 │ │ │ ├── LightItalic │ │ │ │ ├── OpenSans-LightItalic.woff │ │ │ │ └── OpenSans-LightItalic.woff2 │ │ │ ├── Regular │ │ │ │ ├── OpenSans-Regular.woff │ │ │ │ └── OpenSans-Regular.woff2 │ │ │ ├── Semibold │ │ │ │ ├── OpenSans-Semibold.woff │ │ │ │ └── OpenSans-Semibold.woff2 │ │ │ └── SemiboldItalic │ │ │ │ ├── OpenSans-SemiboldItalic.woff │ │ │ │ └── OpenSans-SemiboldItalic.woff2 │ │ ├── index.html │ │ ├── open-sans.css │ │ ├── open-sans.less │ │ ├── open-sans.scss │ │ └── sass │ │ │ ├── .gitignore │ │ │ ├── _Bold.scss │ │ │ ├── _BoldItalic.scss │ │ │ ├── _ExtraBold.scss │ │ │ ├── _ExtraBoldItalic.scss │ │ │ ├── _Italic.scss │ │ │ ├── _Light.scss │ │ │ ├── _LightItalic.scss │ │ │ ├── _Regular.scss │ │ │ ├── _Semibold.scss │ │ │ ├── _SemiboldItalic.scss │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ └── open-sans.scss │ ├── firasans │ │ ├── FiraSans-Light.woff │ │ ├── FiraSans-Light.woff2 │ │ ├── FiraSans-LightItalic.woff │ │ ├── FiraSans-LightItalic.woff2 │ │ ├── FiraSans-Medium.woff │ │ ├── FiraSans-Medium.woff2 │ │ ├── FiraSans-MediumItalic.woff │ │ ├── FiraSans-MediumItalic.woff2 │ │ └── _firasans.scss │ ├── fontello.woff │ ├── fontello.woff2 │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── aa-new-icon.svg │ ├── backgroundGradient.png │ ├── layout-preview-dbjr.png │ ├── layout-preview-std.png │ ├── logo.png │ ├── pdf_preview_bdk.png │ ├── pdf_preview_byldk.png │ ├── pdf_preview_dbjr.png │ ├── pdf_preview_latex_bdk.png │ └── wallpaper.jpg ├── index-production.php ├── index.php ├── js │ ├── antragsgruen-ca.js │ ├── antragsgruen-de.js │ ├── antragsgruen-en-gb.js │ ├── antragsgruen-en.js │ ├── antragsgruen-fr.js │ ├── antragsgruen-live-events.js │ ├── antragsgruen-me.js │ ├── antragsgruen-nl.js │ ├── bootstrap-datetimepicker.js │ ├── build │ │ ├── Antragsgruen.js │ │ ├── Antragsgruen.js.map │ │ ├── antragsgruen-ca.min.js │ │ ├── antragsgruen-ca.min.js.map │ │ ├── antragsgruen-de.min.js │ │ ├── antragsgruen-de.min.js.map │ │ ├── antragsgruen-en-gb.min.js │ │ ├── antragsgruen-en-gb.min.js.map │ │ ├── antragsgruen-en.min.js │ │ ├── antragsgruen-en.min.js.map │ │ ├── antragsgruen-fr.min.js │ │ ├── antragsgruen-fr.min.js.map │ │ ├── antragsgruen-me.min.js │ │ ├── antragsgruen-me.min.js.map │ │ ├── antragsgruen-nl.min.js │ │ ├── antragsgruen-nl.min.js.map │ │ ├── antragsgruen.min.js │ │ ├── antragsgruen.min.js.map │ │ ├── backend │ │ │ ├── AdminIndex.js │ │ │ ├── AdminIndex.js.map │ │ │ ├── AgendaEdit.js.map │ │ │ ├── AgendaEditVue.js │ │ │ ├── AgendaEditVue.js.map │ │ │ ├── AmendmentEdit.js │ │ │ ├── AmendmentEdit.js.map │ │ │ ├── AppearanceEdit.js │ │ │ ├── AppearanceEdit.js.map │ │ │ ├── ChangeProposedProcedure.js │ │ │ ├── ChangeProposedProcedure.js.map │ │ │ ├── ConsultationCreate.js │ │ │ ├── ConsultationCreate.js.map │ │ │ ├── ConsultationSettings.js │ │ │ ├── ConsultationSettings.js.map │ │ │ ├── Documents.js │ │ │ ├── Documents.js.map │ │ │ ├── MemberPetitionRespond.js │ │ │ ├── MemberPetitionRespond.js.map │ │ │ ├── MotionEdit.js │ │ │ ├── MotionEdit.js.map │ │ │ ├── MotionList.js │ │ │ ├── MotionList.js.map │ │ │ ├── MotionSupporterEdit.js │ │ │ ├── MotionSupporterEdit.js.map │ │ │ ├── MotionTypeCreate.js │ │ │ ├── MotionTypeCreate.js.map │ │ │ ├── MotionTypeEdit.js │ │ │ ├── MotionTypeEdit.js.map │ │ │ ├── MoveMotion.js │ │ │ ├── MoveMotion.js.map │ │ │ ├── ProposedChangeEdit.js │ │ │ ├── ProposedChangeEdit.js.map │ │ │ ├── ProposedProcedureExport.js │ │ │ ├── ProposedProcedureExport.js.map │ │ │ ├── ProposedProcedureOverview.js │ │ │ ├── ProposedProcedureOverview.js.map │ │ │ ├── ResponsibilitySetter.js │ │ │ ├── ResponsibilitySetter.js.map │ │ │ ├── SiteAccess.js │ │ │ ├── SiteAccess.js.map │ │ │ ├── SpeechListEdit.js │ │ │ ├── SpeechListEdit.js.map │ │ │ ├── Theming.js │ │ │ ├── Theming.js.map │ │ │ ├── UserAdmin.js │ │ │ ├── UserAdmin.js.map │ │ │ ├── UserAdminCreate.js │ │ │ ├── UserAdminCreate.js.map │ │ │ ├── UserList.js │ │ │ ├── UserList.js.map │ │ │ ├── VotingAdmin.js │ │ │ └── VotingAdmin.js.map │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-datetimepicker.min.js.map │ │ ├── frontend │ │ │ ├── AccountEdit.js │ │ │ ├── AccountEdit.js.map │ │ │ ├── AmendmentEdit.js │ │ │ ├── AmendmentEdit.js.map │ │ │ ├── AmendmentShow.js │ │ │ ├── AmendmentShow.js.map │ │ │ ├── Comments.js │ │ │ ├── Comments.js.map │ │ │ ├── ConsultationDiscussionTags.js │ │ │ ├── ConsultationDiscussionTags.js.map │ │ │ ├── ContentPageCreate.js │ │ │ ├── ContentPageCreate.js.map │ │ │ ├── ContentPageEdit.js │ │ │ ├── ContentPageEdit.js.map │ │ │ ├── CopyUrlToClipboard.js │ │ │ ├── CopyUrlToClipboard.js.map │ │ │ ├── CurrentSpeechList.js │ │ │ ├── CurrentSpeechList.js.map │ │ │ ├── DeadlineDebugBar.js │ │ │ ├── DeadlineDebugBar.js.map │ │ │ ├── EditorialEdit.js │ │ │ ├── EditorialEdit.js.map │ │ │ ├── FullscreenToggle.js │ │ │ ├── FullscreenToggle.js.map │ │ │ ├── InitiatorForm.js │ │ │ ├── InitiatorForm.js.map │ │ │ ├── LineNumberHighlighting.js │ │ │ ├── LineNumberHighlighting.js.map │ │ │ ├── LoginForm.js │ │ │ ├── LoginForm.js.map │ │ │ ├── MergeInit.js │ │ │ ├── MergeInit.js.map │ │ │ ├── MergeSingleAmendment.js │ │ │ ├── MergeSingleAmendment.js.map │ │ │ ├── MotionCreateConfirm.js │ │ │ ├── MotionCreateConfirm.js.map │ │ │ ├── MotionEditForm.js │ │ │ ├── MotionEditForm.js.map │ │ │ ├── MotionListPrivateComments.js │ │ │ ├── MotionListPrivateComments.js.map │ │ │ ├── MotionMergeAmendments.js │ │ │ ├── MotionMergeAmendments.js.map │ │ │ ├── MotionMergeAmendmentsConfirm.js │ │ │ ├── MotionMergeAmendmentsConfirm.js.map │ │ │ ├── MotionMergeAmendmentsPublic.js │ │ │ ├── MotionMergeAmendmentsPublic.js.map │ │ │ ├── MotionShow.js │ │ │ ├── MotionShow.js.map │ │ │ ├── MotionSupportBlock.js │ │ │ ├── MotionSupportBlock.js.map │ │ │ ├── ProposedProcedureOverview.js │ │ │ ├── ProposedProcedureOverview.js.map │ │ │ ├── UserNotificationsForm.js │ │ │ ├── UserNotificationsForm.js.map │ │ │ ├── VotingBlock.js │ │ │ └── VotingBlock.js.map │ │ ├── installation │ │ │ ├── InitDb.js │ │ │ ├── InitDb.js.map │ │ │ ├── InitSite.js │ │ │ └── InitSite.js.map │ │ ├── manager │ │ │ ├── CreateSite.js │ │ │ ├── CreateSite.js.map │ │ │ ├── SiteConfig.js │ │ │ ├── SiteConfig.js.map │ │ │ ├── SiteCreateWizard.js │ │ │ └── SiteCreateWizard.js.map │ │ ├── pdfjs-viewer.min.js │ │ └── shared │ │ │ ├── AmendmentEditSinglePara.js │ │ │ ├── AmendmentEditSinglePara.js.map │ │ │ ├── AntragsgruenEditor.js │ │ │ ├── AntragsgruenEditor.js.map │ │ │ ├── DraftSavingEngine.js │ │ │ ├── DraftSavingEngine.js.map │ │ │ ├── IMotionShow.js │ │ │ ├── IMotionShow.js.map │ │ │ ├── MotionMergeChangeActions.js │ │ │ ├── MotionMergeChangeActions.js.map │ │ │ ├── PolicySetter.js │ │ │ ├── PolicySetter.js.map │ │ │ ├── SiteCreateWizard.js │ │ │ └── SiteCreateWizard.js.map │ ├── ckeditor.abbr │ │ ├── images │ │ │ └── icon.png │ │ └── plugin.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── de.js │ │ │ └── en.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.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 │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── autocolorize │ │ │ │ ├── adminTyped1.png │ │ │ │ ├── adminTyped2.png │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ └── en.js │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── styles │ │ │ │ │ └── dialog.css │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image2 │ │ │ │ └── dialogs │ │ │ │ │ └── image2.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── listitemstyle │ │ │ │ ├── dialogs │ │ │ │ │ ├── listitemstyle.js │ │ │ │ │ └── liststyle.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ └── en.js │ │ │ │ └── plugin.js │ │ │ ├── lite │ │ │ │ ├── LICENSE.md │ │ │ │ ├── css │ │ │ │ │ ├── lite.css │ │ │ │ │ └── opentip.css │ │ │ │ ├── js │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── lite-interface.js │ │ │ │ └── readme.html │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastetools │ │ │ │ └── filter │ │ │ │ │ ├── common.js │ │ │ │ │ └── image.js │ │ │ ├── preview │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── preview.html │ │ │ │ └── styles │ │ │ │ │ └── screen.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.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 │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.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 │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── widget │ │ │ │ └── images │ │ │ │ └── handle.png │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.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 │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── colResizable-1.6.min.js │ ├── jquery.isonscreen.js │ ├── jscolor.js │ ├── pdfjs-viewer │ │ ├── images │ │ │ ├── annotation-check.svg │ │ │ ├── annotation-comment.svg │ │ │ ├── annotation-help.svg │ │ │ ├── annotation-insert.svg │ │ │ ├── annotation-key.svg │ │ │ ├── annotation-newparagraph.svg │ │ │ ├── annotation-noicon.svg │ │ │ ├── annotation-note.svg │ │ │ ├── annotation-paragraph.svg │ │ │ ├── findbarButton-next.svg │ │ │ ├── findbarButton-previous.svg │ │ │ ├── loading-dark.svg │ │ │ ├── loading-icon.gif │ │ │ ├── loading.svg │ │ │ ├── secondaryToolbarButton-documentProperties.svg │ │ │ ├── secondaryToolbarButton-firstPage.svg │ │ │ ├── secondaryToolbarButton-handTool.svg │ │ │ ├── secondaryToolbarButton-lastPage.svg │ │ │ ├── secondaryToolbarButton-rotateCcw.svg │ │ │ ├── secondaryToolbarButton-rotateCw.svg │ │ │ ├── secondaryToolbarButton-scrollHorizontal.svg │ │ │ ├── secondaryToolbarButton-scrollPage.svg │ │ │ ├── secondaryToolbarButton-scrollVertical.svg │ │ │ ├── secondaryToolbarButton-scrollWrapped.svg │ │ │ ├── secondaryToolbarButton-selectTool.svg │ │ │ ├── secondaryToolbarButton-spreadEven.svg │ │ │ ├── secondaryToolbarButton-spreadNone.svg │ │ │ ├── secondaryToolbarButton-spreadOdd.svg │ │ │ ├── shadow.png │ │ │ ├── toolbarButton-bookmark.svg │ │ │ ├── toolbarButton-currentOutlineItem.svg │ │ │ ├── toolbarButton-download.svg │ │ │ ├── toolbarButton-editorFreeText.svg │ │ │ ├── toolbarButton-editorInk.svg │ │ │ ├── toolbarButton-menuArrow.svg │ │ │ ├── toolbarButton-openFile.svg │ │ │ ├── toolbarButton-pageDown.svg │ │ │ ├── toolbarButton-pageUp.svg │ │ │ ├── toolbarButton-presentationMode.svg │ │ │ ├── toolbarButton-print.svg │ │ │ ├── toolbarButton-search.svg │ │ │ ├── toolbarButton-secondaryToolbarToggle.svg │ │ │ ├── toolbarButton-sidebarToggle.svg │ │ │ ├── toolbarButton-viewAttachments.svg │ │ │ ├── toolbarButton-viewLayers.svg │ │ │ ├── toolbarButton-viewOutline.svg │ │ │ ├── toolbarButton-viewThumbnail.svg │ │ │ ├── toolbarButton-zoomIn.svg │ │ │ ├── toolbarButton-zoomOut.svg │ │ │ ├── treeitem-collapsed.svg │ │ │ └── treeitem-expanded.svg │ │ ├── locale │ │ │ ├── ach │ │ │ │ └── viewer.properties │ │ │ ├── af │ │ │ │ └── viewer.properties │ │ │ ├── an │ │ │ │ └── viewer.properties │ │ │ ├── ar │ │ │ │ └── viewer.properties │ │ │ ├── ast │ │ │ │ └── viewer.properties │ │ │ ├── az │ │ │ │ └── viewer.properties │ │ │ ├── be │ │ │ │ └── viewer.properties │ │ │ ├── bg │ │ │ │ └── viewer.properties │ │ │ ├── bn │ │ │ │ └── viewer.properties │ │ │ ├── bo │ │ │ │ └── viewer.properties │ │ │ ├── br │ │ │ │ └── viewer.properties │ │ │ ├── brx │ │ │ │ └── viewer.properties │ │ │ ├── bs │ │ │ │ └── viewer.properties │ │ │ ├── ca │ │ │ │ └── viewer.properties │ │ │ ├── cak │ │ │ │ └── viewer.properties │ │ │ ├── ckb │ │ │ │ └── viewer.properties │ │ │ ├── cs │ │ │ │ └── viewer.properties │ │ │ ├── cy │ │ │ │ └── viewer.properties │ │ │ ├── da │ │ │ │ └── viewer.properties │ │ │ ├── de │ │ │ │ └── viewer.properties │ │ │ ├── dsb │ │ │ │ └── viewer.properties │ │ │ ├── el │ │ │ │ └── viewer.properties │ │ │ ├── en-CA │ │ │ │ └── viewer.properties │ │ │ ├── en-GB │ │ │ │ └── viewer.properties │ │ │ ├── en-US │ │ │ │ └── viewer.properties │ │ │ ├── eo │ │ │ │ └── viewer.properties │ │ │ ├── es-AR │ │ │ │ └── viewer.properties │ │ │ ├── es-CL │ │ │ │ └── viewer.properties │ │ │ ├── es-ES │ │ │ │ └── viewer.properties │ │ │ ├── es-MX │ │ │ │ └── viewer.properties │ │ │ ├── et │ │ │ │ └── viewer.properties │ │ │ ├── eu │ │ │ │ └── viewer.properties │ │ │ ├── fa │ │ │ │ └── viewer.properties │ │ │ ├── ff │ │ │ │ └── viewer.properties │ │ │ ├── fi │ │ │ │ └── viewer.properties │ │ │ ├── fr │ │ │ │ └── viewer.properties │ │ │ ├── fy-NL │ │ │ │ └── viewer.properties │ │ │ ├── ga-IE │ │ │ │ └── viewer.properties │ │ │ ├── gd │ │ │ │ └── viewer.properties │ │ │ ├── gl │ │ │ │ └── viewer.properties │ │ │ ├── gn │ │ │ │ └── viewer.properties │ │ │ ├── gu-IN │ │ │ │ └── viewer.properties │ │ │ ├── he │ │ │ │ └── viewer.properties │ │ │ ├── hi-IN │ │ │ │ └── viewer.properties │ │ │ ├── hr │ │ │ │ └── viewer.properties │ │ │ ├── hsb │ │ │ │ └── viewer.properties │ │ │ ├── hu │ │ │ │ └── viewer.properties │ │ │ ├── hy-AM │ │ │ │ └── viewer.properties │ │ │ ├── hye │ │ │ │ └── viewer.properties │ │ │ ├── ia │ │ │ │ └── viewer.properties │ │ │ ├── id │ │ │ │ └── viewer.properties │ │ │ ├── is │ │ │ │ └── viewer.properties │ │ │ ├── it │ │ │ │ └── viewer.properties │ │ │ ├── ja │ │ │ │ └── viewer.properties │ │ │ ├── ka │ │ │ │ └── viewer.properties │ │ │ ├── kab │ │ │ │ └── viewer.properties │ │ │ ├── kk │ │ │ │ └── viewer.properties │ │ │ ├── km │ │ │ │ └── viewer.properties │ │ │ ├── kn │ │ │ │ └── viewer.properties │ │ │ ├── ko │ │ │ │ └── viewer.properties │ │ │ ├── lij │ │ │ │ └── viewer.properties │ │ │ ├── lo │ │ │ │ └── viewer.properties │ │ │ ├── locale.properties │ │ │ ├── lt │ │ │ │ └── viewer.properties │ │ │ ├── ltg │ │ │ │ └── viewer.properties │ │ │ ├── lv │ │ │ │ └── viewer.properties │ │ │ ├── meh │ │ │ │ └── viewer.properties │ │ │ ├── mk │ │ │ │ └── viewer.properties │ │ │ ├── mr │ │ │ │ └── viewer.properties │ │ │ ├── ms │ │ │ │ └── viewer.properties │ │ │ ├── my │ │ │ │ └── viewer.properties │ │ │ ├── nb-NO │ │ │ │ └── viewer.properties │ │ │ ├── ne-NP │ │ │ │ └── viewer.properties │ │ │ ├── nl │ │ │ │ └── viewer.properties │ │ │ ├── nn-NO │ │ │ │ └── viewer.properties │ │ │ ├── oc │ │ │ │ └── viewer.properties │ │ │ ├── pa-IN │ │ │ │ └── viewer.properties │ │ │ ├── pl │ │ │ │ └── viewer.properties │ │ │ ├── pt-BR │ │ │ │ └── viewer.properties │ │ │ ├── pt-PT │ │ │ │ └── viewer.properties │ │ │ ├── rm │ │ │ │ └── viewer.properties │ │ │ ├── ro │ │ │ │ └── viewer.properties │ │ │ ├── ru │ │ │ │ └── viewer.properties │ │ │ ├── scn │ │ │ │ └── viewer.properties │ │ │ ├── si │ │ │ │ └── viewer.properties │ │ │ ├── sk │ │ │ │ └── viewer.properties │ │ │ ├── sl │ │ │ │ └── viewer.properties │ │ │ ├── son │ │ │ │ └── viewer.properties │ │ │ ├── sq │ │ │ │ └── viewer.properties │ │ │ ├── sr │ │ │ │ └── viewer.properties │ │ │ ├── sv-SE │ │ │ │ └── viewer.properties │ │ │ ├── szl │ │ │ │ └── viewer.properties │ │ │ ├── ta │ │ │ │ └── viewer.properties │ │ │ ├── te │ │ │ │ └── viewer.properties │ │ │ ├── th │ │ │ │ └── viewer.properties │ │ │ ├── tl │ │ │ │ └── viewer.properties │ │ │ ├── tr │ │ │ │ └── viewer.properties │ │ │ ├── trs │ │ │ │ └── viewer.properties │ │ │ ├── uk │ │ │ │ └── viewer.properties │ │ │ ├── ur │ │ │ │ └── viewer.properties │ │ │ ├── uz │ │ │ │ └── viewer.properties │ │ │ ├── vi │ │ │ │ └── viewer.properties │ │ │ ├── wo │ │ │ │ └── viewer.properties │ │ │ ├── xh │ │ │ │ └── viewer.properties │ │ │ ├── zh-CN │ │ │ │ └── viewer.properties │ │ │ └── zh-TW │ │ │ │ └── viewer.properties │ │ ├── pdf.viewer.js │ │ ├── pdf.worker.js │ │ ├── viewer.css │ │ └── viewer.html │ └── scrollintoview.js ├── npm │ └── .gitignore ├── robots.txt ├── typescript │ ├── Antragsgruen.ts │ ├── backend │ │ ├── AdminIndex.ts │ │ ├── AgendaEditVue.ts │ │ ├── AmendmentEdit.ts │ │ ├── AppearanceEdit.ts │ │ ├── ChangeProposedProcedure.ts │ │ ├── ConsultationCreate.ts │ │ ├── ConsultationSettings.ts │ │ ├── Documents.ts │ │ ├── MemberPetitionRespond.ts │ │ ├── MotionEdit.ts │ │ ├── MotionList.ts │ │ ├── MotionSupporterEdit.ts │ │ ├── MotionTypeCreate.ts │ │ ├── MotionTypeEdit.ts │ │ ├── MoveMotion.ts │ │ ├── ProposedChangeEdit.ts │ │ ├── ProposedProcedureExport.ts │ │ ├── ProposedProcedureOverview.ts │ │ ├── ResponsibilitySetter.ts │ │ ├── SiteAccess.ts │ │ ├── SpeechListEdit.ts │ │ ├── Theming.ts │ │ ├── UserAdmin.ts │ │ ├── UserAdminCreate.ts │ │ ├── UserList.ts │ │ └── VotingAdmin.ts │ ├── frontend │ │ ├── AccountEdit.ts │ │ ├── AmendmentEdit.ts │ │ ├── AmendmentShow.ts │ │ ├── Comments.ts │ │ ├── ConsultationDiscussionTags.ts │ │ ├── ContentPageCreate.ts │ │ ├── ContentPageEdit.ts │ │ ├── CopyUrlToClipboard.ts │ │ ├── CurrentSpeechList.ts │ │ ├── DeadlineDebugBar.ts │ │ ├── EditorialEdit.ts │ │ ├── FullscreenToggle.ts │ │ ├── InitiatorForm.ts │ │ ├── LineNumberHighlighting.ts │ │ ├── LoginForm.ts │ │ ├── MergeInit.ts │ │ ├── MergeSingleAmendment.ts │ │ ├── MotionCreateConfirm.ts │ │ ├── MotionEditForm.ts │ │ ├── MotionListPrivateComments.ts │ │ ├── MotionMergeAmendments.ts │ │ ├── MotionMergeAmendmentsConfirm.ts │ │ ├── MotionMergeAmendmentsPublic.ts │ │ ├── MotionShow.ts │ │ ├── MotionSupportBlock.ts │ │ ├── ProposedProcedureOverview.ts │ │ ├── UserNotificationsForm.ts │ │ └── VotingBlock.ts │ ├── installation │ │ ├── InitDb.ts │ │ └── InitSite.ts │ ├── manager │ │ ├── CreateSite.ts │ │ └── SiteConfig.ts │ ├── shared │ │ ├── AmendmentEditSinglePara.ts │ │ ├── AntragsgruenEditor.ts │ │ ├── DraftSavingEngine.ts │ │ ├── IMotionShow.ts │ │ ├── MotionMergeChangeActions.ts │ │ ├── PolicySetter.ts │ │ └── SiteCreateWizard.ts │ └── typings │ │ ├── colresizable │ │ └── index.d.ts │ │ ├── jquery-typings.d.ts │ │ ├── nestedSortable │ │ └── index.d.ts │ │ └── scrollintoview │ │ └── index.d.ts └── update.php └── yii /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.github/workflows/node-checks.yml -------------------------------------------------------------------------------- /.github/workflows/php-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.github/workflows/php-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/.htaccess -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/AUTHORS -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/History.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /assets/Arvo/.DS_Store: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/Arvo/Arvo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/Arvo/Arvo-Italic.ttf -------------------------------------------------------------------------------- /assets/Arvo/Arvo-Regular_v104.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/Arvo/Arvo-Regular_v104.ttf -------------------------------------------------------------------------------- /assets/Arvo/Arvo_Gruen_1004.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/Arvo/Arvo_Gruen_1004.otf -------------------------------------------------------------------------------- /assets/Arvo/_Arvo-Copyright.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/Arvo/_Arvo-Copyright.rtf -------------------------------------------------------------------------------- /assets/OpenOffice-Template-Std.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/OpenOffice-Template-Std.odt -------------------------------------------------------------------------------- /assets/OpenOffice-Template-ods/Configurations2/accelerator/current.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/OpenOffice-Template-ods/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/OpenOffice-Template-ods/meta.xml -------------------------------------------------------------------------------- /assets/OpenOffice-Template-ods/mimetype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/OpenOffice-Template-ods/mimetype -------------------------------------------------------------------------------- /assets/OpenOffice-Template-odt/Configurations2/accelerator/current.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/OpenOffice-Template-odt/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/OpenOffice-Template-odt/meta.xml -------------------------------------------------------------------------------- /assets/OpenOffice-Template-odt/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /assets/OpenOffice-Template.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/OpenOffice-Template.ods -------------------------------------------------------------------------------- /assets/PT-Sans/PTS55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/PT-Sans/PTS55F.ttf -------------------------------------------------------------------------------- /assets/PT-Sans/PTS56F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/PT-Sans/PTS56F.ttf -------------------------------------------------------------------------------- /assets/PT-Sans/PTS75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/PT-Sans/PTS75F.ttf -------------------------------------------------------------------------------- /assets/PT-Sans/PTS76F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/PT-Sans/PTS76F.ttf -------------------------------------------------------------------------------- /assets/db/cleanup-deleted-sites.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/db/cleanup-deleted-sites.sql -------------------------------------------------------------------------------- /assets/db/copy-site.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/db/copy-site.sql -------------------------------------------------------------------------------- /assets/db/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/db/create.sql -------------------------------------------------------------------------------- /assets/db/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/db/data.sql -------------------------------------------------------------------------------- /assets/db/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/db/delete.sql -------------------------------------------------------------------------------- /assets/html2pdf/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/html2pdf/application.css -------------------------------------------------------------------------------- /assets/html2pdf/application.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/html2pdf/application.css.map -------------------------------------------------------------------------------- /assets/html2pdf/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/html2pdf/application.html -------------------------------------------------------------------------------- /assets/html2pdf/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/html2pdf/application.scss -------------------------------------------------------------------------------- /assets/phpstan-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/assets/phpstan-helper.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/codeception.yml -------------------------------------------------------------------------------- /commands/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /commands/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/AdminController.php -------------------------------------------------------------------------------- /commands/BackgroundJobController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/BackgroundJobController.php -------------------------------------------------------------------------------- /commands/BugfixController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/BugfixController.php -------------------------------------------------------------------------------- /commands/DatabaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/DatabaseController.php -------------------------------------------------------------------------------- /commands/EmailBlocklistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/EmailBlocklistController.php -------------------------------------------------------------------------------- /commands/LiveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/LiveController.php -------------------------------------------------------------------------------- /commands/MotionCloneController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/MotionCloneController.php -------------------------------------------------------------------------------- /commands/PerformanceTestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/PerformanceTestController.php -------------------------------------------------------------------------------- /commands/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/commands/UserController.php -------------------------------------------------------------------------------- /components/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /components/AntiSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/AntiSpam.php -------------------------------------------------------------------------------- /components/BackgroundJobProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/BackgroundJobProcessor.php -------------------------------------------------------------------------------- /components/BackgroundJobScheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/BackgroundJobScheduler.php -------------------------------------------------------------------------------- /components/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/Captcha.php -------------------------------------------------------------------------------- /components/CookieUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/CookieUser.php -------------------------------------------------------------------------------- /components/CssCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/CssCompiler.php -------------------------------------------------------------------------------- /components/DateTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/DateTools.php -------------------------------------------------------------------------------- /components/EmailNotifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/EmailNotifications.php -------------------------------------------------------------------------------- /components/HTMLTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/HTMLTools.php -------------------------------------------------------------------------------- /components/HashedStaticCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/HashedStaticCache.php -------------------------------------------------------------------------------- /components/IMotionSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/IMotionSorter.php -------------------------------------------------------------------------------- /components/IMotionStatusFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/IMotionStatusFilter.php -------------------------------------------------------------------------------- /components/JwtCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/JwtCreator.php -------------------------------------------------------------------------------- /components/LineSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/LineSplitter.php -------------------------------------------------------------------------------- /components/LiveTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/LiveTools.php -------------------------------------------------------------------------------- /components/LoginProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/LoginProviderInterface.php -------------------------------------------------------------------------------- /components/MotionNumbering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/MotionNumbering.php -------------------------------------------------------------------------------- /components/MotionSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/MotionSorter.php -------------------------------------------------------------------------------- /components/RSSExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/RSSExporter.php -------------------------------------------------------------------------------- /components/RequestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/RequestContext.php -------------------------------------------------------------------------------- /components/ResourceLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/ResourceLock.php -------------------------------------------------------------------------------- /components/SitePurger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/SitePurger.php -------------------------------------------------------------------------------- /components/StringSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/StringSplitter.php -------------------------------------------------------------------------------- /components/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/Tools.php -------------------------------------------------------------------------------- /components/UrlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/UrlHelper.php -------------------------------------------------------------------------------- /components/UserGroupAdminMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/UserGroupAdminMethods.php -------------------------------------------------------------------------------- /components/VotingMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/VotingMethods.php -------------------------------------------------------------------------------- /components/ZipWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/ZipWriter.php -------------------------------------------------------------------------------- /components/diff/AffectedLinesFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/AffectedLinesFilter.php -------------------------------------------------------------------------------- /components/diff/AmendmentRewriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/AmendmentRewriter.php -------------------------------------------------------------------------------- /components/diff/ArrayMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/ArrayMatcher.php -------------------------------------------------------------------------------- /components/diff/DataTypes/DiffWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/DataTypes/DiffWord.php -------------------------------------------------------------------------------- /components/diff/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/Diff.php -------------------------------------------------------------------------------- /components/diff/DiffRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/DiffRenderer.php -------------------------------------------------------------------------------- /components/diff/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/diff/Engine.php -------------------------------------------------------------------------------- /components/html2pdf/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/html2pdf/Content.php -------------------------------------------------------------------------------- /components/latex/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/latex/Content.php -------------------------------------------------------------------------------- /components/latex/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/latex/Exporter.php -------------------------------------------------------------------------------- /components/latex/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/latex/Layout.php -------------------------------------------------------------------------------- /components/mail/AmazonSES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/AmazonSES.php -------------------------------------------------------------------------------- /components/mail/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/Base.php -------------------------------------------------------------------------------- /components/mail/Mailjet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/Mailjet.php -------------------------------------------------------------------------------- /components/mail/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/None.php -------------------------------------------------------------------------------- /components/mail/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/SMTP.php -------------------------------------------------------------------------------- /components/mail/Sendmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/Sendmail.php -------------------------------------------------------------------------------- /components/mail/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/mail/Tools.php -------------------------------------------------------------------------------- /components/updater/MigrateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/MigrateHelper.php -------------------------------------------------------------------------------- /components/updater/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/Update.php -------------------------------------------------------------------------------- /components/updater/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/UpdateChecker.php -------------------------------------------------------------------------------- /components/updater/UpdatedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/UpdatedFiles.php -------------------------------------------------------------------------------- /components/updater/layout-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/layout-footer.php -------------------------------------------------------------------------------- /components/updater/layout-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/layout-header.php -------------------------------------------------------------------------------- /components/updater/updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/updater.php -------------------------------------------------------------------------------- /components/updater/view-enter-key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/updater/view-enter-key.php -------------------------------------------------------------------------------- /components/yii/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/Application.php -------------------------------------------------------------------------------- /components/yii/DBConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/DBConnection.php -------------------------------------------------------------------------------- /components/yii/LoggerFileTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/LoggerFileTarget.php -------------------------------------------------------------------------------- /components/yii/MessageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/MessageSource.php -------------------------------------------------------------------------------- /components/yii/UrlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/UrlManager.php -------------------------------------------------------------------------------- /components/yii/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/components/yii/User.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/.gitignore -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /config/TEST_DOMAIN: -------------------------------------------------------------------------------- 1 | test.antragsgruen.test 2 | -------------------------------------------------------------------------------- /config/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/common.php -------------------------------------------------------------------------------- /config/config.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/config.template.json -------------------------------------------------------------------------------- /config/config.template_singlesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/config.template_singlesite.json -------------------------------------------------------------------------------- /config/config_tests.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/config_tests.template.json -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/console.php -------------------------------------------------------------------------------- /config/defines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/defines.php -------------------------------------------------------------------------------- /config/latex-replaces.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/latex-replaces.template.php -------------------------------------------------------------------------------- /config/update-public.key: -------------------------------------------------------------------------------- 1 | YOh/uG7zegdDbZBjhyuqADc+U9lly8vZzNq1Qmh6T3k= 2 | -------------------------------------------------------------------------------- /config/urls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/urls.php -------------------------------------------------------------------------------- /config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/config/web.php -------------------------------------------------------------------------------- /controllers/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /controllers/AmendmentActionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/AmendmentActionsTrait.php -------------------------------------------------------------------------------- /controllers/AmendmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/AmendmentController.php -------------------------------------------------------------------------------- /controllers/AmendmentMergingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/AmendmentMergingTrait.php -------------------------------------------------------------------------------- /controllers/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/Base.php -------------------------------------------------------------------------------- /controllers/ConsultationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/ConsultationController.php -------------------------------------------------------------------------------- /controllers/ManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/ManagerController.php -------------------------------------------------------------------------------- /controllers/MotionActionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/MotionActionsTrait.php -------------------------------------------------------------------------------- /controllers/MotionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/MotionController.php -------------------------------------------------------------------------------- /controllers/MotionExportTraits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/MotionExportTraits.php -------------------------------------------------------------------------------- /controllers/MotionMergingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/MotionMergingTrait.php -------------------------------------------------------------------------------- /controllers/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/PagesController.php -------------------------------------------------------------------------------- /controllers/SpeechController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/SpeechController.php -------------------------------------------------------------------------------- /controllers/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/TestController.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /controllers/VotingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/VotingController.php -------------------------------------------------------------------------------- /controllers/admin/AdminBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/controllers/admin/AdminBase.php -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /docker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docker/config.json -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /docker/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docker/php/Dockerfile -------------------------------------------------------------------------------- /docs/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /docs/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/UPGRADING.md -------------------------------------------------------------------------------- /docs/apache.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/apache.sample.conf -------------------------------------------------------------------------------- /docs/caches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/caches.md -------------------------------------------------------------------------------- /docs/create-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/create-dist.sh -------------------------------------------------------------------------------- /docs/create-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/create-update.php -------------------------------------------------------------------------------- /docs/fontello-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/fontello-config.json -------------------------------------------------------------------------------- /docs/latex/neos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/latex/neos.tex -------------------------------------------------------------------------------- /docs/nginx.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/nginx.sample.conf -------------------------------------------------------------------------------- /docs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/openapi.yaml -------------------------------------------------------------------------------- /docs/selenium-antragsgruen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/selenium-antragsgruen.toml -------------------------------------------------------------------------------- /docs/simplesaml-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/simplesaml-nginx.conf -------------------------------------------------------------------------------- /docs/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/supervisor.conf -------------------------------------------------------------------------------- /docs/update-mechanism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/update-mechanism.md -------------------------------------------------------------------------------- /docs/update-repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/update-repository.sh -------------------------------------------------------------------------------- /docs/update-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/docs/update-troubleshooting.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/index.php -------------------------------------------------------------------------------- /messages/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /messages/ca/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/admin.php -------------------------------------------------------------------------------- /messages/ca/amend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/amend.php -------------------------------------------------------------------------------- /messages/ca/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/base.php -------------------------------------------------------------------------------- /messages/ca/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/comment.php -------------------------------------------------------------------------------- /messages/ca/consultation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/consultation.php -------------------------------------------------------------------------------- /messages/ca/diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/diff.php -------------------------------------------------------------------------------- /messages/ca/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/export.php -------------------------------------------------------------------------------- /messages/ca/initiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/initiator.php -------------------------------------------------------------------------------- /messages/ca/manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/manager.php -------------------------------------------------------------------------------- /messages/ca/motion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/motion.php -------------------------------------------------------------------------------- /messages/ca/pagedata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/pagedata.php -------------------------------------------------------------------------------- /messages/ca/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/pages.php -------------------------------------------------------------------------------- /messages/ca/speech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/speech.php -------------------------------------------------------------------------------- /messages/ca/structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/structure.php -------------------------------------------------------------------------------- /messages/ca/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/user.php -------------------------------------------------------------------------------- /messages/ca/voting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/voting.php -------------------------------------------------------------------------------- /messages/ca/wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/ca/wizard.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/admin.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/amend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/amend.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/base.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/export.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/motion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/motion.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/user.php -------------------------------------------------------------------------------- /messages/de-aevorschlaege/voting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-aevorschlaege/voting.php -------------------------------------------------------------------------------- /messages/de-bdk/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-bdk/admin.php -------------------------------------------------------------------------------- /messages/de-bdk/amend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-bdk/amend.php -------------------------------------------------------------------------------- /messages/de-bdk/consultation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-bdk/consultation.php -------------------------------------------------------------------------------- /messages/de-bdk/motion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-bdk/motion.php -------------------------------------------------------------------------------- /messages/de-bewerbung/motion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-bewerbung/motion.php -------------------------------------------------------------------------------- /messages/de-jusosth/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-jusosth/admin.php -------------------------------------------------------------------------------- /messages/de-jusosth/amend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-jusosth/amend.php -------------------------------------------------------------------------------- /messages/de-jusosth/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatoTH/antragsgruen/HEAD/messages/de-jusosth/base.php -------------------------------------------------------------------------------- /messages/de-jusosth/comment.php: -------------------------------------------------------------------------------- 1 |