Added missing license header (for js and css).
This commit is contained in:
parent
f80fcb0b92
commit
9b6b969f8a
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides agenda functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
function hideLine(object) {
|
function hideLine(object) {
|
||||||
if (object == []) {
|
if (object == []) {
|
||||||
return;
|
return;
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// $Id: jquery.once.js,v 1.1 2009/08/31 15:52:26 webchick Exp $
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* jQuery Once Plugin v1.2
|
* jQuery Once Plugin v1.2
|
||||||
* http://plugins.jquery.com/project/once
|
* http://plugins.jquery.com/project/once
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
* Copyright 2010, John Resig
|
* Copyright 2010, John Resig
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function( jQuery, undefined ){
|
(function( jQuery, undefined ){
|
||||||
var oldManip = jQuery.fn.domManip, tmplItmAtt = "_tmplitem", htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /,
|
var oldManip = jQuery.fn.domManip, tmplItmAtt = "_tmplitem", htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /,
|
||||||
newTmplItems = {}, wrappedItems = {}, appendToTmplItems, topTmplItem = { key: 0, data: {} }, itemKey = 0, cloneIndex = 0, stack = [];
|
newTmplItems = {}, wrappedItems = {}, appendToTmplItems, topTmplItem = { key: 0, data: {} }, itemKey = 0, cloneIndex = 0, stack = [];
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides agenda style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
/* agenda item open/closed */
|
/* agenda item open/closed */
|
||||||
a.close_link span {
|
a.close_link span {
|
||||||
background-image: url(../images/icons/done-grey.png);
|
background-image: url(../images/icons/done-grey.png);
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides assignment functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
$('a.elected').parent().parent().children('td').addClass('elected');
|
$('a.elected').parent().parent().children('td').addClass('elected');
|
||||||
|
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides assignent style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
td.elected {
|
td.elected {
|
||||||
background-color: #BED4DE !important;
|
background-color: #BED4DE !important;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
"""
|
"""
|
||||||
openslides.assignment.tests
|
openslides.assignment.tests
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides participants functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
$('.status_link').click(function(event) {
|
$('.status_link').click(function(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides participants style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
a.status_link.active span {
|
a.status_link.active span {
|
||||||
background-image: url(../images/icons/on.png);
|
background-image: url(../images/icons/on.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides projector functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
// activate an element to show it on projector
|
// activate an element to show it on projector
|
||||||
$('.activate_link').click(function(event) {
|
$('.activate_link').click(function(event) {
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides projector functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
function presentation_reload() {
|
function presentation_reload() {
|
||||||
if ($('#config > #ajax').html() == 'on') {
|
if ($('#config > #ajax').html() == 'on') {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* OpenSlides projector control template style
|
* OpenSlides projector control style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Portlet */
|
/* Portlet */
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
/**
|
/**
|
||||||
* OpenSlides projector style
|
* OpenSlides projector view style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
body{
|
body{
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
/**
|
||||||
|
* OpenSlides utils functions
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
$('.button').click(function (event) {
|
$('.button').click(function (event) {
|
||||||
button = $(this);
|
button = $(this);
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
/* OpenSlides default template style */
|
/**
|
||||||
|
* OpenSlides default template style
|
||||||
|
*
|
||||||
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
|
* :license: GNU GPL, see LICENSE for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
padding: 0 0 0px;
|
padding: 0 0 0px;
|
||||||
|
Loading…
Reference in New Issue
Block a user