summaryrefslogtreecommitdiffstats
path: root/src/site
Commit message (Collapse)AuthorAgeFilesLines
* doc: Cleanup Google Code links and obsolete design descriptionFlorian Zschocke2023-04-031-4/+0
| | | | | | | | | | | Replace the links in NOTICE to the closed down Google Code (code.google.com) with their Github counterparts where the projects moved to. Gitblit used to download dependencies upon first start. This has since long been changed and everything is bundled with Gitblit now. So reflect this in the design.mkd document, which still said they would be downloaded.
* doc: Replace Clippy with clipboard.js in design doc and NOTICEFlorian Zschocke2023-04-031-1/+1
|
* doc: Fix link to log4j.properties on Github in setup_GOFlorian Zschocke2023-04-031-1/+1
|
* Adjust path after moving from "gitblit" to "gitblit-org" on GithubFlorian Zschocke2022-12-0911-14/+13
|
* doc: Fix download link for fedclient ad api tarFlorian Zschocke2022-04-092-2/+2
| | | | | | It was still pointing to Google Code. This closes #1408
* doc: Fix links for dependencies that moved from Google CodeFlorian Zschocke2022-04-092-6/+6
|
* doc: Update documentation for new Java 8 minimumFlorian Zschocke2022-02-061-1/+1
|
* site: Fix awful HTML indentationFlorian Zschocke2022-02-031-18/+18
|
* site: Old packages moved from Bintray to CloudsmithFlorian Zschocke2022-02-031-0/+2
| | | | | | | Since Bintray seized operation, the packages for versions 1.4.0 - 1.8.0 have been uploaded to Cloudsmith. Adjust the links appropriately. An attribution is added to comply with Cloudsmith's OSS hosting policy.
* docs: Update docker URLFlorian Zschocke2021-11-251-0/+1
| | | | | | | Update the URL to the Gitblit docker image to point to the `gitblit/gitblit` repository, which I now consider the official Docker repository. Also link to the Docker images on the main page.
* docs: Change Ohloh link to Open HubFlorian Zschocke2020-11-231-1/+1
| | | | | | | Ohloh got acquired by Synopsis and is nor Open Hub. Change the links for the tiny widget to point to Open Hub. Closes #1356
* Fix 1150: Use external link instead of internal wiki link for tickets_setupFlorian Zschocke2020-10-291-1/+1
| | | | | | | | | | | | | | | | | | | The `tickets_overview` page links to the `tickets_setup` page using a wiki style internal link: `[[tickets setup]]`. Whatever library is interpreting that is creating a link under the assumption that the resulting page will be called `tickets-setup.html`. But that is not the convention used by Moxie, which will use the source file name and thus create a file called `tickets_setup.html`. I was not able to find out which of the many libraries included is the one that parses this file and creates the link. Messy. There are two solutions. One is to configure the Moxie site build to generate the file as `tickets-setup.html`. But this would break any links to that page that might exist somewhere on the Interweb. So I opted for the other option, which is to not use wiki syntax for the reference to the local page but normal markdown syntax. This is not a wiki, afterall.
* šŸ“–docs: Add update of service scripts in upgrade GO documentationFlorian Zschocke2020-04-051-0/+22
| | | | Also: release notes.
* šŸƒrun: Use quotes around class path in scriptsFlorian Zschocke2020-04-052-2/+2
| | | | | | | | | While most systems will not need the class path passed to the JVM with the `-cp` parameter to be in quotes, apparently some exist where that will not work without the quotes, e.g. FreeBSD. So always use quotes for the class path in all scripts. Issue #1333
* docu: Fix typoFlorian Zschocke2020-04-041-1/+1
|
* Add Twitter link to site overview and built-in docs.Florian Zschocke2020-01-271-0/+1
|
* Site: Remove link to Bintray update notificationsFlorian Zschocke2020-01-271-2/+1
|
* Add deployment of a release to GitHubFlorian Zschocke2020-01-271-0/+66
| | | | | | | | | | | | Add Ant tasks and macros to deploy binaries to GitHub, using GitHub's releases. Adds an Awk script to extract GH flavoured markdown release notes from the release.moxie file. Adds `ok.sh` to the repository so that it is readily available. This is a Bourne shell GitHub API client, used to create a release on GitHub and upload the binaries.
* Correct issue in FAQ page to link to GitHub issue.Florian Zschocke2019-11-181-1/+1
|
* :book: Fix link to LDAP sample data LDIF file in setup.Florian Zschocke2019-11-101-1/+1
|
* Remove Launcher from Manager and Federation Client.Florian Zschocke2019-11-081-3/+3
| | | | | They will need to be called with the classpath and main class now, instead of simply using the Jar.
* For Java 9+ define the classpath instead of using a Launcher.Florian Zschocke2019-11-071-8/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The (moxie and other) Launcher do not work with Java 9 and later anymore. It used to dynamically extend the classpath, misusing an internal interface of the `URLClassLoader`. This is no longer possible since Java 9, which closed that path and does not offer any way to dynamically extend the classpath during runtime. So the choice is between providing one large Jar with everything in it, providing a Jar that has the Jars in `ext` listed explicitly in its manifest, and specifying the classpath on the command line where the `ext` directory can be added and all contained jar files will be put on the classpath. The motivation for the Launcher class was to be able to simply drop new jar files into a directory and they will be picked up at the application start, without having to specify a classpath. We opt for solution three here. This way jar files can still be dropped into the ext directory, albeit the directory needs to be added to the classpath on the command line. Unfortunately using a wildcard is not possible in the manifest file. We change the calls in the script files accordingly. This seems like a good compromise, since no one will run the application manually typing the whole commandline anyway. This also does away with the splash screen, by the way. Again, doesn't seem like a big loss, as I don't think it was ever shown for the Authority. Personally, I am not convinced that it is the best way, because I don't really think that the use case of dropping whatever jar files into the `ext` directory is a valid one that happened a lot. This does not yet fix the client programs, which still use a Launcher. Maybe for them a all-in-one Jar is a better solution. Fixes #1262 Fixes #1294
* Merge branch 'pingunaut-1166_more_secure_password_hashes' into master.Florian Zschocke2019-11-061-1/+1
|\
| * Use the new PasswordHash classes.Florian Zschocke2019-11-051-1/+1
| | | | | | | | | | | | Integrate the `PasswordHash` class and subclass in the user and password editing and authentication. Replaces the old code and the previous `SecurePasswordHashingUtils` class.
| * Added possibility to use secure hashes to store passwordsMartin Spielmann2017-01-011-1/+1
| | | | | | | | Addresses #1166
* | List branches from only one repository if a repository name is givenMarkus FoĢˆmpe2017-01-261-1/+2
| | | | | | | | | | | | e.g.: https://localhost:8443/rpc/?req=LIST_REPOSITORY_BRANCHES&name=repo.git Fix #1184
* | when apache terminates https, the Ajax-Location header needs to be rewritten ā†µRainerW2017-01-231-0/+1
|/ | | | as well
* Merge pull request #1004 from RedShift1/ticket-#998-document-DH-keysizeJames Moger2016-01-171-1/+11
|\ | | | | Ticket #998 document dh keysize
| * Typo in setup_transport_http.mkdGlenn Matthys2016-01-171-1/+1
| |
| * Describe how DH key bitlength can be influencedGlenn Matthys2016-01-171-0/+10
| |
* | Fix char encoding in setup_proxy.mkdGlenn Matthys2016-01-171-1/+1
|/
* add site documentation for HTTP header authenticationJoel Johnson2015-12-091-0/+12
|
* fix for #967 filestore menu for all usersPaul Martin2015-12-071-0/+61
| | | | | | + Filestore listing filtered by user view permissions + Configuration help for filestore relocated to website files + Added migration example
* DocumentationJames Moger2015-11-182-12/+1
|
* Log update for Fail2Ban usagePaul Martin2015-10-251-5/+9
| | | | | + Adds standard logging for all authentication providers + Updates help page to use default GitBlit SSH port
* Documentation (fixes #917)James Moger2015-09-181-1/+1
|
* Added better logging for fail2banEnrico2042015-08-101-0/+20
|
* typo: site ticket documentationJoel Johnson2015-06-291-1/+1
|
* Add onFork and onRename methods to RepositoryLifeCycleListenerJames Moger2015-05-221-0/+10
|
* Improve PAM documentationJames Moger2015-05-221-2/+8
|
* Docs: Fix RPC URLSteffen Gebert2015-03-241-5/+5
| | | | | The RPC URL should be `/rpc/?` and not `/rpc?` according to https://groups.google.com/d/msg/gitblit/Ajp2gR3B2bM/AXg6wIf21eIJ
* Merge release 1.6.2James Moger2014-10-281-3/+3
|\
| * DocumentationJames Moger2014-10-271-3/+3
| |
* | Adopt chain-loading properties as the default setupJames Moger2014-10-274-7/+44
| |
* | Merge release-1.6.1James Moger2014-10-202-2/+10
|\|
| * Prepare v1.6.1 documentation updatesJames Moger2014-10-202-2/+10
| |
* | Merge branch 'ticket/201' into developJames Moger2014-09-302-3/+1
|\|
| * Remove git.streamFileThreshold settingJames Moger2014-09-302-3/+1
| |
* | Merge branch 'ticket/142' into developJames Moger2014-09-041-1/+1
|\|
| * Update setup_authentication.mkdAnthony O.2014-08-081-1/+1
| | | | | | In AuthenticationManager:385, only `provider instanceof UsernamePasswordAuthenticationProvider` will be called