Changes between Version 24 and Version 25 of TracFaq
- Timestamp:
- Mar 11, 2023, 9:51:02 AM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracFaq
v24 v25 104 104 See TracUpgrade#a5.Refreshstaticresources. 105 105 106 ==== Q: Attachments are missing after upgrade 106 ==== Q: Attachments are missing after upgrade to Trac v1.0.1 107 107 108 **A:** Most likely db28.py failed. See #11370. Please report any additional information on the MailingList.108 **A:** Most likely the script `db28.py` failed, see #11370. Please report any additional information on the MailingList. 109 109 110 110 If the attachments are not moved when upgrading your Trac instance, add the following code to `run-db28.py`: … … 147 147 === Q: How to extend Trac? 148 148 149 **A:** The primary way to extend Trac is to write [TracPlugins plugins] in Python. Look for the extensive documentation below TracDev/, maybe starting with the [TracDev#Overviews overview] pages. Also, we regularly migrate plugin functionality into Trac core, if that functionality is used often enough. 149 **A:** There are two ways in which Trac's functionality is extended: 150 1. Functionality is added to Trac core, provided the features that the functionality offers is used often enough and has been tested extensively in the field. 151 1. A lower barrier to entry to add new functionality to Trac is to write a [TracPlugins plugin] in Python. The documentation in TracDev/ is the authoritative source, with the [TracDev#Overviews overview] pages as a good starting point. 150 152 151 The community site [TracHacks:WikiStart trac-hacks.org] is the portal where close to 1000 Trac plugins are hosted, and there is a [https://github.com/trac-hacks trac-hacks organization on GitHub]. It also contains a few [TracHacks:wiki:tutorial tutorials] to get you started. 152 153 Plugins can be found in the following locations: 154 1. The community site [TracHacks:WikiStart trac-hacks.org] is the portal where upwards of 700 Trac plugins are hosted. 155 1. There is a [https://github.com/trac-hacks trac-hacks organization on GitHub]. 156 1. The !PyPi site contains a collection of [https://pypi.org/search/?q=&o=&c=Framework+%3A%3A+Trac Trac plugins]. 157 153 158 === Q: How to contribute to Trac? 154 159