GithubHelp home page GithubHelp logo

csinowski / antragsgruen Goto Github PK

View Code? Open in Web Editor NEW

This project forked from catoth/antragsgruen

0.0 1.0 0.0 64.06 MB

Managing motions and amendments for political conventions

Home Page: https://motion.tools

License: GNU Affero General Public License v3.0

PHP 75.35% Shell 0.01% JavaScript 6.70% CSS 4.53% HTML 0.73% Java 8.87% TypeScript 3.82%

antragsgruen's Introduction

Antragsgrün

The Online Motion Administration/Facilitator for Associations Conventions, General Assemblies and Party Conventions.

Antragsgrün offers a clear and efficient tool for the effective administration of motions, amendments and candidacies: from submission to administration and print template.

A number of organisations are already using the tool successfully such as the federal association of the German Green Party or the German Federal Youth Council. It can be easily adapted to a variety of scenarios.

Core functions:

  • Submit motions, proposals and discussion papers online
  • Clear amendment
  • Submitted amendments are displayed directly in the relevant text section.
  • Discuss motions
  • Sophisticated administration tools
  • Diverse export options
  • Great flexibility - it adapts to a lot of different use cases
  • Technically mature, data privacy-friendly

Using the hosted version / testing it

Installation using the pre-bundled package

Requirements:

  • A MySQL-database
  • A fully configured web server running PHP

Installation:

  • Download the latest package of Antragsgrün: antragsgruen-3.7.3.tar.bz2
  • Extract the contents into your web folder
  • Access the "antragsgruen/"-folder of your web server, e.g. if you extracted the package into the web root of your host named www.example.org/, then access www.example.org/antragsgruen/
  • Use the web-based installer to configure the database and further settings

Updating a existing installation using the pre-bundled package

  • Download the latest package of Antragsgrün
  • Extract the files to your web folder, overwriting all existing files. The configuration (in config/config.json) will not be affected by this.
  • Remove the config/INSTALLING file
  • If you have shell access to your server: execute ./yii migrate on the command line to apply database changes
  • If you don't have shell access to your server: please refer to UPGRADING.md on how to upgrade your database

Installation

Required Software (Debian Linux):

# Using PHP7-packages from [deb.sury.org](https://deb.sury.org/):
apt-get install php7.1 php7.1-cli php7.1-fpm php7.1-intl php7.1-json php7.1-mcrypt php7.1-gd \
                php7.1-mysql php7.1-opcache php7.1-curl php7.1-xml php7.1-mbstring php7.1-zip

# Using PHP5-packages from Debian:
apt-get install php5-cli php5-fpm php5-mysqlnd php5-mcrypt php5-intl php5-curl php5-gd

Install the sources and dependencies from the repository:

git clone https://github.com/CatoTH/antragsgruen.git
cd antragsgruen
curl -sS https://getcomposer.org/installer | php
./composer.phar global require "fxp/composer-asset-plugin:1.3.1"
./composer.phar install --prefer-dist
npm install
npm run build

If you want to use the web-based installer (recommended):

touch config/INSTALLING

If you don't want to use the web-based installer:

cp config/config.template.json config/config.json
vi config/config.json # you're on your own now :-)

Set the permissions (example for Debian Linux):

sudo chown -R www-data:www-data web/assets
sudo chown -R www-data:www-data runtime
sudo chown -R www-data:www-data config #Can be skipped if you don't use the Installer

Set the permissions (example for Mac OS X):

sudo chown -R _www:_www web/assets
sudo chown -R _www:_www runtime
sudo chown -R _www:_www config #Can be skipped if you don't use the Installer

Set up the virtual host of your web server. Example files are provided here:

  • Example configuration for nginx
  • Example configuration for apache

Developing custom themes

You can develop a custom theme using SASS/SCSS for Antragsgrün using the following steps:

  • Create a file web/css/layout-my-layout.scss using layout-classic.scss as a template
  • Adapt the SCSS variables and add custom styles
  • Run gulp to compile the SCSS into CSS
  • Add a line 'layout-my-layout' => 'My cool new layout' to the "localLayouts"-object in config/config.json
  • Now, you can choose your new theme in the consultation settings

A hint regarding the AGPL license and themes: custom stylesheets and images and changes to the standard stylesheets of Antragsgrün do not have to be redistributed under an AGPL license like other changes to the Antragsgrün codebase.

Creating custom language variants

Every single message in the user interface can be modified using the web-based translation tool. Just log in as admin and go to Settings / Einstellungen -> Edit the language / Sprache anpassen.

In multi-site-instances, there might be a need to share language variante between different sites. In that case, file-based modifications are necessary:

  • Create a directory messages/en-variant
  • Copy the contents of the base language (messages/en, in this case) to this directory and edit the translated strings. If a string is missing, the messages of the directory named by the first part before the dash will be used as fallback ("en", in this case).
  • Add a localMessages-configuration to your config/config.json as shown below.
  • Now this language variant is selectable in the "Edit the language"-settings-page.
{
    "localMessages": {
        "en": {
            "en-variant": "My new language variant"
        }
    }
}

LaTeX/XeTeX-based PDF-rendering:

Necessary packets on Linux (Debian):

apt-get install texlive-lang-german texlive-latex-base texlive-latex-recommended \
                texlive-latex-extra texlive-humanities texlive-fonts-recommended \
                texlive-xetex poppler-utils

Necessary packets on Mac OS X:

Add the following settings to your config.json (and adapt them to your needs):

{
    "xelatexPath": "/usr/bin/xelatex",
    "xdvipdfmx": "/usr/bin/xdvipdfmx",
    "pdfunitePath": "/usr/bin/pdfunite"
}

Using Redis

Install the Yii2-Redis-package:

./composer.phar require composer require yiisoft/yii2-redis

Add the following settings to your config.json (and adapt them to your needs):

{
    "redis": {
        "hostname": "localhost",
        "port": 6379,
        "database": 0
    }
}

Command Line Commands

Force a new password for an user:

./yii admin/set-user-password [email protected] mynewpassword

Developing

You can enable debug mode by creating an empty file config/DEBUG.

To compile the JavaScript- and CSS-Files, you need to install Gulp:

npm install # Installs all required packages 

npm run build # Compiles the regular JS/CSS-files
npm run watch # Listens for changes in JS/CSS-files and compiles them immediatelly

After updating the source code from git, do:

./composer.phar install
./yii migrate
gulp

Testing

Installation

  • Create a separate (MySQL-)database for testing
  • Set up the configuration file: cp config/config_tests.template.json config/config_tests.json && vi config/config_tests.json
  • Download ChromeDriver and move the binary into the PATH (e.g. /usr/local/bin/)
  • Download the Selenium Standalone Server
  • For the automatical HTML validation, Java needs to be installed and the vnu.jar file from the Nu Html Checker located at /usr/local/bin/vnu.jar.
  • For the automatical accessibility validation, Pa11y needs to be installed. (is done by npm install)
  • The host name antragsgruen-test.local must point to localhost (by adding an entry to /etc/hosts) and a VirtualHost in your Apache/Nginx-Configuration pointing to the web/-directory of this installation has to be configured

Running

  • Start Selenium: java -jar selenium-server-standalone-3.5.3.jar
  • Run all acceptance tests: run run test:acceptance
  • Run all unit tests: run run test:unit
  • Run a single acceptence-test: npm run test:acceptance MotionCreateCept

Yii2

antragsgruen's People

Contributors

andi98 avatar catoth avatar joriki avatar macwinnie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.