-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc. Scripting: SSE technology is now configurable (seems not to work…
… in all environment / firewalls?)
- Loading branch information
Showing
6 changed files
with
71 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1 @@ | ||
Release 7.0 | ||
|
||
* REST API for full CRUD functionality for all entities implemented. | ||
* Docker support | ||
* Data transfer tool | ||
* Easy installation (docker, setup wizard (console and GUI), ...) | ||
* JCR support (attachments for contracts) | ||
* Forecasts (Excel exports) | ||
* Update frontend component (React introduced). | ||
* Kotlin as development language introduced. | ||
* Update backend REST Api. | ||
* Some minor changes after/within frontend refactoring . | ||
* Graphical and text base installer for first start-up. | ||
* Java 8 and Java9+ support (tested also with OpenJDK 11). | ||
Please visit https://projectforge.org/changelog-posts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
projectforge-rest/src/main/kotlin/org/projectforge/rest/config/RestConfiguration.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Project ProjectForge Community Edition | ||
// www.projectforge.org | ||
// | ||
// Copyright (C) 2001-2024 Micromata GmbH, Germany (www.micromata.com) | ||
// | ||
// ProjectForge is dual-licensed. | ||
// | ||
// This community edition is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License as published | ||
// by the Free Software Foundation; version 3 of the License. | ||
// | ||
// This community edition 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 General Public License along | ||
// with this program; if not, see http://www.gnu.org/licenses/. | ||
// | ||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
package org.projectforge.rest.config | ||
|
||
import jakarta.annotation.PostConstruct | ||
import mu.KotlinLogging | ||
import org.springframework.beans.factory.annotation.Value | ||
import org.springframework.stereotype.Service | ||
|
||
private val log = KotlinLogging.logger {} | ||
|
||
@Service | ||
open class RestConfiguration { | ||
/** | ||
* Server-Sent Events (SSE) enabled? If not, pull requests will be used. | ||
*/ | ||
@Value("\${projectforge.rest.sseEnabled:true}") | ||
open var sseEnabled: Boolean? = true | ||
protected set | ||
|
||
@PostConstruct | ||
private fun postConstruct() { | ||
log.info { "SSE enabled: $sseEnabled" } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
<p>You can download the latest binaries from <a href="https://sourceforge.net/projects/pforge/files/ProjectForge/">Sourceforge</a> or <a href="https://hub.docker.com/r/micromata/projectforge">Docker Hub</a>. | ||
<p> | ||
You can download the latest binaries from | ||
<a href="https://github.com/micromata/projectforge/releases">GitHub</a>, | ||
<a href="https://sourceforge.net/projects/pforge/files/ProjectForge/">Sourceforge</a>, | ||
or <a href="https://hub.docker.com/r/micromata/projectforge">Docker Hub</a>. | ||
</p> |