This is an automated email from the git hooks/post-receive script. New commit to branch release/3.1.0 in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 74d3d7adcd6612ee17d2f9b4039cf9a608df725f Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Tue Dec 5 10:44:09 2017 +0100 Ajout des headers de licence avant release --- .../common/V3_1_0_5__Extract_email_addresses.java | 21 +++++++++++++++++++++ .../entity/PollenUserEmailAddressTopiaDao.java | 21 +++++++++++++++++++++ .../PollenUserUnknownExceptionMapper.java | 21 +++++++++++++++++++++ .../chorem/pollen/rest/api/v1/TransverseApi.java | 21 +++++++++++++++++++++ .../pollen/services/bean/ConfigurationBean.java | 21 +++++++++++++++++++++ .../chorem/pollen/services/bean/PollenStatus.java | 21 +++++++++++++++++++++ .../services/bean/PollenUserEmailAddressBean.java | 21 +++++++++++++++++++++ .../chorem/pollen/services/bean/UsersRight.java | 21 +++++++++++++++++++++ .../bean/resource/AbstractResourceBean.java | 21 +++++++++++++++++++++ .../MajorityJudgmentChoiceResultBean.java | 21 +++++++++++++++++++++ .../MajorityJudgmentDetailResultBean.java | 21 +++++++++++++++++++++ .../pollen/services/job/CheckMailBoxJob.java | 21 +++++++++++++++++++++ .../job/DeleteObsoleteSessionTokensJob.java | 21 +++++++++++++++++++++ .../pollen/services/service/TransverseService.java | 21 +++++++++++++++++++++ .../services/service/mail/MailBoxService.java | 21 +++++++++++++++++++++ .../services/service/mail/PollenEmailKeyType.java | 21 +++++++++++++++++++++ .../service/mail/PollenInvalidEmailsException.java | 21 +++++++++++++++++++++ .../service/mail/PollenMailReturnContext.java | 21 +++++++++++++++++++++ .../services/service/mail/PollenMailType.java | 21 +++++++++++++++++++++ .../service/security/PollenPermission.java | 21 +++++++++++++++++++++ .../service/security/PollenPermissions.java | 21 +++++++++++++++++++++ .../src/main/web/customData/legalNotices-en.html | 20 ++++++++++++++++++++ .../src/main/web/customData/legalNotices-fr.html | 20 ++++++++++++++++++++ .../web/customData/maxVotersAlert-creator-en.html | 20 ++++++++++++++++++++ .../web/customData/maxVotersAlert-creator-fr.html | 20 ++++++++++++++++++++ .../src/main/web/customData/maxVotersAlert-en.html | 20 ++++++++++++++++++++ .../src/main/web/customData/maxVotersAlert-fr.html | 20 ++++++++++++++++++++ .../src/main/web/tag/Authorization.tag.html | 20 ++++++++++++++++++++ .../src/main/web/tag/FilterLoginProvider.tag.js | 20 ++++++++++++++++++++ .../src/main/web/tag/PageChanged.tag.js | 20 ++++++++++++++++++++ .../src/main/web/tag/SignInAction.tag.js | 20 ++++++++++++++++++++ .../src/main/web/tag/components/Avatar.tag.html | 22 +++++++++++++++++++++- .../src/main/web/tag/components/InnerHtml.tag.html | 20 ++++++++++++++++++++ .../tag/components/UserEmailAddressList.tag.html | 20 ++++++++++++++++++++ .../src/main/web/tag/poll/CheckEmails.tag.html | 20 ++++++++++++++++++++ .../src/main/web/tag/poll/EditVote.tag.html | 20 ++++++++++++++++++++ .../src/main/web/tag/poll/VotesTable.tag.html | 20 ++++++++++++++++++++ .../web/tag/voteCountingType/BordaConfig.tag.html | 20 ++++++++++++++++++++ .../tag/voteCountingType/CumulativeConfig.tag.html | 20 ++++++++++++++++++++ .../MajorityJudgmentConfig.tag.html | 20 ++++++++++++++++++++ .../MaxChoicesNumberConfig.tag.html | 20 ++++++++++++++++++++ .../model/EmptyVoteCountingConfig.java | 21 +++++++++++++++++++++ .../votecounting/model/MaxChoicesNumberConfig.java | 21 +++++++++++++++++++++ .../votecounting/model/VoteCountingConfig.java | 21 +++++++++++++++++++++ .../chorem/pollen/votecounting/BordaConfig.java | 21 +++++++++++++++++++++ .../pollen/votecounting/CumulativeConfig.java | 21 +++++++++++++++++++++ .../votecounting/MajorityJudgmentChoiceResult.java | 21 +++++++++++++++++++++ .../votecounting/MajorityJudgmentConfig.java | 21 +++++++++++++++++++++ 48 files changed, 989 insertions(+), 1 deletion(-) diff --git a/pollen-persistence/src/main/java/db/migration/common/V3_1_0_5__Extract_email_addresses.java b/pollen-persistence/src/main/java/db/migration/common/V3_1_0_5__Extract_email_addresses.java index 1c87f50d..6e2ab25e 100644 --- a/pollen-persistence/src/main/java/db/migration/common/V3_1_0_5__Extract_email_addresses.java +++ b/pollen-persistence/src/main/java/db/migration/common/V3_1_0_5__Extract_email_addresses.java @@ -1,5 +1,26 @@ package db.migration.common; +/*- + * #%L + * Pollen :: Persistence + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.apache.commons.lang3.StringUtils; import org.chorem.pollen.persistence.entity.PollenUserEmailAddress; import org.flywaydb.core.api.migration.jdbc.JdbcMigration; diff --git a/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/PollenUserEmailAddressTopiaDao.java b/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/PollenUserEmailAddressTopiaDao.java index df319654..968be61a 100644 --- a/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/PollenUserEmailAddressTopiaDao.java +++ b/pollen-persistence/src/main/java/org/chorem/pollen/persistence/entity/PollenUserEmailAddressTopiaDao.java @@ -1,5 +1,26 @@ package org.chorem.pollen.persistence.entity; +/*- + * #%L + * Pollen :: Persistence + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.util.HashMap; import java.util.Map; diff --git a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/exceptionMappers/PollenUserUnknownExceptionMapper.java b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/exceptionMappers/PollenUserUnknownExceptionMapper.java index d775629b..cfd4c0c5 100644 --- a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/exceptionMappers/PollenUserUnknownExceptionMapper.java +++ b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/exceptionMappers/PollenUserUnknownExceptionMapper.java @@ -1,5 +1,26 @@ package org.chorem.pollen.rest.api.exceptionMappers; +/*- + * #%L + * Pollen :: Rest Api + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.services.service.security.PollenUserUnknownException; import javax.ws.rs.core.Response; diff --git a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/TransverseApi.java b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/TransverseApi.java index 928cbf1d..470fa9f3 100644 --- a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/TransverseApi.java +++ b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/TransverseApi.java @@ -1,5 +1,26 @@ package org.chorem.pollen.rest.api.v1; +/*- + * #%L + * Pollen :: Rest Api + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.services.bean.ConfigurationBean; import org.chorem.pollen.services.bean.PollenStatus; import org.chorem.pollen.services.service.TransverseService; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/ConfigurationBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/ConfigurationBean.java index 04fd7ceb..37ccca2d 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/ConfigurationBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/ConfigurationBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenStatus.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenStatus.java index 822d0dda..a2c32cbf 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenStatus.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenStatus.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.util.List; /** diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenUserEmailAddressBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenUserEmailAddressBean.java index c01c12d1..24391a5e 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenUserEmailAddressBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/PollenUserEmailAddressBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.PollenUserEmailAddress; /** diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/UsersRight.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/UsersRight.java index 4a805770..f5c8fb90 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/UsersRight.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/UsersRight.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/resource/AbstractResourceBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/resource/AbstractResourceBean.java index e5376071..72c37a29 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/resource/AbstractResourceBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/resource/AbstractResourceBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean.resource; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.PollenResource; import org.chorem.pollen.persistence.entity.ResourceType; import org.chorem.pollen.services.bean.PollenBean; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentChoiceResultBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentChoiceResultBean.java index ad693c9c..a0321e68 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentChoiceResultBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentChoiceResultBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean.voteCounting.majorityJugment; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Choice; import org.chorem.pollen.services.bean.PollenEntityId; import org.chorem.pollen.votecounting.MajorityJudgmentChoiceResult; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentDetailResultBean.java b/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentDetailResultBean.java index 60b5eda9..85440fba 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentDetailResultBean.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/bean/voteCounting/majorityJugment/MajorityJudgmentDetailResultBean.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.bean.voteCounting.majorityJugment; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.services.bean.voteCounting.VoteCountingDetailResultBean; import org.chorem.pollen.votecounting.MajorityJudgmentDetailResult; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/job/CheckMailBoxJob.java b/pollen-services/src/main/java/org/chorem/pollen/services/job/CheckMailBoxJob.java index 2f1cea4c..a7f093dd 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/job/CheckMailBoxJob.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/job/CheckMailBoxJob.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.job; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.chorem.pollen.services.service.mail.MailBoxService; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/job/DeleteObsoleteSessionTokensJob.java b/pollen-services/src/main/java/org/chorem/pollen/services/job/DeleteObsoleteSessionTokensJob.java index e1fe108f..9aaa2997 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/job/DeleteObsoleteSessionTokensJob.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/job/DeleteObsoleteSessionTokensJob.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.job; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.chorem.pollen.services.service.security.SecurityService; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/TransverseService.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/TransverseService.java index 36392c7e..d2bd4ba9 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/TransverseService.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/TransverseService.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import com.google.common.collect.Lists; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/MailBoxService.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/MailBoxService.java index dd7f7e49..dc127996 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/MailBoxService.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/MailBoxService.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.mail; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.apache.commons.lang3.ArrayUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.logging.Log; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenEmailKeyType.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenEmailKeyType.java index b7cbcb8e..21bbb11e 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenEmailKeyType.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenEmailKeyType.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.mail; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Choice; import org.chorem.pollen.persistence.entity.Comment; import org.chorem.pollen.persistence.entity.Poll; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenInvalidEmailsException.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenInvalidEmailsException.java index ed840ade..11535a51 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenInvalidEmailsException.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenInvalidEmailsException.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.mail; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.util.List; /** diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailReturnContext.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailReturnContext.java index b2895fd3..4474f8bc 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailReturnContext.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailReturnContext.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.mail; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Choice; import org.chorem.pollen.persistence.entity.Comment; import org.chorem.pollen.persistence.entity.Poll; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailType.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailType.java index 494406ce..c2a7c6e0 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailType.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/mail/PollenMailType.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.mail; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.services.PollenTechnicalException; import java.util.function.BiConsumer; diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermission.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermission.java index 75b8683f..ed7b530c 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermission.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermission.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.security; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermissions.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermissions.java index 64d92df7..1fd62788 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermissions.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/PollenPermissions.java @@ -1,5 +1,26 @@ package org.chorem.pollen.services.service.security; +/*- + * #%L + * Pollen :: Service + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.persistence.entity.Choice; import org.chorem.pollen.persistence.entity.Comment; import org.chorem.pollen.persistence.entity.Poll; diff --git a/pollen-ui-riot-js/src/main/web/customData/legalNotices-en.html b/pollen-ui-riot-js/src/main/web/customData/legalNotices-en.html index 35899e20..86795edb 100644 --- a/pollen-ui-riot-js/src/main/web/customData/legalNotices-en.html +++ b/pollen-ui-riot-js/src/main/web/customData/legalNotices-en.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <link href="./customData/style.css" rel="stylesheet" type="text/css"/> <h1>Legal Notices</h1> diff --git a/pollen-ui-riot-js/src/main/web/customData/legalNotices-fr.html b/pollen-ui-riot-js/src/main/web/customData/legalNotices-fr.html index f0a93962..22a45ae7 100644 --- a/pollen-ui-riot-js/src/main/web/customData/legalNotices-fr.html +++ b/pollen-ui-riot-js/src/main/web/customData/legalNotices-fr.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <link href="./customData/style.css" rel="stylesheet" type="text/css"/> <h1>Mentions légales</h1> diff --git a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-en.html b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-en.html index 3a34ed62..b146b5b0 100644 --- a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-en.html +++ b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-en.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <div> <strong>Number of voters limitation</strong> </div> diff --git a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-fr.html b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-fr.html index 3a987285..366d23c3 100644 --- a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-fr.html +++ b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-creator-fr.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <div> <strong>Limitation du Nombre de votants</strong> </div> diff --git a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-en.html b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-en.html index 8d7a9fd2..df113be3 100644 --- a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-en.html +++ b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-en.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <div> <strong>Number of voters limitation</strong> </div> diff --git a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-fr.html b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-fr.html index 848e02d5..52f48e77 100644 --- a/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-fr.html +++ b/pollen-ui-riot-js/src/main/web/customData/maxVotersAlert-fr.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <div> <strong>Limitation du Nombre de votants</strong> </div> diff --git a/pollen-ui-riot-js/src/main/web/tag/Authorization.tag.html b/pollen-ui-riot-js/src/main/web/tag/Authorization.tag.html index c31c5ce1..e2f0ffcf 100644 --- a/pollen-ui-riot-js/src/main/web/tag/Authorization.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/Authorization.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <Authorization> <div if={authorized}> <yield/> diff --git a/pollen-ui-riot-js/src/main/web/tag/FilterLoginProvider.tag.js b/pollen-ui-riot-js/src/main/web/tag/FilterLoginProvider.tag.js index 4b1f0dcc..eccb3c7d 100644 --- a/pollen-ui-riot-js/src/main/web/tag/FilterLoginProvider.tag.js +++ b/pollen-ui-riot-js/src/main/web/tag/FilterLoginProvider.tag.js @@ -1,3 +1,23 @@ +/*- + * #%L + * Pollen :: UI RiotJs + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ let riot = require("riot"); let route = require("riot-route/lib/tag").default; // a voir pourquoi le default doit être mis ; let session = require("../js/Session"); diff --git a/pollen-ui-riot-js/src/main/web/tag/PageChanged.tag.js b/pollen-ui-riot-js/src/main/web/tag/PageChanged.tag.js index c60ef42c..cdf41d77 100644 --- a/pollen-ui-riot-js/src/main/web/tag/PageChanged.tag.js +++ b/pollen-ui-riot-js/src/main/web/tag/PageChanged.tag.js @@ -1,3 +1,23 @@ +/*- + * #%L + * Pollen :: UI RiotJs + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ let riot = require("riot"); riot.tag("pagechanged", false, function(opts) { diff --git a/pollen-ui-riot-js/src/main/web/tag/SignInAction.tag.js b/pollen-ui-riot-js/src/main/web/tag/SignInAction.tag.js index 52a6562f..d23c82d1 100644 --- a/pollen-ui-riot-js/src/main/web/tag/SignInAction.tag.js +++ b/pollen-ui-riot-js/src/main/web/tag/SignInAction.tag.js @@ -1,3 +1,23 @@ +/*- + * #%L + * Pollen :: UI RiotJs + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ let riot = require("riot"); let route = require("riot-route/lib/tag").default; // a voir pourquoi le default doit être mi ; let session = require("../js/Session"); diff --git a/pollen-ui-riot-js/src/main/web/tag/components/Avatar.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/Avatar.tag.html index 009c88cb..83299791 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/Avatar.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/Avatar.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> require("./LetterAvatar.tag.html"); <Avatar> <LetterAvatar class="avatar-letter" name={opts.name} rounded={opts.rounded} if={!opts.avatar} /> @@ -26,4 +46,4 @@ require("./LetterAvatar.tag.html"); } </style> -</Avatar> \ No newline at end of file +</Avatar> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/InnerHtml.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/InnerHtml.tag.html index 66958648..41d34ec7 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/InnerHtml.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/InnerHtml.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <InnerHtml> <span ref="html"></span> diff --git a/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html b/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html index cd57e322..60fc3814 100644 --- a/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/components/UserEmailAddressList.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <UserEmailAddressList> <h3 class="c-heading"><i class="fa fa-at"/> {__.emailAddresses}</h3> <div each="{emailAddress, index in opts.user.emailAddresses}" class="email-address {index % 2 == 0 ? 'even' : 'odd'}"> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/CheckEmails.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/CheckEmails.tag.html index 04dfaa9c..f73aa843 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/CheckEmails.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/CheckEmails.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <CheckEmails> <div show={invalidEmails.length} class="c-alert c-alert--warning"> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html index 831a0bee..3f670177 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/EditVote.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <EditVote> <div class="form-wrapper"> diff --git a/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html b/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html index 5352e09e..85a9661c 100644 --- a/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/poll/VotesTable.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <VotesTable> <!-- Show votes --> <div class="voters"> diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html index 3db0b682..65b380dc 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/BordaConfig.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> require("./MaxChoicesNumberConfig.tag.html"); <BordaConfig> diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/CumulativeConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/CumulativeConfig.tag.html index e2b4f9c2..92d2f70a 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/CumulativeConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/CumulativeConfig.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <CumulativeConfig> <div class="o-form-element"> diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html index 024a133b..0338bfa6 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MajorityJudgmentConfig.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <MajorityJudgmentConfig> <div class="o-form-element"> diff --git a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MaxChoicesNumberConfig.tag.html b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MaxChoicesNumberConfig.tag.html index 5eed5c93..84c9e593 100644 --- a/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MaxChoicesNumberConfig.tag.html +++ b/pollen-ui-riot-js/src/main/web/tag/voteCountingType/MaxChoicesNumberConfig.tag.html @@ -1,3 +1,23 @@ +<!-- + #%L + Pollen :: UI RiotJs + %% + Copyright (C) 2009 - 2017 CodeLutin + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L% + --> <MaxChoicesNumberConfig> <div class="o-form-element"> diff --git a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/EmptyVoteCountingConfig.java b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/EmptyVoteCountingConfig.java index 140850d6..420231fc 100644 --- a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/EmptyVoteCountingConfig.java +++ b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/EmptyVoteCountingConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting.model; +/*- + * #%L + * Pollen :: VoteCounting (Api) + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/MaxChoicesNumberConfig.java b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/MaxChoicesNumberConfig.java index 5d48c0b6..a89485d2 100644 --- a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/MaxChoicesNumberConfig.java +++ b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/MaxChoicesNumberConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting.model; +/*- + * #%L + * Pollen :: VoteCounting (Api) + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingConfig.java b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingConfig.java index 21e317e8..2dcc860e 100644 --- a/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingConfig.java +++ b/pollen-votecounting-api/src/main/java/org/chorem/pollen/votecounting/model/VoteCountingConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting.model; +/*- + * #%L + * Pollen :: VoteCounting (Api) + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + /** * @author Sylvain Bavencoff - bavencoff@codelutin.com */ diff --git a/pollen-votecounting-borda/src/main/java/org/chorem/pollen/votecounting/BordaConfig.java b/pollen-votecounting-borda/src/main/java/org/chorem/pollen/votecounting/BordaConfig.java index 3def5e15..5086be3f 100644 --- a/pollen-votecounting-borda/src/main/java/org/chorem/pollen/votecounting/BordaConfig.java +++ b/pollen-votecounting-borda/src/main/java/org/chorem/pollen/votecounting/BordaConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting; +/*- + * #%L + * Pollen :: VoteCounting :: Borda + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.votecounting.model.MaxChoicesNumberConfig; import java.util.List; diff --git a/pollen-votecounting-cumulative/src/main/java/org/chorem/pollen/votecounting/CumulativeConfig.java b/pollen-votecounting-cumulative/src/main/java/org/chorem/pollen/votecounting/CumulativeConfig.java index 4ff961e4..56fb0930 100644 --- a/pollen-votecounting-cumulative/src/main/java/org/chorem/pollen/votecounting/CumulativeConfig.java +++ b/pollen-votecounting-cumulative/src/main/java/org/chorem/pollen/votecounting/CumulativeConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting; +/*- + * #%L + * Pollen :: VoteCounting :: Cumulative + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.votecounting.model.VoteCountingConfig; /** diff --git a/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentChoiceResult.java b/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentChoiceResult.java index deffbb1f..d050c99b 100644 --- a/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentChoiceResult.java +++ b/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentChoiceResult.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting; +/*- + * #%L + * Pollen :: VoteCounting :: Majority Judgment + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import java.io.Serializable; import java.math.BigDecimal; import java.util.List; diff --git a/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentConfig.java b/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentConfig.java index d00313f0..97120350 100644 --- a/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentConfig.java +++ b/pollen-votecounting-majority-judgment/src/main/java/org/chorem/pollen/votecounting/MajorityJudgmentConfig.java @@ -1,5 +1,26 @@ package org.chorem.pollen.votecounting; +/*- + * #%L + * Pollen :: VoteCounting :: Majority Judgment + * %% + * Copyright (C) 2009 - 2017 CodeLutin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * #L% + */ + import org.chorem.pollen.votecounting.model.VoteCountingConfig; import java.util.List; -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.