Edgewall Software

Changes between Version 24 and Version 25 of TracFaq


Ignore:
Timestamp:
Mar 11, 2023, 9:51:02 AM (14 months ago)
Author:
figaro
Comment:

Cosmetic changes, remove reference to ClearSilver-related sources

Legend:

Unmodified
Added
Removed
Modified
  • TracFaq

    v24 v25  
    104104See TracUpgrade#a5.Refreshstaticresources.
    105105
    106 ==== Q: Attachments are missing after upgrade
     106==== Q: Attachments are missing after upgrade to Trac v1.0.1
    107107
    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.
    109109
    110110If the attachments are not moved when upgrading your Trac instance, add the following code to `run-db28.py`:
     
    147147=== Q: How to extend Trac?
    148148
    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:
     1501. 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.
     1511. 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.
    150152
    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  
     153Plugins can be found in the following locations:
     1541. The community site [TracHacks:WikiStart trac-hacks.org] is the portal where upwards of 700 Trac plugins are hosted.
     1551. There is a [https://github.com/trac-hacks trac-hacks organization on GitHub].
     1561. The !PyPi site contains a collection of [https://pypi.org/search/?q=&o=&c=Framework+%3A%3A+Trac Trac plugins].
     157
    153158=== Q: How to contribute to Trac?
    154159