-
-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
156 changed files
with
72,879 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Set default behaviour, in case users don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Explicitly declare text files we want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.c text | ||
*.h text | ||
|
||
# Declare files that will always have CRLF line endings on checkout. | ||
*.sln text eol=crlf | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary | ||
|
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,7 @@ | ||
/*/.classpath | ||
/*/.project | ||
/*/.settings | ||
/*/bin | ||
/*/gen | ||
/*/target | ||
/*/*.iml |
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,185 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<parent> | ||
<groupId>com.sismics.docs</groupId> | ||
<artifactId>docs-parent</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<relativePath>../docs-parent</relativePath> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>docs-core</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Docs Core</name> | ||
|
||
<dependencies> | ||
<!-- Persistence layer dependencies --> | ||
<dependency> | ||
<groupId>org.hibernate</groupId> | ||
<artifactId>hibernate-core</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.hibernate</groupId> | ||
<artifactId>hibernate-entitymanager</artifactId> | ||
</dependency> | ||
|
||
<!-- Other external dependencies --> | ||
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-lang</groupId> | ||
<artifactId>commons-lang</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>jcl-over-slf4j</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.mindrot</groupId> | ||
<artifactId>jbcrypt</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.codehaus.jackson</groupId> | ||
<artifactId>jackson-core-asl</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.codehaus.jackson</groupId> | ||
<artifactId>jackson-mapper-asl</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.ccil.cowan.tagsoup</groupId> | ||
<artifactId>tagsoup</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId> | ||
<artifactId>owasp-java-html-sanitizer</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-core</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-analyzers-common</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-queryparser</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-highlighter</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.bitlet</groupId> | ||
<artifactId>weupnp</artifactId> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.hsqldb</groupId> | ||
<artifactId>hsqldb</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<profiles> | ||
<!-- Development profile (active by default) --> | ||
<profile> | ||
<id>dev</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
<property> | ||
<name>env</name> | ||
<value>dev</value> | ||
</property> | ||
</activation> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/dev/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
</profile> | ||
|
||
<!-- Production profile --> | ||
<profile> | ||
<id>prod</id> | ||
</profile> | ||
|
||
<!-- Demo profile --> | ||
<profile> | ||
<id>demo</id> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/demo/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>false</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
</project> |
Empty file.
13 changes: 13 additions & 0 deletions
13
docs-core/src/main/java/com/sismics/docs/core/constant/ConfigType.java
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,13 @@ | ||
package com.sismics.docs.core.constant; | ||
|
||
/** | ||
* Configuration parameters. | ||
* | ||
* @author jtremeaux | ||
*/ | ||
public enum ConfigType { | ||
/** | ||
* Lucene directory storage type. | ||
*/ | ||
LUCENE_DIRECTORY_STORAGE, | ||
} |
43 changes: 43 additions & 0 deletions
43
docs-core/src/main/java/com/sismics/docs/core/constant/Constants.java
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,43 @@ | ||
package com.sismics.docs.core.constant; | ||
|
||
/** | ||
* Application constants. | ||
* | ||
* @author jtremeaux | ||
*/ | ||
public class Constants { | ||
/** | ||
* Default locale. | ||
*/ | ||
public static final String DEFAULT_LOCALE_ID = "en"; | ||
|
||
/** | ||
* Default timezone ID. | ||
*/ | ||
public static final String DEFAULT_TIMEZONE_ID = "Europe/London"; | ||
|
||
/** | ||
* Default theme ID. | ||
*/ | ||
public static final String DEFAULT_THEME_ID = "default.less"; | ||
|
||
/** | ||
* Administrator's default password ("admin"). | ||
*/ | ||
public static final String DEFAULT_ADMIN_PASSWORD = "$2a$05$6Ny3TjrW3aVAL1or2SlcR.fhuDgPKp5jp.P9fBXwVNePgeLqb4i3C"; | ||
|
||
/** | ||
* RAM Lucene directory storage. | ||
*/ | ||
public static final String LUCENE_DIRECTORY_STORAGE_RAM = "RAM"; | ||
|
||
/** | ||
* File Lucene directory storage. | ||
*/ | ||
public static final String LUCENE_DIRECTORY_STORAGE_FILE = "FILE"; | ||
|
||
/** | ||
* Default generic user role. | ||
*/ | ||
public static final String DEFAULT_USER_ROLE = "admin"; | ||
} |
38 changes: 38 additions & 0 deletions
38
docs-core/src/main/java/com/sismics/docs/core/dao/file/theme/ThemeDao.java
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,38 @@ | ||
package com.sismics.docs.core.dao.file.theme; | ||
|
||
import java.io.File; | ||
import java.io.FilenameFilter; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import com.google.common.collect.Lists; | ||
import com.sismics.docs.core.util.DirectoryUtil; | ||
|
||
/** | ||
* Theme DAO. | ||
* | ||
* @author jtremeaux | ||
*/ | ||
public class ThemeDao { | ||
private final static FilenameFilter CSS_FILTER = new FilenameFilter() { | ||
@Override | ||
public boolean accept(File dir, String name) { | ||
return name.endsWith(".css") || name.endsWith(".less"); | ||
} | ||
}; | ||
|
||
/** | ||
* Return the list of all themes. | ||
* | ||
* @return List of themes | ||
*/ | ||
public List<String> findAll() { | ||
final File themeDirectory = DirectoryUtil.getThemeDirectory(); | ||
if (themeDirectory != null) { | ||
return Lists.newArrayList(themeDirectory.list(CSS_FILTER)); | ||
} else { | ||
return new ArrayList<String>(); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.