ae49d3d23ac518175db22bf4266f15a0cf0c905f |
|
31-Oct-2016 |
Kryštof Tulinger <krystof.tulinger@oracle.com> |
using filterXSS to avoid xss |
da30e2a0de228e96cbbeddb076efe5f38a842902 |
|
24-Oct-2016 |
Kryštof Tulinger <krystof.tulinger@oracle.com> |
allowing markdown readmes to be rendered as html |
9158900bac6adc966217d308f9ddea9f5eb540c7 |
|
22-Apr-2016 |
Kryštof Tulinger <krystof.tulinger@oracle.com> |
fixing inconsistent behaviour of opengrok cookie |
eee3266b4179dae85826d6139b3b540838ea955a |
|
27-Feb-2016 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Clean up encoding and decoding of URL parameters.
mast.jsp needs to access some URL parameters in JavaScript code.
Currently, it does this in a Java snippet that escapes the parameter
value and prints it in the HTML. This patch changes it so that the
parameters are fetched by the JavaScript code itself, eliminating the
roundtrip via the Java and HTML domains, which simplifies the quoting.
Also remove Util.escapeXml(). Instead use Util.URIEncode(),
Util.htmlize() and Util.jsStringLiteral() as appropriate.
Util.escapeXml() was a hybrid of the latter two.
Also quote some values that were previously not quoted. |
f92748f5b891c3cb3747fd8c82879f010d0f6742 |
|
26-Nov-2015 |
JHKST <jhkst@centrum.cz> |
logging - jsp tunning |
eb7a02cafb0857e1143027a016dc2a1975a9af67 |
|
20-Dec-2013 |
Vladimir Kotal <Vladimir.Kotal@Oracle.COM> |
add H A D links to directory listing
fixes #573 |
d8371503c60e1f6933455e25b1cc47e4858a3a43 |
|
13-Dec-2013 |
Vladimir Kotal <Vladimir.Kotal@Oracle.COM> |
differentiate between raw and download
fixes #578 |
871b35b666794d5a67d6d57d91db35c5d02912bb |
|
17-May-2013 |
Lubos Kosco <Lubos.Kosco@Oracle.COM> |
div src not unique when multiple readmes, closes issue #57 |
59b6a8c0cc6ef741a7180504b3c371e67c2aa338 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Fix Checkstyle warnings (FileTabCharacterCheck) |
4500b8a9d03f7278ff842af84d4bd8a955855146 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Fix PMD warning in PageConfig.getResourceFileList() - MethodReturnsInternalArray |
14a41f02433890d19b2f871156271e3388cd0845 |
|
02-Jan-2013 |
Jens Elkner <jel+opengrok@cs.uni-magdeburg.de> |
Refactor webapp |
cabfe44a0ca292e420335ed0de6114dbec603eff |
|
02-Jan-2013 |
Trond Norbye <trond.norbye@gmail.com> |
Bug 13677 - xref cache is not updated if code changes in SRC_ROOT |
138a7fea383af1a9084b7ec66d309d1cbc43d5f6 |
|
02-Jan-2013 |
Chris Eldredge <chris.eldredge@gmail.com> |
Bug 17688 - File handles leaked in JSPs |
0e06c2837bb69b9a867d3c8494a09c2f963607e2 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Moved style for symbol list to the style sheets.
(The original <style> tag was not allowed in the body of the document
and broke HTML validation.) |
0b2af20036cd228afb7d7003a07c16522f944ea1 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Sort symbols in navigation panel
Remove non-standard HTML attribute "ln" |
b4856b292d59c0aad174c348b012ec241a330ab1 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Remove unused code in list.jsp (project list is known to be non-null, so don't check for it) |
ca15dc51dcf259e9433b86192acfbe8ddc0ada17 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Bug #17631: Cookie name "OpenGrok/project" is a reserved token |
bfd2092b34b868b61615c3199a365f5fdd748c70 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Oracle.COM> |
Bug 17554 - Empty "Navigate" window in Perl code |
38ff737189d7beafce42b920855828296db0df47 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Oracle.COM> |
rename List to Navigate, disable highlight until it is fixed, add close to navigate, fix some w3c validator complains |
6fb29c51593eb4622f537cd43c1a81ffb36a8ff7 |
|
02-Jan-2013 |
Knut Anders Hatlen <knut.hatlen@oracle.com> |
Bug #17128: add more syntax highlighting styles and list all definitions/functions
Make definitions available when generating xref on the fly from the webapp. |
17b343cecb69da82215b124f39fed80167a6f2bd |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Oracle.COM> |
Bug 13184 - provide quick links to annotate,history and download from search results view |
68903e4ab30e59de41fcf7293ec11b1ac96788b1 |
|
02-Jan-2013 |
cicicici <cicicici@gmail.com> |
take 1: Bug 17128 - add more syntax highlighting styles and list all definitions/functions
SCA OS0474 |
02508b90a0eace220eabd5ec85ff37e9009c6b16 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
Bug 15240 - radio buttons in history could behave like e.g. on wikipedia
upgrade to jquery 1.4.2
simplify current js to use jquery(for annotate, line # and history commit file lists toggle) |
1c377666fe7591e06614ee1340bb31d831b60c59 |
|
02-Jan-2013 |
Knut Anders Hatlen <Knut.Hatlen@Sun.COM> |
Make AnalyzerGuru.writeXref() take a Reader instead of an InputStream
The Xref classes should be independent of the input file encoding, so
therefore a Reader (which operates on characters) is more appropriate
than an InputStream (which operates on bytes). |
ff32508916722fc0e579f39b5bf22936116b8829 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
change back to old style of choosing projects, new code still there, will be commited for next release |
eef29f7a9e60072b7dc0e4cf5c8bb0ad6fa9ba89 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
Add annotation with revision description
(thanks to Emilio Monti - emilmont@gmail.com for idea and original code - http://www.emilmont.net/doku.php?id=java:opengrok )
license stuff fixes
only show line # button when showing a file |
30c47ad9be313a6a22a45a5fd00241aeba5a2b9c |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
fix multiproject support for listing too |
981e542f40f5acaf95b69c5854e5ffb080204242 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
redesign project field, jquery used to autocomplete, fix findbugs warnings, make all pages http://validator.w3.org/ valid |
c6e0f8b39af7343c04ec7558a085c965159f4ea0 |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
increase the version number to 0.8 (finally ;) ) , reuseToken is inherited now (less code in jflex classes), small fixes in help and logic of showing the xrefs if file exists, it's xref gzipped exits and there is another indexed file with file.gz too (e.g. testdata directory) |
a7851548ebb1d736ee4564a71293fb8ee6ba460c |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
small usability and performance improvements for line # , fix compatibility for IE |
b3ead6812ab6558fee305853599021bd6901d90a |
|
02-Jan-2013 |
Lubos Kosco <Lubos.Kosco@Sun.COM> |
add line urls for easier code sharing (client generated, javascript needed)
toggle line numbers on or off (js)
fix the rest of css(now they validate) |
b1f15c8eee4334524b69a24f1d4ef80292deff0f |
|
02-Jan-2013 |
Trond Norbye <trond.norbye@sun.com> |
Bug #3078: Contents of README no longer shown as part of directory listing |
bc5d2cd5e6e3de30179760927321533c24aba395 |
|
02-Jan-2013 |
Knut Anders Hatlen <Knut.Hatlen@Sun.COM> |
Bug #3076: Compile error when showing directory listing in the webapp
Made the variable's type compatible with the return type (and removed
some double buffering while I was at it). |
754c32df22f09e74d30ff9ddaa8e0ad0e7441a1c |
|
05-Aug-2008 |
Trond Norbye <trond.norbye@sun.com> |
Store history cache and xref in compressed files
The history cache is always compressed, while the xref-pages may be stored
in plain text if you add the following to the configuration file (no command
line option to set this yet):
<void property="compressXref">
<boolean>false</boolean>
</void> |
9bb6ab643caa1e04026da68eaef430c82a206350 |
|
16-May-2008 |
magnus.lind@idainfront.se <Magnus Lind> |
Add initial support for clearcase
* Add a repository and a history parser implementation for clearcase.
* Make jsp pages accept clearcase revision identifier syntax.
* Add a fix for a test-case that breaks on windows. |
6fd168587048fe0e2cb37acdcc9ae9764c83b2d2 |
|
07-Apr-2008 |
Trond Norbye <trond.norbye@sun.com> |
Bug #1007: Add URL friendly project handling |
f70589f9924a3c9169e22ce5bb1ec2ef51c6e6b7 |
|
19-Feb-2008 |
Trond Norbye <trond.norbye@sun.com> |
Bug #557: Bogus project entries in the cookie |
85f619afce0f5860dd3265e1ac5c48efcb353921 |
|
11-Jan-2008 |
Leo Davis <ldavis@fonix.com> |
This should fix some issues with files/directories having space in pathname
problems.
web/history.jsp: added percent encoding to RSS URIs
web/list.jsp: Fix raw file downloads -- spaces had "+" instead of space.
web/mast.jsp: percent decode the path.
Fix raw file downloads -- spaces had "+" instead of space.
web/rss.jsp: percent decode the path. |
ca13a2073cb9936daab594cd277550783ac2e6b6 |
|
31-Dec-2007 |
Knut Anders Hatlen <Knut.Hatlen@Sun.COM> |
Refactoring: Created factory classes for all of the analyzers so that
all use of reflection could be removed from AnalyzerGuru. This gives
better compile-time error checking of the code, and it also makes it
easier to navigate the source with tools like "Find Usages" in
NetBeans. |
daba8f127bde81db38efd27fa72e7a0554de4987 |
|
06-Nov-2007 |
Trond Norbye <trond.norbye@sun.com> |
Encode the filename in the links to allow it to contain # |
97392391f0ead9459420b52641646a1ffa270f61 |
|
21-Aug-2007 |
Trond Norbye <trond.norbye@sun.com> |
Update the list of active projects with the currently browsed project.
Add the project containing the "current directory" when a user
navigates outside the selected projects with the xref webapp. |
82a1601128d06fe280a89464faa0b1bba419e171 |
|
29-Apr-2007 |
Knut Anders Hatlen <Knut.Hatlen@Sun.COM> |
Added "Annotate" link in webapp |
73b36d5a6848ae9189f4f9e35a68947e89b1fe80 |
|
28-Apr-2007 |
Knut Anders Hatlen <Knut.Hatlen@Sun.COM> |
Added code in the analyzers and list.jsp to show annotation. |
fbbde07cdb4b64ccd95fb93c7922cb3137087625 |
|
14-Apr-2007 |
Kyle McFarland <tfkyle@gmail.com> |
use the Data Root again for loading xref files |
bb191b4db2657326cea4ebb7a8d0508b6ab84929 |
|
19-Mar-2007 |
Trond Norbye <trond@norbye.org> |
Removed multiple copies of webpages
Some of the files stored in the conf/*/html directory did not
contain any configuration specific text, so they could be moved
to the web directory. |
9ec7787531611654e8f50932473aa48963eaba55 |
|
16-Feb-2007 |
Trond Norbye <trond@norbye.org> |
Prototype for "Project" support
First of all: This is a prototype, so don't expect it to be finished ;-)
With this version you should be able to specify various "projects" that you
would like to group your software into, and limit your search within the
selected projects. Did I mention that this is a prototype? ok.. The history
cache has been moved into $DATA_ROOT/historycache, and if you're using
Mercurial, you should probably pass the -H option to the indexer when you
generate the index database... |
3c2aee4d6fd37062518aa6de5ad12d4967ebabc0 |
|
08-Jan-2007 |
Trond Norbye <trond@norbye.org> |
Implemented glob'ing for IgnoredNames
It is now possible to use glob'ing as the pattern specified with the -i option.
ex: -i "*.bak" will ignore all files ending with .bak |
5feb9d4ec8870e9b3bec8aaaa30632851e99463b |
|
28-Dec-2006 |
Kyle McFarland <tfkyle@gmail.com> |
change foot.html to foot.jsp and use <context>/img/servedby.png for the image |
d05277b435e628b78e8f2954d1132f86647f4fe1 |
|
22-Dec-2006 |
Trond Norbye <trond@norbye.org> |
Fix problem with IllegalStateException.
If we try to send an error page back to the client we should return
from the service method instead of appending data to the output buffer. |
7844262e5641bdb32f8bc179944dbb21401c5e76 |
|
15-Nov-2006 |
Trond Norbye <trond@norbye.org> |
Add space and exception information
The modified files in a directory for each history entry should be
listed on separate lines, and print the message if I get an IO
exception during listing. |
c23e82b612acd5e947c164114377578116f6d298 |
|
15-Nov-2006 |
Trond Norbye <trond@norbye.org> |
Initial import (OpenGrok 0.3.1) |