mirror of
https://github.com/gitbucket/gitbucket.git
synced 2026-08-07 01:19:10 +02:00
(refs #665)Fix markdown format
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
Activity Timeline
|
||||
========
|
||||
GitBucket records several types of user activity to ```ACTIVITY``` table. Activity types are shown below:
|
||||
|
||||
type | message | additional information
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Automatic Schema Updating
|
||||
|
||||
Automatic Schema Updating
|
||||
========
|
||||
GitBucket uses H2 database to manage project and account data. GitBucket updates database schema automatically in the first run after the upgrading.
|
||||
|
||||
To release a new version of GitBucket, add the version definition to the [servlet.AutoUpdate](https://github.com/takezoe/gitbucket/blob/master/src/main/scala/servlet/AutoUpdateListener.scala) at first.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# About Action in Issue Comment
|
||||
|
||||
About Action in Issue Comment
|
||||
========
|
||||
After the issue creation at GitBucket, users can add comments or close it.
|
||||
The details are saved at ```ISSUE_COMMENT``` table.
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Directory Structure
|
||||
|
||||
Directory Structure
|
||||
========
|
||||
GitBucket persists all data into __HOME/.gitbucket__ in default (In 1.9 or before, HOME/gitbucket is default).
|
||||
|
||||
This directory has following structure:
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# How to run from the source tree
|
||||
How to run from the source tree
|
||||
========
|
||||
|
||||
for Testers
|
||||
--------
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# Notification Email
|
||||
Notification Email
|
||||
========
|
||||
|
||||
GitBucket sends email to target users by enabling the notification email by an administrator.
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Developer's Guide
|
||||
|
||||
Developer's Guide
|
||||
========
|
||||
* [How to run from source tree](how_to_run.md)
|
||||
* [Directory Structure](directory.md)
|
||||
* [Mapping and Validation](mapping_and_validation.md)
|
||||
* [Authentication in Controller](authentication.md)
|
||||
* [About Action in Issue Comment](comment_actionb.md)
|
||||
* [Mapping and Validation](validation.md)
|
||||
* Authentication in Controller (not yet)
|
||||
* [About Action in Issue Comment](comment_action.md)
|
||||
* [Activity Types](activity.md)
|
||||
* [Notification Email](notification.md)
|
||||
* [Automatic Schema Updating](auto_update.md)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Mapping and Validation
|
||||
|
||||
Mapping and Validation
|
||||
========
|
||||
GitBucket uses [scalatra-forms](https://github.com/takezoe/scalatra-forms) to validate request parameters and map them to the scala object. This is inspired by Play2 form mapping / validation.
|
||||
|
||||
At first, define the mapping as following:
|
||||
Reference in New Issue
Block a user