Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. It enables you to change the Developer Settings without navigating away from your current page.
  2. It provides a visual reminder that VIVO is in Developer Mode. If a production instance were accidentally configured to run in Developer Mode, it would be easily noticed.

No Developer PanelDeveloper Panel (closed)

 Image Added

 

Entering Developer Mode

developer.properties file

...

The Developer Panel will immediately appear below the page header. You may click on the panel to open it and change the settings. The Developer Panel will continue to appear in every page (except for some "back-end" pages for editing the ontology).

The settings

When open, the developer panel looks like this:

Image Removed

The developer panel has two general settings, and three tabs of additional settings. The following tables show the meaning of each setting in the developer panel, and how to specify it in the developer.properties file.

General settings

These appear at the top of the panel, regardless of which tab is selected.

In the panelEnable developer mode
In the filedeveloper.enabled
EffectCauses the developer panel to be displayed on each VIVO page. Enables all of the other developer settings. If this is false, other settings will retain their values, but will not take effect.
In the panelAllow anonymous user to see and modify developer settings
In the filedeveloper.permitAnonymousControl
EffectIf true, any VIVO user may change the developer settings. If false, only a system administrator (or root) may change the settings.

The "General" tab

Image Added

Freemarker settings

In the panelDefeat the template cache
In the filedeveloper.defeatFreemarkerCache
EffectIf true, each Freemarker template is loaded from disk each time it is used. If false, a template change may be on disk for up to one minute before it is loaded.
In the panelInsert HTML comments and start and end of templates
In the filedeveloper.insertFreemarkerDelimiters
Effect

If true, you may view the HTML source for a VIVO page to see which Freemarker templates were used to create each portion of the page. For example:

Code Block
languagexml
...
<!-- FM_BEGIN view-search-default.ftl -->
<a href="/vivo/display/n2252" title="individual name">Oswald, Jeremiah</a>
        <span class="display-title">Faculty Member</span>
<p class="snippet"></p><!-- FM_END view-search-default.ftl -->
...

SPARQL Query settings

In the panelLOG each query
In the filedeveloper.loggingRDFService.enable
Effect

Write an entry to the log for each SPARQL query, assuming that INFO-level logging is enabled for the RDFServiceLogger. Each entry includes

  • The time spent executing the query
  • The name of the method on RDFService that received the query
  • The format of the result stream from RDFService
  • The text of the query.

The remaining settings in this area can be used to restrict which queries are logged, or to include more information for each query.

In the panelAdd Show stack trace
In the filedeveloper.loggingRDFService.stackTrace
EffectEach log entry will include a stack trace. The trace is abridged so it starts after the ApplicationFilterChain, omits any Jena classes, and ends at the RDFService.

...

In the panelRestrict by calling stack
In the filedeveloper.loggingRDFService.stackRestriction
EffectSet this to a regular expression. A query will be logged only if the abridged calling stack matches the regular expression, in whole or in part.

Page configuration settings

In the panelLog the use of custom list view XML files.
In the filedeveloper.pageContents.logCustomListView
EffectWrite an entry to the log each time a property is displayed using a list view other than the default lists view.
In the panelLog the use of custom short views in search, index and browse pages.
In the filedeveloper.pageContents.logCustomShortView
EffectWrite an entry to the log each time a search result is displayed using a short view other than the default view for that context.

Language support settings

In the panelDefeat the cache of language property files
In the filedeveloper.i18n.defeatCache
EffectIf true, the language property files are re-loaded each time they are called for. If false, the language property files are loaded only once, when VIVO starts up.
In the panelLog the retrieval of language strings
In the filedeveloper.i18n.logStringRequests.
EffectWrite an entry to the log each time a language-specific string is retrieved from one of the language property files.

...

The developer panel "General" tab also contains several these links to special VIVO pages that may be helpful to developers.

Link textSet log levels
URL/admin/log4j.jsp
The pageDisplays the logging levels of every Java class in VIVO, providing that it has an active Log. You must be logged in as a system administrator (or root) to use this page. Find the class you are interested in, set the logging level, then scroll to the bottom of the page to Submit changes to logging levels.

...

Link textShow background threads
URL/admin/showThreads
The pageDisplays information about the active background threads. These threads may be rebuilding the search index, re-inferencing the knowledge base, or rebuilding the Class Cache.

The "Search" tab

Image Added

Search query settings

In the panelLog searches
In the filedeveloper.searchEngine.enable
Effect

Write an entry to the log for each Search query, assuming that INFO-level logging is enabled for the SearchEngineLogger. Each entry includes

  • The time spent executing the query
  • The search query, including the query text, start row, row limits, search fields, return fields, facet fields, and filters.
  • The number of results returned.

The remaining settings in this area can be used to restrict which queries are logged, or to include more information for each query.

In the panelShow stack trace
In the filedeveloper.searchEngine.addStackTrace
EffectEach log entry will include a stack trace. The trace is abridged so it starts after the ApplicationFilterChain and ends at the SearchEngineWrapper.
In the panelShow search results
In the filedeveloper.searchEngine.addResults
EffectEach log entry will include the search records that were returned from the query, as well as any facet fields.
In the panelRestrict by query string
In the filedeveloper.searchEngine.queryRestriction
EffectSet this to a regular expression. A query will be logged only if the text of the query matches the regular expression, in whole or in part.
In the panelRestrict by calling stack
In the filedeveloper.searchEngine.stackRestriction
EffectSet this to a regular expression. A query will be logged only if the abridged calling stack matches the regular expression, in whole or in part.

Search indexing settings

Warning

TBD

In the panelLog indexing
In the filedeveloper.searchIndex.enable
Effect 
In the panel Show document contents
In the filedeveloper.searchIndex.showDocuments
Effect 
In the panel Restrict by URI or name
In the filedeveloper.searchIndex.uriOrNameRestriction
Effect 
In the panel Restrict by document contents
In the filedeveloper.searchIndex.documentRestriction
Effect 
In the panel Log deletions
In the filedeveloper.searchDeletions.enable
Effect 

Links

Link textRebuild search index
URL/SearchIndex
The pageAllows you to request a rebuild of the search index, and to monitor its progress.

The "Authorization" tab

Image Added

Warning

TBD

 

What if the developer panel doesn't appear?

...