datasetediting

package
v1.0.59 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 24, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AddAbstract added in v1.0.56

func AddAbstract(w http.ResponseWriter, r *http.Request)

func AddContributor added in v1.0.56

func AddContributor(w http.ResponseWriter, r *http.Request)

func AddContributorSuggest added in v1.0.56

func AddContributorSuggest(w http.ResponseWriter, r *http.Request)

func AddDepartment added in v1.0.56

func AddDepartment(w http.ResponseWriter, r *http.Request)
func AddLink(w http.ResponseWriter, r *http.Request)

func AddProject added in v1.0.56

func AddProject(w http.ResponseWriter, r *http.Request)

func AddPublication added in v1.0.56

func AddPublication(w http.ResponseWriter, r *http.Request)

func ConfirmCreateContributor added in v1.0.56

func ConfirmCreateContributor(w http.ResponseWriter, r *http.Request)

func ConfirmDelete added in v1.0.56

func ConfirmDelete(w http.ResponseWriter, r *http.Request)

func ConfirmDeleteAbstract added in v1.0.56

func ConfirmDeleteAbstract(w http.ResponseWriter, r *http.Request)

func ConfirmDeleteContributor added in v1.0.56

func ConfirmDeleteContributor(w http.ResponseWriter, r *http.Request)

func ConfirmDeleteDepartment added in v1.0.56

func ConfirmDeleteDepartment(w http.ResponseWriter, r *http.Request)
func ConfirmDeleteLink(w http.ResponseWriter, r *http.Request)

func ConfirmDeleteProject added in v1.0.56

func ConfirmDeleteProject(w http.ResponseWriter, r *http.Request)

func ConfirmDeletePublication added in v1.0.56

func ConfirmDeletePublication(w http.ResponseWriter, r *http.Request)

func ConfirmPublish added in v1.0.56

func ConfirmPublish(w http.ResponseWriter, r *http.Request)

func ConfirmRepublish added in v1.0.56

func ConfirmRepublish(w http.ResponseWriter, r *http.Request)

func ConfirmUpdateContributor added in v1.0.56

func ConfirmUpdateContributor(w http.ResponseWriter, r *http.Request)

func ConfirmWithdraw added in v1.0.56

func ConfirmWithdraw(w http.ResponseWriter, r *http.Request)

func CreateAbstract added in v1.0.56

func CreateAbstract(w http.ResponseWriter, r *http.Request)

func CreateContributor added in v1.0.56

func CreateContributor(w http.ResponseWriter, r *http.Request)

func CreateDepartment added in v1.0.56

func CreateDepartment(w http.ResponseWriter, r *http.Request)
func CreateLink(w http.ResponseWriter, r *http.Request)

func CreateProject added in v1.0.56

func CreateProject(w http.ResponseWriter, r *http.Request)

func CreatePublication added in v1.0.56

func CreatePublication(w http.ResponseWriter, r *http.Request)

func Delete added in v1.0.56

func Delete(w http.ResponseWriter, r *http.Request)

func DeleteAbstract added in v1.0.56

func DeleteAbstract(w http.ResponseWriter, r *http.Request)

func DeleteContributor added in v1.0.56

func DeleteContributor(w http.ResponseWriter, r *http.Request)

func DeleteDepartment added in v1.0.56

func DeleteDepartment(w http.ResponseWriter, r *http.Request)
func DeleteLink(w http.ResponseWriter, r *http.Request)

func DeleteProject added in v1.0.56

func DeleteProject(w http.ResponseWriter, r *http.Request)

func DeletePublication added in v1.0.56

func DeletePublication(w http.ResponseWriter, r *http.Request)

func EditAbstract added in v1.0.56

func EditAbstract(w http.ResponseWriter, r *http.Request)

func EditContributor added in v1.0.56

func EditContributor(w http.ResponseWriter, r *http.Request)

func EditContributorSuggest added in v1.0.56

func EditContributorSuggest(w http.ResponseWriter, r *http.Request)

func EditDetails added in v1.0.56

func EditDetails(w http.ResponseWriter, r *http.Request)
func EditLink(w http.ResponseWriter, r *http.Request)

func EditMessage added in v1.0.56

func EditMessage(w http.ResponseWriter, r *http.Request)

func EditReviewerNote added in v1.0.56

func EditReviewerNote(w http.ResponseWriter, r *http.Request)

func EditReviewerTags added in v1.0.56

func EditReviewerTags(w http.ResponseWriter, r *http.Request)

func Lock added in v1.0.56

func Lock(w http.ResponseWriter, r *http.Request)

func OrderContributors added in v1.0.56

func OrderContributors(w http.ResponseWriter, r *http.Request)

func Publish added in v1.0.56

func Publish(w http.ResponseWriter, r *http.Request)

func RefreshEditDetails added in v1.0.56

func RefreshEditDetails(w http.ResponseWriter, r *http.Request)

func Republish added in v1.0.56

func Republish(w http.ResponseWriter, r *http.Request)

func SuggestDepartments added in v1.0.56

func SuggestDepartments(w http.ResponseWriter, r *http.Request)

func SuggestProjects added in v1.0.56

func SuggestProjects(w http.ResponseWriter, r *http.Request)

func SuggestPublications added in v1.0.56

func SuggestPublications(w http.ResponseWriter, r *http.Request)

func Unlock added in v1.0.56

