stable
Clone or download
Read-only
Minimal changes has been made to the GitPHP sources, everything that was working before this contribution should continue to work. A specifity on the blobdiff action that was present when a GET parameter named jenkins was set to "true" has been removed. The use case for this seems not to be known anymore and anything relying on the UI will probably be broken with the upcoming work anyway. This is part of story #10411: cleanly integrate gitphp into tuleap Change-Id: I8e83fb69d4e392ec06f09aabca5ecfe1c49be293
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/git/etc/config.inc.dist | +0 | −4 | Go to diff View file |
M | plugins/git/include/Git/GitRepositoryBrowserController.php | +2 | −6 | Go to diff View file |
A | plugins/git/include/GitPHP/Config.php | +163 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/Log.php | +254 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/MessageException.php | +40 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/Resource.php | +286 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/Util.php | +98 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/cache/Cache.php | +331 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/cache/Memcache.php | +210 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/cache/memcache_cache_handler.php | +123 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller.php | +118 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/ControllerBase.php | +376 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Blame.php | +176 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Blob.php | +226 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Blobdiff.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Commit.php | +121 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Commitdiff.php | +147 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_DiffBase.php | +112 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Feed.php | +163 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Heads.php | +110 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_History.php | +119 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Log.php | +138 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Message.php | +145 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Project.php | +130 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_ProjectList.php | +168 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Search.php | +183 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Snapshot.php | +231 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Tag.php | +120 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Tags.php | +110 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/controller/Controller_Tree.php | +148 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Archive.php | +521 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Blob.php | +537 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Commit.php | +1096 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/DiffExe.php | +259 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/FileDiff.php | +842 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/FilesystemObject.php | +280 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/GitExe.php | +303 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/GitObject.php | +181 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Head.php | +83 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Pack.php | +569 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Project.php | +1776 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectList.php | +92 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListArray.php | +79 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListArrayLegacy.php | +73 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListBase.php | +308 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListDirectory.php | +138 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListFile.php | +76 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/ProjectListScmManager.php | +125 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Ref.php | +169 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Tag.php | +756 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/TmpDir.php | +244 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/Tree.php | +348 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/git/TreeDiff.php | +288 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/BUGS | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/CHANGES | +806 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/COPYING | +340 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/README | +33 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/THANKS | +206 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/TODO | +71 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/__filesource/fsource_geshi_core_geshi.php.html | +4616 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/blank.html | +13 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/classtrees_geshi.html | +24 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/elementindex.html | +867 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/elementindex_geshi.html | +864 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/errors.html | +20 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/geshi/core/GeSHi.html | +2676 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/geshi/core/_geshi.php.html | +478 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/index.html | +24 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/li_geshi.html | +46 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractClass.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractClass_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractMethod.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractPrivateClass.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractPrivateClass_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/AbstractPrivateMethod.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Class.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Class_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Constant.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Constructor.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Destructor.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Function.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Global.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/I.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Index.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Interface.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Interface_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/L.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Lminus.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Lplus.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Method.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Page.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Page_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/PrivateClass.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/PrivateClass_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/PrivateMethod.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/PrivateVariable.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/StaticMethod.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/StaticVariable.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/T.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Tminus.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Tplus.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/Variable.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/blank.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/class_folder.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/empty.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/file.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/folder.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/function_folder.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/next_button.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/next_button_disabled.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/package.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/package_folder.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/previous_button.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/previous_button_disabled.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/private_class_logo.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/tutorial.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/tutorial_folder.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/media/images/up_button.png | Binary file | Go to diff View file | |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/packages.html | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/api/todolist.html | +42 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/geshi-doc.html | +4053 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/geshi-doc.txt | +1741 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/docs/phpdoc.ini | +90 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi.php | +4656 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/4cs.php | +139 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/abap.php | +1409 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/actionscript.php | +197 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/actionscript3.php | +473 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ada.php | +135 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/apache.php | +480 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/applescript.php | +157 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/apt_sources.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/asm.php | +225 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/asp.php | +164 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/autoconf.php | +512 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/autohotkey.php | +373 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/autoit.php | +1175 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/avisynth.php | +194 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/awk.php | +158 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/bash.php | +327 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/basic4gl.php | +341 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/bf.php | +114 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/bibtex.php | +183 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/blitzbasic.php | +185 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/bnf.php | +119 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/boo.php | +217 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/c.php | +202 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/c_mac.php | +227 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/caddcl.php | +126 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cadlisp.php | +186 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cfdg.php | +124 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cfm.php | +299 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/chaiscript.php | +140 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cil.php | +196 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/clojure.php | +134 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cmake.php | +181 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cobol.php | +244 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cpp-qt.php | +564 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cpp.php | +240 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/csharp.php | +253 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/css.php | +212 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/cuesheet.php | +138 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/d.php | +272 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/dcs.php | +182 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/delphi.php | +289 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/diff.php | +196 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/div.php | +126 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/dos.php | +202 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/dot.php | +164 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ecmascript.php | +210 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/eiffel.php | +395 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/email.php | +210 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/erlang.php | +441 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/fo.php | +327 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/fortran.php | +160 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/freebasic.php | +141 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/fsharp.php | +211 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gambas.php | +214 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gdb.php | +175 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/genero.php | +463 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/genie.php | +157 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gettext.php | +97 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/glsl.php | +205 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gml.php | +506 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gnuplot.php | +296 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/groovy.php | +1011 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/gwbasic.php | +153 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/haskell.php | +202 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/hicest.php | +108 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/hq9plus.php | +104 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/html4strict.php | +203 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/icon.php | +212 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/idl.php | +123 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ini.php | +128 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/inno.php | +212 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/intercal.php | +122 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/io.php | +138 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/j.php | +227 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/java.php | +983 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/java5.php | +1037 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/javascript.php | +150 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/jquery.php | +238 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/kixtart.php | +329 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/klonec.php | +282 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/klonecpp.php | +310 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/latex.php | +223 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lisp.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/locobasic.php | +130 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/logtalk.php | +330 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lolcode.php | +152 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lotusformulas.php | +318 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lotusscript.php | +191 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lscript.php | +387 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lsl2.php | +898 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/lua.php | +137 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/m68k.php | +143 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/magiksf.php | +193 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/make.php | +151 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mapbasic.php | +908 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/matlab.php | +227 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mirc.php | +171 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mmix.php | +173 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/modula2.php | +136 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/modula3.php | +135 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mpasm.php | +164 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mxml.php | +145 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/mysql.php | +475 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/newlisp.php | +191 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/nsis.php | +351 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oberon2.php | +135 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/objc.php | +358 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ocaml-brief.php | +112 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ocaml.php | +187 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oobas.php | +135 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oracle11.php | +614 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oracle8.php | +496 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oxygene.php | +152 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/oz.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pascal.php | +152 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pcre.php | +188 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/per.php | +302 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/perl.php | +213 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/perl6.php | +197 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pf.php | +178 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/php-brief.php | +222 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/php.php | +1114 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pic16.php | +141 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pike.php | +103 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/pixelbender.php | +176 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/plsql.php | +256 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/postgresql.php | +288 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/povray.php | +199 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/powerbuilder.php | +418 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/powershell.php | +277 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/progress.php | +485 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/prolog.php | +143 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/properties.php | +127 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/providex.php | +299 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/purebasic.php | +303 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/python.php | +237 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/q.php | +149 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/qbasic.php | +158 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/rails.php | +406 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/rebol.php | +196 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/reg.php | +233 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/robots.php | +100 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/rpmspec.php | +133 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/rsplus.php | +483 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/ruby.php | +231 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/sas.php | +290 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/scala.php | +122 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/scheme.php | +170 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/scilab.php | +295 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/sdlbasic.php | +165 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/smalltalk.php | +154 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/smarty.php | +192 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/sql.php | +140 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/systemverilog.php | +317 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/tcl.php | +194 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/teraterm.php | +317 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/text.php | +84 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/thinbasic.php | +868 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/tsql.php | +375 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/typoscript.php | +300 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/unicon.php | +210 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/vala.php | +151 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/vb.php | +157 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/vbnet.php | +201 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/verilog.php | +173 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/vhdl.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/vim.php | +420 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/visualfoxpro.php | +456 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/visualprolog.php | +129 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/whitespace.php | +121 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/whois.php | +181 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/winbatch.php | +369 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/xbasic.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/xml.php | +157 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/xorg_conf.php | +124 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/xpp.php | +436 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/geshi/geshi/z80.php | +144 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/AUTHORS | +3 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/COPYING | +340 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/Makefile | +38 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/README | +161 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/gettext.inc | +534 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/gettext.php | +421 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/streams.php | +167 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/tests/.simpletest_skip | +0 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/tests/LocalesTest.php | +66 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/php-gettext/tests/ParsingTest.php | +43 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty-gettext/COPYING | +458 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty-gettext/ChangeLog | +41 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty-gettext/README | +151 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty-gettext/block.t.php | +126 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty-gettext/tsmarty2c.php | +124 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/BUGS | +7 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/COPYING.lib | +458 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/ChangeLog | +9179 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/FAQ | +284 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/INSTALL | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/NEWS | +1067 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/QUICK_START | +103 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/README | +86 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/RELEASE_NOTES | +428 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/TODO | +10 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/Config_File.class.php | +393 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/Smarty.class.php | +1961 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/Smarty_Compiler.class.php | +2365 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/debug.tpl | +157 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.assemble_plugin_filepath.php | +67 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.assign_smarty_interface.php | +43 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.create_dir_structure.php | +79 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.display_debug_console.php | +61 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.get_include_path.php | +44 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.get_microtime.php | +23 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.get_php_resource.php | +80 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.is_secure.php | +59 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.is_trusted.php | +47 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.load_plugins.php | +125 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.load_resource_plugin.php | +74 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.process_cached_inserts.php | +71 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.process_compiled_include.php | +37 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.read_cache_file.php | +101 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.rm_auto.php | +71 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.rmdir.php | +54 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.run_insert_handler.php | +71 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.smarty_include_php.php | +50 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.write_cache_file.php | +96 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.write_compiled_include.php | +91 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.write_compiled_resource.php | +35 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/internals/core.write_file.php | +54 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/block.textformat.php | +103 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/compiler.assign.php | +40 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.assign_debug_info.php | +40 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.config_load.php | +142 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.counter.php | +80 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.cycle.php | +102 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.debug.php | +35 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.eval.php | +49 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.fetch.php | +221 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_checkboxes.php | +143 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_image.php | +142 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_options.php | +122 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_radios.php | +156 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_select_date.php | +331 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_select_time.php | +194 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.html_table.php | +177 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.mailto.php | +165 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.math.php | +85 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.popup.php | +119 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/function.popup_init.php | +40 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.capitalize.php | +43 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.cat.php | +33 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.count_characters.php | +32 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.count_paragraphs.php | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.count_sentences.php | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.count_words.php | +33 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.date_format.php | +58 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.debug_print_var.php | +90 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.default.php | +32 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.escape.php | +93 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.indent.php | +28 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.lower.php | +26 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.nl2br.php | +35 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.regex_replace.php | +48 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.replace.php | +30 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.spacify.php | +30 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.string_format.php | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.strip.php | +33 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.strip_tags.php | +32 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.truncate.php | +50 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.upper.php | +26 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/modifier.wordwrap.php | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/outputfilter.trimwhitespace.php | +75 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/shared.escape_special_chars.php | +31 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/lib/smarty/libs/plugins/shared.make_timestamp.php | +46 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/smartyplugins/block.t.php | +126 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/smartyplugins/function.scripturl.php | +42 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/smartyplugins/modifier.agestring.php | +62 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/smartyplugins/modifier.buglink.php | +29 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/smartyplugins/modifier.highlight.php | +62 | −0 | Go to diff View file |
A | plugins/git/include/GitPHP/version.php | +22 | −0 | Go to diff View file |
M | plugins/git/include/GitViews/GitPhpViewer.class.php | +159 | −32 | Go to diff View file |
M | plugins/git/include/GitViews/ShowRepo.class.php | +3 | −9 | Go to diff View file |
M | plugins/git/include/gitPlugin.class.php | +1 | −2 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/de_DE/README | +17 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/de_DE/gitphp.po | +656 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/fr_FR/gitphp.po | +654 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/gitphp.pot | +805 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/ru_RU/gitphp.po | +691 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/zh_CN/README | +17 | −0 | Go to diff View file |
A | plugins/git/site-content/gitphp_locale/zh_CN/gitphp.po | +702 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/atom.tpl | +47 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blame.tpl | +61 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blamedata.tpl | +20 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blob.tpl | +63 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blobdiff.tpl | +41 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blobdiffplain.tpl | +8 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blobheaders.tpl | +8 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/blobplain.tpl | +8 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/commit.tpl | +248 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/commitdiff.tpl | +164 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/commitdiffplain.tpl | +25 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/committip.tpl | +21 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/data.tpl | +1 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/filediff.tpl | +20 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/filediffsidebyside.tpl | +45 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/footer.tpl | +19 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/header.tpl | +58 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/headlist.tpl | +28 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/heads.tpl | +21 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/history.tpl | +37 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/log.tpl | +101 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/message.tpl | +12 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/nav.tpl | +46 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/opml.tpl | +22 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/path.tpl | +37 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/project.tpl | +57 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/projectindex.tpl | +10 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/projectlist.tpl | +98 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/refbadges.tpl | +23 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/rss.tpl | +37 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/search.tpl | +73 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/searchfiles.tpl | +70 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/shortlog.tpl | +46 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/shortloglist.tpl | +61 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/snapshot.tpl | +8 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/tag.tpl | +74 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/taglist.tpl | +52 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/tags.tpl | +23 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/tagtip.tpl | +24 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/title.tpl | +47 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/tree.tpl | +28 | −0 | Go to diff View file |
A | plugins/git/templates/gitphp/treelist.tpl | +41 | −0 | Go to diff View file |
M | plugins/git/tests/GitViewsTest.php | +1 | −50 | Go to diff View file |
D | plugins/git/tests/_fixtures/fakeGitPHP/index.php | +0 | −2 | Go to diff View file |
M | tools/rpm/tuleap.rhel6.spec | +6 | −4 | Go to diff View file |
M | tools/rpm/tuleap.rhel7.spec | +3 | −1 | Go to diff View file |