Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Jun 2016 22:48:41 +0000 (UTC)
From:      Jason Unovitch <junovitch@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417498 - in head/devel: . sonarqube sonarqube/files
Message-ID:  <201606252248.u5PMmfr9057251@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: junovitch
Date: Sat Jun 25 22:48:41 2016
New Revision: 417498
URL: https://svnweb.freebsd.org/changeset/ports/417498

Log:
  New port: devel/sonarqube
  
  The SonarQube platform is an open source quality management platform,
  dedicated to continuously analyzing and measuring the technical quality of
  source code, from project portfolio down to the method level.
  
  Features:
  - Supports languages: Java, C/C++, Objective-C, C#, PHP, Flex, Groovy,
    JavaScript, Python, PL/SQL, COBOL, etc.
  - Can also be used in Android development.
  - Offers reports on duplicated code, coding standards, unit tests, code
    coverage, complex code, potential bugs, comments and design and
    architecture.
  - Records metrics history and provides evolution graphs ("time machine")
    and differential views.
  - Provides fully automated analyses: integrates with Maven, Ant, Gradle and
    continuous integration tools (Atlassian Bamboo, Jenkins, Hudson, etc.).
  - Integrates with the Eclipse development environment.
  - Integrates with external tools: JIRA, Mantis, LDAP, Fortify, etc.
  - Is expandable with the use of plugins.
  - Implements the SQALE methodology to compute technical debt.
  
  WWW: http://www.sonarqube.org/
  
  PR:		203077
  Submitted by:	Dusan Vejnovic <freebsd@dussan.org>

Added:
  head/devel/sonarqube/
  head/devel/sonarqube/Makefile   (contents, props changed)
  head/devel/sonarqube/distinfo   (contents, props changed)
  head/devel/sonarqube/files/
  head/devel/sonarqube/files/patch-conf_wrapper.conf   (contents, props changed)
  head/devel/sonarqube/files/pkg-message.in   (contents, props changed)
  head/devel/sonarqube/files/sonarqube.in   (contents, props changed)
  head/devel/sonarqube/pkg-descr   (contents, props changed)
  head/devel/sonarqube/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jun 25 22:23:37 2016	(r417497)
+++ head/devel/Makefile	Sat Jun 25 22:48:41 2016	(r417498)
@@ -5306,6 +5306,7 @@
     SUBDIR += smokeqt
     SUBDIR += smv
     SUBDIR += soapui
+    SUBDIR += sonarqube
     SUBDIR += sope2
     SUBDIR += sope3
     SUBDIR += sourcenav

