summaryrefslogtreecommitdiffstats
path: root/modules/setting
Commit message (Expand)AuthorAgeFilesLines
* Use correct defaultValue for stracktrace (#17552)Gusted2021-11-051-1/+1
* Only allow webhook to send requests to allowed hosts (#17482)wxiaoguang2021-11-011-8/+11
* Sync gitea app path for git hooks and authorized keys when starting (#17335)wxiaoguang2021-10-211-0/+12
* Use a variable but a function for IsProd because of a slight performance incr...Lunny Xiao2021-10-201-5/+2
* Make the Mirror Queue a queue (#17326)zeripath2021-10-173-31/+39
* Disable core.protectNTFS (#17300)zeripath2021-10-131-0/+1
* Add protection to disable Gitea when run as root (#17168)techknowlogick2021-10-071-0/+12
* Add metrics to get issues by repository (#17225)Romain2021-10-051-6/+8
* Add metrics to get issues by label (#17201)Romain2021-10-031-4/+6
* Add nodeinfo endpoint for federation purposes (#16953)techknowlogick2021-09-282-0/+23
* Use light/dark theme based on system preference (#17051)Gwyneth Morgan2021-09-271-2/+2
* refactor: move from io/ioutil to io and os package (#17109)Eng Zer Jun2021-09-221-3/+2
* Enable Malayalam, Greek, Persian, Hungarian & Indonesian by default (#16998)65432021-09-091-2/+4
* Make mirror feature more configurable (#16957)65432021-09-073-19/+60
* Remove ParseQueueConnStr as it is unused (#16878)zeripath2021-08-311-33/+0
* Paginate releases page & set default page size to 10 (#16857)Lunny Xiao2021-08-291-3/+6
* Add bundle download for repository (#14538)John Olheiser2021-08-241-0/+1
* Add proxy settings and support for migration and webhook (#16704)Lunny Xiao2021-08-183-0/+43
* Add API Token Cache (#16547)zeripath2021-08-171-0/+2
* Allow setting X-FRAME-OPTIONS (#16643)zeripath2021-08-061-2/+4
* Add an abstract json layout to make it's easier to change json library (#16528)Lunny Xiao2021-07-244-11/+5
* Make Mermaid.js limit configurable (#16519)zeripath2021-07-241-2/+4
* Add support for corporate WeChat webhooks (#15910)lengyuqu2021-07-231-1/+1
* add configuration option to restrict users by default (#16256)Richard Nienaber2021-07-151-0/+2
* Add LRU mem cache implementation (#16226)zeripath2021-07-101-1/+6
* Fix various documentation, user-facing, and source comment typos (#16367)luzpaz2021-07-082-2/+2
* Add forge emojies (#16296)65432021-07-021-2/+2
* Update Go-Git to take advantage of LargeObjectThreshold (#16316)zeripath2021-06-301-0/+2
* Add custom emoji support (#16004)65432021-06-291-1/+9
* Make allowed Visiblity modes configurable for Users (#16271)65432021-06-271-1/+33
* Make app.ini more restrictive on new installations (#16266)Steven2021-06-271-0/+13
* Add --quiet and --verbose to gitea web to control initial logging (#16260)zeripath2021-06-261-1/+2
* Add Visible modes function from Organisation to Users too (#16069)Sergey Dryabzhinsky2021-06-261-0/+4
* Let package git depend on setting but not opposite (#15241)Lunny Xiao2021-06-262-57/+3
* Added support for gopher URLs. (#14749)ayb2021-06-251-0/+12
* Rework repository archive (#14723)Lunny Xiao2021-06-232-0/+10
* Add sanitizer rules per renderer (#16110)KN4CK3R2021-06-231-44/+59
* Use data path instead of config path (#16227)KN4CK3R2021-06-231-1/+1
* Reintroduce squash merge default comment as a config setting (#16134)parnic2021-06-191-0/+3
* Add asymmetric JWT signing (#16010)KN4CK3R2021-06-172-17/+7
* Ensure settings for Service and Mailer are read on the install page (#15943)zeripath2021-06-161-0/+6
* Clean-up the settings hierarchy for issue_indexer queue (#16001)zeripath2021-06-162-23/+24
* Make command in authorized keys a template (#16003)zeripath2021-06-141-41/+49
* Set self-adjusting deadline for connection writing (#16068)zeripath2021-06-111-11/+21
* Fix regression of renderer (#16091)Lunny Xiao2021-06-061-0/+2
* Unified custom config creation (#16012)KN4CK3R2021-05-292-64/+35
* Use filepath.ToSlash and Join in indexer defaults and queues (#15971)zeripath2021-05-252-9/+8
* Change default queue settings to be low go-routines (#15964)zeripath2021-05-242-5/+5
* add a new internal hook to save ssh log (#15787)a10121127962021-05-212-0/+2
* Add mimetype mapping settings (#15133)Adam Szatyin2021-05-102-0/+32
lass="cm"> * </p> * * @param oldComponent * the old component that will be replaced. * @param newComponent * the new component to be replaced. */ public void replaceComponent(Component oldComponent, Component newComponent); /** * Gets an iterator to the collection of contained components. Using this * iterator it is possible to step through all components contained in this * container. * * @return the component iterator. * * @deprecated As of 7.0, use {@link #iterator()} instead. */ @Deprecated public Iterator<Component> getComponentIterator(); /** * Gets the number of children this {@link ComponentContainer} has. This * must be symmetric with what {@link #getComponentIterator()} returns. * * @return The number of child components this container has. * @since 7.0.0 */ public int getComponentCount(); /** * Moves all components from an another container into this container. The * components are removed from <code>source</code>. * * @param source * the container which contains the components that are to be * moved to this container. */ public void moveComponentsFrom(ComponentContainer source); /** * @deprecated As of 7.0, replaced by * {@link #addComponentAttachListener(ComponentAttachListener)} **/ @Deprecated public void addListener(ComponentAttachListener listener); /** * @deprecated As of 7.0, replaced by * {@link #removeComponentAttachListener(ComponentAttachListener)} **/ @Deprecated public void removeListener(ComponentAttachListener listener); /** * @deprecated As of 7.0, replaced by * {@link #addComponentDetachListener(ComponentDetachListener)} **/ @Deprecated public void addListener(ComponentDetachListener listener); /** * @deprecated As of 7.0, replaced by * {@link #removeComponentDetachListener(ComponentDetachListener)} **/ @Deprecated public void removeListener(ComponentDetachListener listener); }