Skip to content

Commit

Permalink
prepare for 0.12-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
vladak committed Jan 3, 2014
1 parent f96104b commit 3e0be6b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-->

<property name="version" value="0.12-rc5"/>
<property name="version" value="0.12-rc6"/>
<property name="distname" value="opengrok"/>
<property name="src.dir" location="src"/>
<property name="src.generatedsrc.dir" location="generatedsrc"/>
Expand Down
14 changes: 7 additions & 7 deletions src/org/opensolaris/opengrok/configuration/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ public final class Configuration {
private int command_timeout;
private static final Logger logger = Logger.getLogger(Configuration.class.getName());

/**
* The name of the eftar file relative to the <var>DATA_ROOT</var>, which
* contains definition tags.
*/
public static final String EFTAR_DTAGS_FILE = "index/dtags.eftar";
private transient File dtagsEftar = null;

/**
* Get the default tab size (number of space characters per tab character)
* to use for each project. If {@code <= 0} tabs are read/write as is.
Expand Down Expand Up @@ -652,13 +659,6 @@ public String getHeaderIncludeFileContent() {
return header;
}

/**
* The name of the eftar file relative to the <var>DATA_ROOT</var>, which
* contains definition tags.
*/
public static final String EFTAR_DTAGS_FILE = "index/dtags.eftar";
private transient File dtagsEftar = null;

/**
* Get the eftar file, which contains definition tags.
*
Expand Down
6 changes: 3 additions & 3 deletions src/org/opensolaris/opengrok/web/PageConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ public final class PageConfig {
private StringBuilder headLines;
private static final Logger log = Logger.getLogger(PageConfig.class.getName());

private static final String ATTR_NAME = PageConfig.class.getCanonicalName();
private HttpServletRequest req;

/**
* Add the given data to the &lt;head&gt; section of the html page to
* generate.
Expand Down Expand Up @@ -1204,9 +1207,6 @@ public static PageConfig get(HttpServletRequest request) {
return pcfg;
}

private static final String ATTR_NAME = PageConfig.class.getCanonicalName();
private HttpServletRequest req;

private PageConfig(HttpServletRequest req) {
this.req = req;
}
Expand Down

0 comments on commit 3e0be6b

Please sign in to comment.