func Unlock(w http.ResponseWriter, r *http.Request)

func UpdateAbstract added in v1.0.56

func UpdateAbstract(w http.ResponseWriter, r *http.Request)

func UpdateContributor added in v1.0.56

func UpdateContributor(w http.ResponseWriter, r *http.Request)

func UpdateDetails added in v1.0.56

func UpdateDetails(w http.ResponseWriter, r *http.Request)
func UpdateLink(w http.ResponseWriter, r *http.Request)

func UpdateMessage added in v1.0.56

func UpdateMessage(w http.ResponseWriter, r *http.Request)

func UpdateReviewerNote added in v1.0.56

func UpdateReviewerNote(w http.ResponseWriter, r *http.Request)

func UpdateReviewerTags added in v1.0.56

func UpdateReviewerTags(w http.ResponseWriter, r *http.Request)

func Withdraw added in v1.0.56

func Withdraw(w http.ResponseWriter, r *http.Request)

Types

type BindAbstract

type BindAbstract struct {
	AbstractID string `path:"abstract_id"`
	Text       string `form:"text"`
	Lang       string `form:"lang"`
}

type BindAddContributor

type BindAddContributor struct {
	Role      string `path:"role"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}

type BindAddContributorSuggest

type BindAddContributorSuggest struct {
	Role      string `path:"role"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}

type BindConfirmCreateContributor

type BindConfirmCreateContributor struct {
	Role      string `path:"role"`
	ID        string `query:"id"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}

type BindConfirmUpdateContributor

type BindConfirmUpdateContributor struct {
	Role      string `path:"role"`
	Position  int    `path:"position"`
	ID        string `query:"id"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}

type BindCreateContributor

type BindCreateContributor struct {
	Role      string `path:"role"`
	ID        string `form:"id"`
	FirstName string `form:"first_name"`
	LastName  string `form:"last_name"`
	AddNext   bool   `form:"add_next"`
}

type BindDeleteAbstract

type BindDeleteAbstract struct {
	AbstractID string `path:"abstract_id"`
	SnapshotID string `path:"snapshot_id"`
}

type BindDeleteContributor

type BindDeleteContributor struct {
	Role     string `path:"role"`
	Position int    `path:"position"`
}

type BindDeleteDepartment

type BindDeleteDepartment struct {
	DepartmentID string `path:"department_id"`
	SnapshotID   string `path:"snapshot_id"`
}
type BindDeleteLink struct {
	LinkID     string `path:"link_id"`
	SnapshotID string `path:"snapshot_id"`
}

type BindDeleteProject

type BindDeleteProject struct {
	ProjectID  string `path:"project_id"`
	SnapshotID string `path:"snapshot_id"`
}

type BindDeletePublication

type BindDeletePublication struct {
	PublicationID string `path:"publication_id"`
	SnapshotID    string `path:"snapshot_id"`
}

type BindDepartment

type BindDepartment struct {
	DepartmentID string `form:"department_id"`
}

type BindDetails

type BindDetails struct {
	AccessLevel             string   `form:"access_level"`
	AccessLevelAfterEmbargo string   `form:"access_level_after_embargo"`
	EmbargoDate             string   `form:"embargo_date"`
	Format                  []string `form:"format"`
	Identifier              string   `form:"identifier"`
	IdentifierType          string   `form:"identifier_type"`
	Keyword                 []string `form:"keyword"`
	Language                []string `form:"language"`
	License                 string   `form:"license"`
	OtherLicense            string   `form:"other_license"`
	Publisher               string   `form:"publisher"`
	Title                   string   `form:"title"`
	Year                    string   `form:"year"`
}

type BindEditContributor

type BindEditContributor struct {
	Role      string `path:"role"`
	Position  int    `path:"position"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}

type BindEditContributorSuggest

type BindEditContributorSuggest struct {
	Role      string `path:"role"`
	Position  int    `path:"position"`
	FirstName string `query:"first_name"`
	LastName  string `query:"last_name"`
}
type BindLink struct {
	LinkID      string `path:"link_id"`
	URL         string `form:"url"`
	Relation    string `form:"relation"`
	Description string `form:"description"`
}

type BindMessage

type BindMessage struct {
	Message string `form:"message"`
}

type BindOrderContributors

type BindOrderContributors struct {
	Role      string `path:"role"`
	Positions []int  `form:"position"`
}

type BindProject

type BindProject struct {
	ProjectID string `form:"project_id"`
}

type BindPublication

type BindPublication struct {
	PublicationID string `form:"publication_id"`
}

type BindReviewerNote

type BindReviewerNote struct {
	ReviewerNote string `form:"reviewer_note"`
}

type BindReviewerTags

type BindReviewerTags struct {
	ReviewerTags []string `form:"reviewer_tags"`
}

type BindSuggestDepartments

type BindSuggestDepartments struct {
	Query string `query:"q"`
}

type BindSuggestProjects

type BindSuggestProjects struct {
	Query string `query:"q"`
}

type BindSuggestPublications

type BindSuggestPublications struct {
	Query string `query:"q"`
}

type BindUpdateContributor

type BindUpdateContributor struct {
	Role      string `path:"role"`
	Position  int    `path:"position"`
	ID        string `form:"id"`
	FirstName string `form:"first_name"`
	LastName  string `form:"last_name"`
	EditNext  bool   `form:"edit_next"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL