Edgewall Software

Changes between Version 55 and Version 56 of 0.12/TracFaq


Ignore:
Timestamp:
Jul 16, 2004, 5:30:00 PM (20 years ago)
Author:
Jonas Borgström
Comment:

Updated a few answers

Legend:

Unmodified
Added
Removed
Modified
  • 0.12/TracFaq

    v55 v56  
    117117How do I get Trac to resync the timeline with my subversion repository?
    118118-----------------------------------------------------------------------
    119 Currently this is crude.  Later, this ability will most likely be added to Trac itself via ticket #347.  But currently, you need to run the sqlite command-line utility on your trac database.  Once connected, you need to issue the following sql statements.
     119trac-admin in trac 0.8 and above has built-in command to resync the repository that works like this.
    120120::
    121121
    122     DELETE FROM node_change;
    123     DELETE FROM revision;
     122  trac-admin <yourprojenv> resync
    124123
    125124.. ** BROWSER **
     
    130129On Windows, why does Trac not display diffs?
    131130--------------------------------------------
    132 Early versions of Subversion used an (external) diff_ command. On UNIX-like systems, diff is usually installed already, so this wasn't an issue there. Installing diffutils_ should solve the problem, but a better solution would be to upgrade to the latest Subversion_, which now uses an internal diff library.
     131The tree diff functionality provided by the subversion python bindings use an
     132external diff_ command. On UNIX-like systems, diff is usually installed already, so this wasn't an issue there. Installing diffutils_ should solve the problem.
    133133
    134134Diffutils for windows: http://gnuwin32.sourceforge.net/packages/diffutils.htm
     
    136136.. _diff: http://gnuwin32.sourceforge.net/packages/diffutils.htm
    137137.. _diffutils: http://gnuwin32.sourceforge.net/packages/diffutils.htm
    138 .. _Subversion: http://subversion.tigris.org/
    139 
    140138
    141139Does Trac support syntax coloring/highlighting of source code files?
     
    194192Is the Database scheme available anywhere?
    195193------------------------------------------
     194
     195Yes you can find it here_.
     196
     197.. _here: http://projects.edgewall.com/trac/file/trunk/trac/db_default.py?rev=latest
    196198
    197199FIXME: Asking the question again ;)