Added: head/devel/sonarqube/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/Makefile	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,83 @@
+# Created by: Dusan Vejnovic <freebsd@dussan.org>
+# $FreeBSD$
+
+PORTNAME=	sonarqube
+PORTVERSION=	5.6
+CATEGORIES=	devel www java
+MASTER_SITES=	http://sonarsource.bintray.com/Distribution/sonarqube/
+
+MAINTAINER=	freebsd@dussan.org
+COMMENT=	Platform for continuous inspection of code quality
+
+LICENSE=	LGPL3
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libbiconv.so:converters/iconv
+RUN_DEPENDS=	javaservicewrapper:sysutils/javaservicewrapper
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+USE_RC_SUBR=	${PORTNAME}
+USERS=		www
+GROUPS=		www
+
+USES=		cpe dos2unix zip
+CPE_VENDOR=	sonarsource
+DOS2UNIX_GLOB=	*.properties *.conf
+
+USE_JAVA=	yes
+JAVA_VERSION=	1.7+
+
+SQ_FILE=	sonar.sh
+SQ_HOME=	${PREFIX}/${PORTNAME}
+SQ_LOG_DIR=	/var/log/${PORTNAME}
+SQ_LOG_FILE=	${PORTNAME}.log
+SQ_JSW=		${PREFIX}/lib/javaservicewrapper
+
+SUB_LIST+=	SQ_GROUP=${GROUPS} \
+		SQ_LOG_DIR=${SQ_LOG_DIR} \
+		SQ_LOG_FILE=${SQ_LOG_FILE} \
+		SQ_RC=${PORTNAME} \
+		SQ_RUN=${SQ_HOME}/bin/freebsd/${SQ_FILE} \
+		SQ_USER=${USERS}
+PLIST_SUB+=	SQ_GROUP=${GROUPS} \
+		SQ_HOME=${SQ_HOME} \
+		SQ_USER=${USERS}
+
+OPTIONS_RADIO=		SQL
+OPTIONS_RADIO_SQL=	MYSQL PGSQL
+
+MYSQL_USE=	mysql=yes
+PGSQL_USES=	pgsql
+
+post-patch:
+	@${REINPLACE_CMD} -e 's|%%DIR%%|${SQ_HOME}|' \
+		-e 's|%%LIB%%|${SQ_JSW}|' \
+		-e 's|%%LOG%%|${SQ_LOG_DIR}/${SQ_LOG_FILE}|' \
+		-e 's|%%WRAPPER_JAR%%|${SQ_JSW}/lib/wrapper.jar|' \
+		${WRKSRC}/conf/wrapper.conf
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${SQ_HOME}
+	@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${SQ_HOME})
+	@${MKDIR} ${STAGEDIR}${SQ_HOME}/bin/freebsd/lib
+	@${CP} ${STAGEDIR}${SQ_HOME}/bin/linux-x86-64/${SQ_FILE} \
+		${STAGEDIR}${SQ_HOME}/bin/freebsd
+	@${REINPLACE_CMD} -e 's|#RUN_AS_USER=|RUN_AS_USER=${USERS}|' \
+		-e 's|-p $$pid -o args|ww $$pid|' \
+		-e 's|=\"./wrapper\"|=\"${SQ_JSW}/bin/wrapper\"|' \
+		${STAGEDIR}${SQ_HOME}/bin/freebsd/${SQ_FILE}
+	@${MV} -f ${STAGEDIR}${SQ_HOME}/bin/freebsd/${SQ_FILE} \
+		${STAGEDIR}${SQ_HOME}/bin/freebsd/${SQ_FILE}.sample
+	@${MV} -f ${STAGEDIR}${SQ_HOME}/conf/sonar.properties \
+		${STAGEDIR}${SQ_HOME}/conf/sonar.properties.sample
+	@${MV} -f ${STAGEDIR}${SQ_HOME}/conf/wrapper.conf \
+		${STAGEDIR}${SQ_HOME}/conf/wrapper.conf.sample
+	@${RM} -drf ${STAGEDIR}${SQ_HOME}/bin/linux-x86-32
+	@${RM} -drf ${STAGEDIR}${SQ_HOME}/bin/linux-x86-64
+	@${RM} -drf ${STAGEDIR}${SQ_HOME}/bin/macosx-universal-64
+	@${RM} -drf ${STAGEDIR}${SQ_HOME}/bin/windows-x86-32
+	@${RM} -drf ${STAGEDIR}${SQ_HOME}/bin/windows-x86-64
+
+.include <bsd.port.mk>

Added: head/devel/sonarqube/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/distinfo	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1465585877
+SHA256 (sonarqube-5.6.zip) = 397c4eaf1d220cc2cef2075f709a4c50208dc91289e0234b0ae5954533f66994
+SIZE (sonarqube-5.6.zip) = 118012667

