Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI issues fixed. #270

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f7322d8
Bug that configuration types were not serialized properly by Jackson and
Feb 20, 2018
1020584
Bug that User (principal) name is not shown in the UI, is fixed.
Feb 20, 2018
6f07b93
Spring platform upgraded to 2.0.8 version.
Feb 21, 2018
1d235f5
Revert "Spring platform upgraded to 2.0.8 version."
Feb 22, 2018
4c56a30
Spring Platform upgradation to version 2.0.8 has been started.
Feb 22, 2018
a198294
Admin logo set for CE.
Feb 22, 2018
4587699
Bug that custom logo set in the WEB-INF directory of the project was not
Feb 23, 2018
d12fb3d
Revert "Bug that custom logo set in the WEB-INF directory of the proj…
Feb 23, 2018
27e5c83
Bug that custom logo set in the WEB-INF directory of the project was not
Feb 23, 2018
3987238
Merge branch 'master' into ceadmin
Feb 23, 2018
94993cb
Custom Logo Image can now be served from the WEB-INF directory, so no
Feb 23, 2018
dca8bb0
Revert "Bug that custom logo set in the WEB-INF directory of the proj…
Feb 23, 2018
d4af27b
Merge branch 'master' into ceadmin
Feb 23, 2018
65cd213
Spring Platform upgraded to Brussels-SR6
Mar 7, 2018
2be1bc5
Issue that the Jackson Object mapper could not parse
Mar 8, 2018
e39d4fd
Issue that view names were not properly serialized, is fixed.
Mar 8, 2018
2a9002a
Java 8 is needed for newer version of Spring Dependencies.
Mar 8, 2018
ab7df16
Merge branch 'spring-platform-brussels-sr6' into ceadmin
Mar 8, 2018
9586fea
Compiler upgraded to Java 8 for newer version of Spring dependencies.
Mar 8, 2018
c6d68c8
Merge branch 'ceadmin' of https://github.com/gazirahman/light-admin.g…
Mar 8, 2018
24c7b14
Spring platform upgrated in theparent, sandbox and the test modules as
Mar 8, 2018
307aae5
Merge branch 'spring-platform-brussels-sr6'
Mar 8, 2018
2b0958c
Compiler upgraded to Java 8 for newer Spring versions.
Mar 8, 2018
cb13291
Merge branch 'spring-platform-brussels-sr6'
Mar 8, 2018
28d5789
Bug that new entities couldn't be created, is fixed.
Mar 9, 2018
5f90382
Merge branch 'master' into ceadmin
Mar 9, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions lightadmin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<groupId>org.lightadmin</groupId>
<artifactId>lightadmin</artifactId>
<packaging>jar</packaging>

<version>1.2.0.BUILD-SNAPSHOT</version>
<version>1.3.1.BUILD-SNAPSHOT</version>

<name>LightAdmin</name>
<description>Pluggable data management solution for Java web applications developed in a "Rapid" manner
Expand Down Expand Up @@ -92,10 +91,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<spring.platform.version>1.1.2.RELEASE</spring.platform.version>
<spring.platform.version>Brussels-SR6</spring.platform.version>

<commons-collections4.version>4.0</commons-collections4.version>
<imgscalr-lib.version>4.2</imgscalr-lib.version>
Expand Down Expand Up @@ -502,6 +501,19 @@
</repository>
</distributionManagement>
</profile>
<profile>
<id>vantage-distribution</id>
<distributionManagement>
<snapshotRepository>
<id>third-party-snapshots</id>
<url>http://maven2.vantage.com:8080/repo/content/repositories/third-party-snapshots</url>
</snapshotRepository>
<repository>
<id>third-party</id>
<url>http://maven2.vantage.com:8080/repo/content/repositories/third-party</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>oss-distribution</id>
<distributionManagement>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,45 +1,47 @@
/*
* Copyright 2012-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lightadmin.core.config;

import java.io.File;
import java.net.URI;

public interface LightAdminConfiguration {

String getBasePackage();

String getApplicationBaseUrl();

String getApplicationUrl(String path);

URI getApplicationRestBaseUrl();

boolean isSecurityEnabled();

boolean isDemoMode();

String getSecurityLogoutUrl();

String getBackToSiteUrl();

String getHelpUrl();

File getFileStorageDirectory();

boolean isFileStreamingEnabled();

/*
* Copyright 2012-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lightadmin.core.config;

import java.io.File;
import java.net.URI;

public interface LightAdminConfiguration {

String getBasePackage();

String getApplicationBaseUrl();

String getApplicationUrl(String path);

URI getApplicationRestBaseUrl();

String getApplicationRestBasePath();

boolean isSecurityEnabled();

boolean isDemoMode();

String getSecurityLogoutUrl();

String getBackToSiteUrl();

String getHelpUrl();

File getFileStorageDirectory();

boolean isFileStreamingEnabled();

}
Loading