Merge pull request #1916 from normanjaeckel/Metadata
Updated metadata files.
This commit is contained in:
commit
30e6e1aa13
@ -14,6 +14,7 @@ Agenda:
|
||||
are now agenda items and can be hidden.
|
||||
- Removed mptt.
|
||||
- Added attachments to custom slides.
|
||||
- Improved csv import.
|
||||
Assignments:
|
||||
- Renamed app from assignment to assignments.
|
||||
- Removed possibility to block candidates.
|
||||
@ -27,6 +28,7 @@ Users:
|
||||
- Used new anonymous user object instead of an authentification backend. Used
|
||||
special authentication class for REST requests.
|
||||
- Used authentication frontend via AngularJS.
|
||||
- Improved csv import.
|
||||
Other:
|
||||
- New OpenSlides logo.
|
||||
- New design for web interface.
|
||||
@ -57,8 +59,8 @@ Other:
|
||||
- Used Bower and gulp to manage third party JavaScript and Cascading Style
|
||||
Sheets libraries.
|
||||
- Used setup.cfg for development tools.
|
||||
- Removed code for Windows portable version with GUI. Used new repository for
|
||||
this.
|
||||
- Removed code for documentation and for Windows portable version with GUI.
|
||||
Used new repositories for this. Cleaned up main repository.
|
||||
- Django 1.9 is supported
|
||||
Translations:
|
||||
- Updated DE, FR, CS and PT translations.
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011-2015 OpenSlides Team
|
||||
Copyright (c) 2011-2016 OpenSlides Team
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -7,4 +7,5 @@ include bower.json
|
||||
recursive-include openslides *.*
|
||||
recursive-exclude openslides *.pyc
|
||||
recursive-exclude openslides *.swp
|
||||
recursive-exclude openslides *.swo
|
||||
recursive-exclude openslides *~
|
||||
|
@ -29,9 +29,9 @@
|
||||
"ng-file-upload": "~11.2.3",
|
||||
"ckeditor": "~4.5.6",
|
||||
"angular-ckeditor": "~1.0.3",
|
||||
"angular-pdf": "~1.3.0",
|
||||
"roboto-condensed": "~0.3.0",
|
||||
"open-sans-fontface": "https://github.com/OpenSlides/open-sans.git#1.4.2.post1",
|
||||
"angular-pdf": "~1.3.0"
|
||||
"open-sans-fontface": "https://github.com/OpenSlides/open-sans.git#1.4.2.post1"
|
||||
},
|
||||
"resolutions": {
|
||||
"angular": ">=1.4.9 <1.5"
|
||||
|
10
gulpfile.js
10
gulpfile.js
@ -21,7 +21,7 @@ var argv = require('yargs').argv,
|
||||
mainBowerFiles = require('main-bower-files'),
|
||||
minifyCSS = require('gulp-minify-css'),
|
||||
path = require('path'),
|
||||
rename = require("gulp-rename"),
|
||||
rename = require('gulp-rename'),
|
||||
through = require('through2'),
|
||||
uglify = require('gulp-uglify'),
|
||||
vsprintf = require('sprintf-js').vsprintf;
|
||||
@ -70,7 +70,7 @@ gulp.task('ckeditor', function () {
|
||||
.pipe(gulp.dest(path.join(output_directory, 'ckeditor')));
|
||||
});
|
||||
|
||||
// Extra task only for pdfjs
|
||||
// Extra task only for PDF.js
|
||||
gulp.task('pdfjs', function () {
|
||||
return gulp.src(path.join('bower_components', 'pdfjs-dist', 'build', 'pdf.worker.js'))
|
||||
.pipe(rename(path.join('openslides-libs.worker.js')))
|
||||
@ -98,9 +98,11 @@ gulp.task('default', ['js-libs', 'css-libs', 'fonts-libs', 'ckeditor', 'pdfjs',
|
||||
// Extracts translatable strings using angular-gettext and saves them in file
|
||||
// openslides/locale/angular-gettext/template-en.pot.
|
||||
gulp.task('pot', function () {
|
||||
return gulp.src(['openslides/core/static/templates/*.html',
|
||||
return gulp.src([
|
||||
'openslides/core/static/templates/*.html',
|
||||
'openslides/*/static/templates/*/*.html',
|
||||
'openslides/*/static/js/*/*.js'])
|
||||
'openslides/*/static/js/*/*.js',
|
||||
])
|
||||
.pipe(gettext.extract('template-en.pot', {}))
|
||||
.pipe(gulp.dest('openslides/locale/angular-gettext/'));
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user