Added: head/devel/sonarqube/files/patch-conf_wrapper.conf
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/files/patch-conf_wrapper.conf	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,59 @@
+--- conf/wrapper.conf.orig	2016-03-08 16:34:14 UTC
++++ conf/wrapper.conf
+@@ -1,7 +1,7 @@
+ # Path to JVM executable. By default it must be available in PATH.
+ # Can be an absolute path, for example:
+ #wrapper.java.command=/path/to/my/jdk/bin/java
+-wrapper.java.command=java
++wrapper.java.command=/usr/local/bin/java
+ 
+ 
+ #
+@@ -14,12 +14,12 @@
+ #********************************************************************
+ wrapper.java.additional.1=-Djava.awt.headless=true
+ wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
+-wrapper.java.classpath.1=../../lib/jsw/*.jar
+-wrapper.java.classpath.2=../../lib/*.jar
+-wrapper.java.library.path.1=./lib
++wrapper.java.classpath.1=%%WRAPPER_JAR%%
++wrapper.java.classpath.2=%%DIR%%/lib/*.jar
++wrapper.java.library.path.1=%%LIB%%/lib
+ wrapper.app.parameter.1=org.sonar.application.App
+-wrapper.java.initmemory=3
+-wrapper.java.maxmemory=3
++wrapper.java.initmemory=512
++wrapper.java.maxmemory=512
+ 
+ #********************************************************************
+ # Wrapper Logs
+@@ -27,7 +27,7 @@
+ 
+ wrapper.console.format=PM
+ wrapper.console.loglevel=INFO
+-wrapper.logfile=../../logs/sonar.log
++wrapper.logfile=%%LOG%%
+ wrapper.logfile.format=M
+ wrapper.logfile.loglevel=INFO
+ 
+@@ -35,11 +35,11 @@
+ #  the log is rolled. Size is specified in bytes.  The default value
+ #  of 0, disables log rolling.  May abbreviate with the 'k' (kb) or
+ #  'm' (mb) suffix.  For example: 10m = 10 megabytes.
+-#wrapper.logfile.maxsize=0
++wrapper.logfile.maxsize=10m
+ 
+ # Maximum number of rolled log files which will be allowed before old
+ #  files are deleted.  The default value of 0 implies no limit.
+-#wrapper.logfile.maxfiles=0
++wrapper.logfile.maxfiles=10
+ 
+ # Log Level for sys/event log output.  (See docs for log levels)
+ wrapper.syslog.loglevel=NONE
+@@ -85,4 +85,4 @@
+ wrapper.disable_restarts=TRUE
+ wrapper.ping.timeout=0
+ wrapper.shutdown.timeout=3000
+-wrapper.jvm_exit.timeout=3000
+\ No newline at end of file
++wrapper.jvm_exit.timeout=3000

Added: head/devel/sonarqube/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/files/pkg-message.in	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,15 @@
+************************************************************************
+
+	Before start the SonarQube, prepare the Database and
+	the Web Server, when installing for the first time.
+
+	More information:
+	http://docs.sonarqube.org/display/SONAR/Installing
+
+	When upgrading the SonarQube, follow instructions:
+	http://docs.sonarqube.org/display/SONAR/Upgrading
+
+	To run the SonarQube from startup, add sonarqube_enable="YES"
+	in your /etc/rc.conf
+
+************************************************************************

Added: head/devel/sonarqube/files/sonarqube.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/files/sonarqube.in	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,65 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: %%SQ_RC%%
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+
+#
+# Configuration settings for %%SQ_RC%% in /etc/rc.conf:
+#
+# %%SQ_RC%%_enable (bool):
+#   Set to "NO" by default.
+#   Set it to "YES" to enable %%SQ_RC%%.
+#
+
+. /etc/rc.subr
+
+name="%%SQ_RC%%"
+rcvar=%%SQ_RC%%_enable
+extra_commands="restart status"
+
+load_rc_config $name
+
+%%SQ_RC%%_enable="${%%SQ_RC%%_enable:-"NO"}"
+
+start_precmd="%%SQ_RC%%_prestart"
+start_cmd="%%SQ_RC%%_start"
+stop_cmd="%%SQ_RC%%_stop"
+restart_cmd="%%SQ_RC%%_restart"
+status_cmd="%%SQ_RC%%_status"
+
+%%SQ_RC%%_prestart()
+{
+	if [ ! -f "%%SQ_LOG_DIR%%/%%SQ_LOG_FILE%%" ]; then
+		mkdir -p "%%SQ_LOG_DIR%%"
+		touch "%%SQ_LOG_DIR%%/%%SQ_LOG_FILE%%"
+		chown -R "%%SQ_USER%%:%%SQ_GROUP%%" "%%SQ_LOG_DIR%%"
+		chmod 755 "%%SQ_LOG_DIR%%"
+		chmod 640 "%%SQ_LOG_DIR%%/%%SQ_LOG_FILE%%"
+	fi
+}
+
+%%SQ_RC%%_start()
+{
+	%%SQ_RUN%% start
+}
+
+%%SQ_RC%%_stop()
+{
+	%%SQ_RUN%% stop
+}
+
+%%SQ_RC%%_restart()
+{
+	%%SQ_RUN%% restart
+}
+
+%%SQ_RC%%_status()
+{
+	%%SQ_RUN%% status
+}
+
+run_rc_command "$1"

Added: head/devel/sonarqube/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/pkg-descr	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,21 @@
+The SonarQube platform is an open source quality management platform,
+dedicated to continuously analyzing and measuring the technical quality of
+source code, from project portfolio down to the method level.
+
+Features:
+- Supports languages: Java, C/C++, Objective-C, C#, PHP, Flex, Groovy,
+  JavaScript, Python, PL/SQL, COBOL, etc.
+- Can also be used in Android development.
+- Offers reports on duplicated code, coding standards, unit tests, code
+  coverage, complex code, potential bugs, comments and design and
+  architecture.
+- Records metrics history and provides evolution graphs ("time machine")
+  and differential views.
+- Provides fully automated analyses: integrates with Maven, Ant, Gradle and
+  continuous integration tools (Atlassian Bamboo, Jenkins, Hudson, etc.).
+- Integrates with the Eclipse development environment.
+- Integrates with external tools: JIRA, Mantis, LDAP, Fortify, etc.
+- Is expandable with the use of plugins.
+- Implements the SQALE methodology to compute technical debt.
+
+WWW: http://www.sonarqube.org/

Added: head/devel/sonarqube/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/sonarqube/pkg-plist	Sat Jun 25 22:48:41 2016	(r417498)
@@ -0,0 +1,2182 @@
+@owner %%SQ_USER%%
+@group %%SQ_GROUP%%
+%%SQ_HOME%%/COPYING
+@sample(,,744) %%SQ_HOME%%/bin/freebsd/sonar.sh.sample
+@(,,644) %%SQ_HOME%%/bin/jsw-license/LICENSE.txt
+@sample(,,644) %%SQ_HOME%%/conf/sonar.properties.sample
+@sample(,,644) %%SQ_HOME%%/conf/wrapper.conf.sample
+@(,,644) %%SQ_HOME%%/data/README.txt
+@(,,644) %%SQ_HOME%%/extensions/jdbc-driver/oracle/README.txt
+@(,,644) %%SQ_HOME%%/extensions/plugins/README.txt
+@(,,644) %%SQ_HOME%%/lib/batch/sonar-scanner-engine-shaded-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/bundled-plugins/sonar-csharp-plugin-5.0.jar
+@(,,644) %%SQ_HOME%%/lib/bundled-plugins/sonar-java-plugin-3.13.1.jar
+@(,,644) %%SQ_HOME%%/lib/bundled-plugins/sonar-javascript-plugin-2.11.jar
+@(,,644) %%SQ_HOME%%/lib/bundled-plugins/sonar-scm-git-plugin-1.2.jar
+@(,,644) %%SQ_HOME%%/lib/bundled-plugins/sonar-scm-svn-plugin-1.3.jar
+@(,,644) %%SQ_HOME%%/lib/ce/nanohttpd-2.3.0.jar
+@(,,644) %%SQ_HOME%%/lib/ce/sonar-ce-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/common/commons-codec-1.8.jar
+@(,,644) %%SQ_HOME%%/lib/common/commons-io-2.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/commons-lang-2.6.jar
+@(,,644) %%SQ_HOME%%/lib/common/elasticsearch-1.7.5.jar
+@(,,644) %%SQ_HOME%%/lib/common/logback-classic-1.1.3.jar
+@(,,644) %%SQ_HOME%%/lib/common/logback-core-1.1.3.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-analyzers-common-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-core-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-grouping-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-highlighter-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-join-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-memory-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-misc-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-queries-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-queryparser-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-sandbox-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/lucene-suggest-4.10.4.jar
+@(,,644) %%SQ_HOME%%/lib/common/slf4j-api-1.7.12.jar
+@(,,644) %%SQ_HOME%%/lib/common/sonar-process-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/common/sonar-process-monitor-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/jdbc/h2/h2-1.3.176.jar
+@(,,644) %%SQ_HOME%%/lib/jdbc/mssql/sqljdbc42.jar
+@(,,644) %%SQ_HOME%%/lib/jdbc/mysql/mysql-connector-java-5.1.35.jar
+@(,,644) %%SQ_HOME%%/lib/jdbc/postgresql/postgresql-9.3-1102-jdbc41.jar
+@(,,644) %%SQ_HOME%%/lib/jsw/wrapper-3.2.3.jar
+@(,,644) %%SQ_HOME%%/lib/search/sonar-search-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/activation-1.1.1.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-beanutils-1.8.3.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-csv-1.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-dbcp-1.4.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-dbutils-1.5.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-email-1.3.2.jar
+@(,,644) %%SQ_HOME%%/lib/server/commons-pool-1.5.4.jar
+@(,,644) %%SQ_HOME%%/lib/server/gson-2.3.1.jar
+@(,,644) %%SQ_HOME%%/lib/server/guava-17.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/jcl-over-slf4j-1.7.12.jar
+@(,,644) %%SQ_HOME%%/lib/server/jruby-complete-1.7.9.jar
+@(,,644) %%SQ_HOME%%/lib/server/jruby-rack-1.1.13.2.jar
+@(,,644) %%SQ_HOME%%/lib/server/jul-to-slf4j-1.7.12.jar
+@(,,644) %%SQ_HOME%%/lib/server/log4j-over-slf4j-1.7.12.jar
+@(,,644) %%SQ_HOME%%/lib/server/logback-access-1.1.3.jar
+@(,,644) %%SQ_HOME%%/lib/server/lz4-1.3.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/mail-1.4.5.jar
+@(,,644) %%SQ_HOME%%/lib/server/mybatis-3.2.7.jar
+@(,,644) %%SQ_HOME%%/lib/server/okhttp-2.6.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/okio-1.6.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/picocontainer-2.15.jar
+@(,,644) %%SQ_HOME%%/lib/server/protobuf-java-3.0.0-beta-2.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-classloader-1.0.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-core-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-db-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-markdown-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-plugin-api-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-plugin-bridge-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-scanner-protocol-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-server-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-update-center-common-1.13.jar
+@(,,644) %%SQ_HOME%%/lib/server/sonar-ws-5.6.jar
+@(,,644) %%SQ_HOME%%/lib/server/stax2-api-3.1.4.jar
+@(,,644) %%SQ_HOME%%/lib/server/staxmate-2.0.1.jar
+@(,,644) %%SQ_HOME%%/lib/server/tomcat-embed-core-8.0.30.jar
+@(,,644) %%SQ_HOME%%/lib/server/tomcat-embed-el-8.0.30.jar
+@(,,644) %%SQ_HOME%%/lib/server/tomcat-embed-jasper-8.0.30.jar
+@(,,644) %%SQ_HOME%%/lib/server/tomcat-embed-logging-juli-8.0.30.jar
+@(,,644) %%SQ_HOME%%/lib/server/woodstox-core-lgpl-4.4.0.jar
+@(,,644) %%SQ_HOME%%/lib/sonar-application-5.6.jar
+@(,,644) %%SQ_HOME%%/temp/README.txt
+@(,,644) %%SQ_HOME%%/web/.htaccess
+@(,,644) %%SQ_HOME%%/web/401.html
+@(,,644) %%SQ_HOME%%/web/404.html
+@(,,644) %%SQ_HOME%%/web/500.html
+@(,,644) %%SQ_HOME%%/web/META-INF/MANIFEST.MF
+@(,,644) %%SQ_HOME%%/web/META-INF/init.rb
+@(,,644) %%SQ_HOME%%/web/META-INF/maven/org.sonarsource.sonarqube/sonar-web/pom.properties
+@(,,644) %%SQ_HOME%%/web/META-INF/maven/org.sonarsource.sonarqube/sonar-web/pom.xml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/account_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/admin_dashboards_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/all_projects_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/api_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/authentication_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/components_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/events_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/favourites_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/gwp_resources_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/issues_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/java_ws_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/profiles_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/projects_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/properties_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/resource_rest_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/resources_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/rest_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/server_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/tests_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/timemachine_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/updatecenter_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/user_properties_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/api/widgets_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/application_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/background_tasks_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/code_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/coding_rules_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/comparison_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/component_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/component_issues_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/component_measures_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/confirm_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/custom_measures_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/dashboard_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/dashboards_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/drilldown_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/email_configuration_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/encryption_configuration_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/favourites_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/groups_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/issues_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/maintenance_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/markdown_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/measures_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/metrics_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/overview_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/permission_templates_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/plugins/configuration_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/plugins/home_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/plugins/resource_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/profiles_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/project_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/project_roles_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/projects_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/property_sets_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/quality_gates_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/resource_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/roles_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/rules_configuration_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/rules_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/server_id_configuration_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/sessions_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/settings_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/setup_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/system_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/updatecenter_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/user_groups_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/users_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/view_projects_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/web_api_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/controllers/widget_controller.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/application_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/components_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/dashboard_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/issues_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/measures_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/metrics_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/plugins_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/profiles_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/project_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/properties_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/resource_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/roles_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/rules_configuration_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/sessions_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/settings_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/system_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/updatecenter_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/users_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/helpers/widget_properties_helper.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/active_dashboard.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/active_rule.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/active_rule_change.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/active_rule_param_change.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/active_rule_parameter.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/api.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/api/dashboard_configuration.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/api/pagination.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/api/utils.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/author.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/caches.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/chart_measure.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/dashboard.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/database_migration_manager.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/dependency.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/errors.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/event.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/event_category.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/group.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/group_role.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/internal.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/issue.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/loaded_template.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/measure_color.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/measure_filter.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/measure_filter_display.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/measure_filter_display_list.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/measure_filter_favourite.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/metric.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/navigation.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/profile.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/project.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/project_link.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/project_measure.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/property.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/property_type.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/resource_deletion_manager.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/resource_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/rule.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/rules_parameter.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/severity.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/snapshot.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/sonar/resource_finder.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/sonar/rule_priority.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/sonar/timemachine_row.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/trends_chart.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/user.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/user_role.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/widget.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/models/widget_property.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/_change_password_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/_favorites.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/_global_notifications.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/_per_project_notifications.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/account/notifications.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/admin_dashboards/_list.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/admin_dashboards/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/all_projects/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/api_documentation/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/background_tasks/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/branding/_footer.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/bulk_deletion/_pending_deletions_screen.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/code/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/coding_rules/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/comparison/_versions.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/comparison/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/component/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/component_issues/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/component_measures/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/configuration/index.rhtml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/confirm/_confirm.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/custom_measures/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_configure_widget.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_header.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_widget.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_widget_definition.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_widget_definitions.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_widget_properties.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/_widget_title.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/configure.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/empty.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboard/no_dashboard.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_available_dashboards.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_create_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_dashboard_operations.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_delete_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_edit_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/_my_dashboards.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/dashboards/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/drilldown/issues.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/email_configuration/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/encryption_configuration/_encrypt.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/encryption_configuration/_generate_secret_key.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/encryption_configuration/generate_secret_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/encryption_configuration/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/groups/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_bulk_change_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_filter_copy_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_filter_edit_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_filter_favourites.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_filter_save_as_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/_filter_shared_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/manage.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/issues/search.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_footer.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_head.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_iframe.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_layout.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_navbar.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/_nolayout.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/application.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/layouts/nonav.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/maintenance/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/markdown/_tips.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/markdown/help.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_copy_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_display.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_display_list.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_edit_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_favourites.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_favourites2.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_qualifiers.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_save_as_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_search_body.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_search_header.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/_shared_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/manage.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/measures/search.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/metrics/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/overview/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/permission_templates/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/plugins/rails_page.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/profiles/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/_delete_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/_key_modules.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/_prepare_keys.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/_snapshot_title.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/background_tasks.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/deletion.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/history.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/key.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/links.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/pending_deletion.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/prepare_key_bulk_update.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/profile.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/qualitygate.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/settings.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/widgets/issues/_issues_list.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project/widgets/issues/_issues_list_widget.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/project_roles/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/projects/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/property_sets/_list.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/quality_gates/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/roles/global.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/roles/projects.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/server_id_configuration/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/sessions/_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/sessions/login.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/sessions/new.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/sessions/unauthorized.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_error.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_multi_value.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_properties.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_set_instance.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_settings.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_single_value.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_special.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_BOOLEAN.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_FLOAT.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_INTEGER.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_LICENSE.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_METRIC.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_PASSWORD.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_PROPERTY_SET.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_PROPERTY_SET_DEFINITION.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_REGULAR_EXPRESSION.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_SINGLE_SELECT_LIST.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_STRING.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_TEXT.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/_type_USER_LOGIN.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/settings/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/setup/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/shared/_no_issues.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/shared/_result_messages.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/system/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/updatecenter/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/_change_password_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/_create_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/_edit_form.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/_select_group.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/users/new.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/utils/_tfoot_pagination.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/view_projects/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/web_api/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/app/views/widget/index.html.erb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/classes/com/sonarsource/branding
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/boot.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/database.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/environment.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/environments/development.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/environments/production.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/available_locales.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/close_connections.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/inflections.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/jrails.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/mime_types.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/new_rails_defaults.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/initializers/site_keys.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/HOW_TO_UPGRADE_LOCALES.txt
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/de.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ar.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/bg.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/bn-IN.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/bs.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ca.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/cs.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/cy.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/da.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/de-AT.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/de-CH.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/de.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/dsb.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/el.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/en-AU.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/en-GB.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/en-US.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/eo.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es-AR.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es-CL.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es-CO.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es-MX.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es-PE.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/es.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/et.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/eu.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fa.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fi.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fr-CA.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fr-CH.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fr.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/fur.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/gl-ES.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/gsw-CH.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/he.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/hi-IN.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/hi.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/hr.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/hsb.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/hu.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/id.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/is.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/it.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ja.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ko.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/lo.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/lt.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/lv.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/mk.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/mn.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/nb.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/nl.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/nn.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/pl.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/pt-BR.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/pt-PT.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/rm.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ro.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/ru.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sk.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sl.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sr-Latn.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sr.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sv-SE.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/sw.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/th.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/tr.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/uk.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/vi.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/zh-CN.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/defaults/zh-TW.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/en-AU.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/en-GB.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/en-US.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/en.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/es.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/fr.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/locales/ru.yml
+@(,,644) %%SQ_HOME%%/web/WEB-INF/config/routes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/001_initial_schema.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/002_index_database.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/010_create_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/011_create_administrator.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/014_create_rules_profiles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/035_create_snapshot_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/053_create_events_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/059_create_properties.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/061_create_measure_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/062_add_project_kee_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/079_create_groups.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/080_create_groups_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/086_create_group_roles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/087_create_user_roles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/088_create_default_users_and_groups.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/093_create_dependencies_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/095_increase_measure_id_size.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1000_create_user_tokens.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1001_fix_size_of_snapshots_qualifier.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1003_add_index_on_ce_activity_is_last_key.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1004_add_ce_activity_snapshot_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1005_add_decimal_scale_to_metrics.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1006_update_custom_dashboard_in_loaded_templates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1007_add_index_on_ce_queue_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1008_insert_gate_admin_permission_for_each_profile_admin.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1009_remove_component_page_properties.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1010_add_index_measures_person_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1011_add_users_identity_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1012_migrate_users_identity.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1013_migrate_quality_gates_conditions.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1014_migrate_disabled_users_to_only_keep_login_and_name.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1015_remove_preview_permission.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1017_increase_projects_name_columns_size.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1100_add_rules_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1101_feed_rules_long_date_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1102_delete_measures_with_characteristic_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1103_drop_table_characteristics.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1104_add_active_rules_long_date_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1105_feed_active_rules_long_date_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1106_add_issues_type.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1107_feed_issues_types.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1108_drop_rules_dates_and_characteristics.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1109_rename_rules_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1110_drop_active_rules_date_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1111_rename_active_rules_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1112_feed_rules_types.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1113_remove_duplications_psid_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1114_remove_issues_status_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1115_remove_issues_severity_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1116_rename_issues_debt_and_effort_to_fix_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1117_rename_rules_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1118_fix_size_of_issue_changes_login.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1119_add_users_local_column.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1120_delete_measures_with_rule_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1121_drop_table_action_plans.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1122_remove_issue_action_plan_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1123_delete_manual_issues.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1124_delete_manual_rules.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1125_add_index_ce_activity_islast_status.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1150_fix_type_of_rule_type_on_mysql.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1151_fix_length_of_issues_message_on_oracle.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/1152_remove_useless_indexes_on_group_roles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/131_create_quality_models.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/140_create_characteristic_properties.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/151_create_dashboards.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/163_add_variation_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/169_add_columns_for_profiles_inheritance.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/200_add_index_to_characteristic_property.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/202_create_rule_changes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/211_create_manual_measures.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/215_create_notifications.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/217_create_duplications_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/220_update_events_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/222_add_index_on_dependencies_project_snapshot.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/235_create_loaded_templates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/237_create_table_resource_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/238_create_action_plans.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/239_delete_duplications_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/252_create_rule_and_active_rule_notes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/257_add_active_field_on_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/283_create_authors_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/285_add_resource_index_primary_key.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/286_add_indices_to_resource_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/300_add_global_to_dashboards.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/301_add_resource_id_to_widgets.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/320_move_default_roles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/350_create_semaphores.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/351_add_unique_index_to_authors.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/353_increase_group_name_size.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/354_increase_snapshots_path_size.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/355_increase_snapshots_version_size.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/356_create_measure_filters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/358_create_measure_filter_favourites.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/370_create_graphs.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/387_create_snapshot_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/388_add_profile_administrator_role.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/391_add_id_to_duplications_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/392_update_active_rule_changes_user_name_to_nullable.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/398_create_issues.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/399_create_issue_changes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/401_migrate_violations_to_issues.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/404_add_index_to_snapshots_root_project_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/405_add_index_to_group_roles_role.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/410_add_oracle_id_triggers.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/411_create_issue_filters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/412_create_issue_filter_favourites.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/413_add_dashboard_sharing_permission.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/414_add_scan_and_dry_run_permissions.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/415_create_permission_templates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/416_create_permission_templates_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/417_create_permission_templates_groups.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/418_migrate_default_permissions.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/419_add_index_to_rules_plugin_rule_key_and_plugin_name.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/432_fix_oracle_trigger_names.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/433_add_index_to_characteristics_enabled.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/434_move_issues_id_to_bigint.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/441_add_provisioning_permission.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/442_add_technical_debt_to_issue.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/460_add_unique_constraint_to_groups_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/461_add_characteristics_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/463_add_administer_issues_perm.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/464_remove_useless_characteristics_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/465_add_perm_template_key_pattern_column.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/467_add_issue_change_creation_date.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/480_add_rule_note_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/483_add_rules_parameter_key_to_active_rule_parameters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/486_add_resource_path_column.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/488_add_project_deprecated_key_column.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/492_remove_rule_notes_and_active_rule_notes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/510_create_quality_gates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/511_create_quality_gate_conditions.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/520_add_debt_columns_to_rules.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/530_merge_measure_data_into_project_measures.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/532_increase_size_of_user_login.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/533_add_rule_tags_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/535_increase_size_of_measure_text_value.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/536_remove_active_rule_notes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/538_add_dates_to_active_rules_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/540_create_activities_table.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/541_add_unique_index_on_active_rule_key.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/542_add_index_on_snapshot_data_resource_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/544_rename_rules_parent_id_to_template_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/545_rename_rules_cardinality_to_is_template.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/548_add_qprofile_keys_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/549_feed_qprofile_keys.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/552_add_qprofile_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/555_add_event_data_column.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/580_drop_active_rule_changes_tables.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/581_add_rules_description_format.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/600_mysql_mediumtext_to_longtext.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/601_add_missing_custom_rule_parameters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/603_add_enabled_to_projects_kee_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/604_delete_unescaped_activities.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/605_remove_duplication_in_group_roles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/702_create_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/703_add_project_name_to_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/704_add_project_uuid_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/705_populate_projects_uuid_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/706_add_snapshot_id_to_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/707_add_business_dates_to_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/708_add_project_uuid_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/709_add_issue_updated_at_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/710_replace_issue_filters_project_key_by_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/711_add_updated_at_to_snapshot_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/712_feed_snapshot_sources_updated_at.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/713_create_file_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/714_feed_file_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/715_add_authorization_updated_at_to_projects.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/716_insert_projects_authorization_updated_at.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/717_drop_snapshot_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/718_add_issue_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/719_feed_issue_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/720_rename_issue_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/721_remove_sort_field_from_issue_filters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/750_add_issues_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/752_add_users_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/753_feed_users_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/754_rename_users_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/755_add_scm_accounts_to_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/756_change_report_data_to_blob.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/758_rename_component_related_params_in_issue_filters.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/759_copy_scm_accounts_from_authors_to_users.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/760_add_issue_changes_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/761_feed_issue_changes_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/762_rename_issue_changes_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/763_add_analysis_reports_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/764_feed_analysis_reports_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/765_rename_analysis_reports_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/766_add_file_sources_src_hash.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/768_drop_snapshot_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/769_add_projects_module_uuid_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/770_feed_issue_tags.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/771_add_issues_component_uuids_indexes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/772_feed_issue_component_uuids.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/773_feed_issues_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/775_add_snapshots_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/776_feed_snapshots_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/777_rename_snapshots_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/778_remove_issues_component_ids_and_creation_date_indexes.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/779_drop_issues_columns.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/780_rename_issues_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/781_add_file_sources_binary_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/782_feed_file_sources_binary_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/783_drop_file_sources_data.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/784_add_semaphores_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/786_rename_semaphores_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/787_add_manual_measures_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/788_feed_manual_measures_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/789_rename_manual_measures_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/790_update_projects_module_uuid_path.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/791_add_events_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/792_feed_events_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/793_rename_events_long_dates.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/794_add_characteristic_usability_and_sub_characteristics_compliance.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/795_remove_permissions_on_modules.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/796_add_uuid_to_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/900_add_project_links_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/901_feed_project_links_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/902_remove_project_links_project_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/903_add_events_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/904_feed_events_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/905_remove_events_resource_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/906_create_project_profiles.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/907_add_rules_profiles_is_default.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/908_move_project_profile_association.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/912_add_file_sources_data_type.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/913_feed_file_sources_data_type.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/915_drop_table_graphs.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/916_feed_metrics_booleans.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/917_remove_metrics_origin.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/918_add_manual_measures_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/919_feed_manual_measures_component_uuid.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/920_remove_snapshot_libraries.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/921_remove_component_libraries.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/922_drop_table_dependencies.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/923_remove_manual_measures_resource_id.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/924_drop_semaphores.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/925_remove_duplicated_component_keys.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/926_update_projects_kee_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/927_add_issues_locations.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/929_add_commit_in_file_sources.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/930_add_projects_qualifier_index.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/931_create_ce_activity.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/932_create_ce_queue.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/933_drop_table_analysis_reports.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/934_remove_analysis_reports_from_activities.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/935_add_provisioning_permission_to_scan.rb
+@(,,644) %%SQ_HOME%%/web/WEB-INF/db/migrate/936_delete_property_prevent_auto_project_creation.rb

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606252248.u5PMmfr9057251>