Is there a way to run Trac offline? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:55:25Z http://stackoverflow.com/feeds/question/876747 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline 1 Is there a way to run Trac offline? Spoike 2009-05-18T08:43:42Z 2009-07-17T23:46:10Z <p>I'd like to download the <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> database so I can view its tickets offline. Is there anyway to achieve this? I.e. if I need to leave the office and bring my laptop with me, how can I bring the tickets with me without having to connect to the company network? </p> <p>I know that <a href="http://www.eclipse.org/mylyn/" rel="nofollow">Mylyn</a> can download and sync tickets via it's trac connector but I'd like some stand-alone viewer.</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/876765#876765 0 Answer by solomongaby for Is there a way to run Trac offline? solomongaby 2009-05-18T08:52:13Z 2009-05-18T08:52:13Z <p>you could install it on a local machine</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/876767#876767 0 Answer by codemeit for Is there a way to run Trac offline? codemeit 2009-05-18T08:52:40Z 2009-05-18T08:52:40Z <p>You can host the trac locally and set up the connectionstring point to your dowloaded database.</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/876771#876771 0 Answer by Oli for Is there a way to run Trac offline? Oli 2009-05-18T08:54:20Z 2009-05-18T08:54:20Z <p>Sure. Install a web server locally, install trac, get it set up the same (or similar) way to the way it is on the live version and then script the server to publish db backups and write a local script to download those and restore them over your database.</p> <p>It's not simple (installing Trac is a battle on its own from my experience of it) but every element is highly googleable =)</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/876895#876895 2 Answer by Oli for Is there a way to run Trac offline? Oli 2009-05-18T09:35:31Z 2009-05-18T09:35:31Z <p>Seeing as you don't want to install a server, how about using RSS? IIRC, Trac let lets you get RSS feeds for each person, so you can have a feed of things assigned to you.</p> <p>All you need do then is get a nice client that will download these tickets. You should be able to access a plaintext version without internet connection.</p> <p>If that's not flexible enough, you could write a script on the server to publish a feed using the database directly.</p> <p>And if RSS isn't for you (and your email is available offline), you could mail reports home. Trac also has this built in.</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/876911#876911 1 Answer by Oli for Is there a way to run Trac offline? Oli 2009-05-18T09:39:38Z 2009-05-18T09:39:38Z <p>And if RSS or email isn't your notification of choice, there's a trac plugin that will let you receive task notifications on your <a href="http://www.rememberthemilk.com" rel="nofollow">Remember The Milk</a> todo list.</p> <p>See: <a href="http://1.www.rememberthemilk.com/forums/ideas/3580/?forum=ideas&amp;hl=bs&amp;topic=3580" rel="nofollow">http://1.www.rememberthemilk.com/forums/ideas/3580/?forum=ideas&amp;hl=bs&amp;topic=3580</a></p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/983725#983725 2 Answer by bnaffas for Is there a way to run Trac offline? bnaffas 2009-06-11T21:13:59Z 2009-06-11T21:13:59Z <p>The default Trac installation uses a combination of SQLite to matintain all of the data. Attachements are stored on the file system.</p> <p>In the folder containing the trac site, find \db\trac.db</p> <p>This file can be viewed using the <a href="https://addons.mozilla.org/en-US/firefox/addon/5817" rel="nofollow">SQLite manager Firefox Addon</a></p> <p>Happy hunting.</p> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/1127058#1127058 1 Answer by Richard Dunlap for Is there a way to run Trac offline? Richard Dunlap 2009-07-14T18:13:59Z 2009-07-14T18:13:59Z <p>If your objective is simply to <strong>view</strong> the tickets offline, how about </p> <ol> <li>Run a report with all the tickets (or all those you're interested in).</li> <li>Select either the comma-delimited or tab-delimited download link at the bottom of the page.</li> <li>Import the downloaded file into Excel.</li> </ol> http://stackoverflow.com/questions/876747/is-there-a-way-to-run-trac-offline/1146175#1146175 2 Answer by rjmunro for Is there a way to run Trac offline? rjmunro 2009-07-17T23:46:10Z 2009-07-17T23:46:10Z <p>See SD: <a href="http://syncwith.us" rel="nofollow">http://syncwith.us</a></p> <p>Or the presentation:</p> <p><a href="http://fsck.com/~jesse/tmp/2009-07-15/Ed%2BUAP05So4=/sd-intro.pdf" rel="nofollow">http://fsck.com/~jesse/tmp/2009-07-15/Ed%2BUAP05So4=/sd-intro.pdf</a></p> <p>I particularly like the "One-tweet install" idea.</p> <pre>I’m installing #SD (http://syncwith.us) after reading about it on #StackOverflow curl fsck.com/sd|perl; export $PATH=~/sd/bin:$PATH; sd</pre>