| [00:08:02] |
* |
coderanger__ has joined #trac |
| [00:08:04] |
* |
coderanger_ has quit IRC |
| [00:08:10] |
* |
coderanger__ is now known as coderanger_ |
| [00:08:43] |
* |
omry__ has quit IRC |
| [00:08:59] |
* |
omry__ has joined #trac |
| [00:14:50] |
* |
cboos has joined #trac |
| [00:15:55] |
<cboos> |
how's PyCon going? |
| [00:18:43] |
<cboos> |
ok, I see: PyCon's going asleep ;-) |
| [00:24:45] |
* |
cerw has joined #trac |
| [00:35:23] |
<Macca> |
where is the global config for trac ? |
| [00:39:01] |
<Getty> |
/usr/share/trac/conf/trac.ini |
| [00:39:21] |
<Getty> |
(not 100percent sure if that is also standard) |
| [00:39:35] |
* |
idnar has quit IRC |
| [00:40:09] |
* |
idnar has joined #trac |
| [00:42:47] |
* |
whitelynx|deskto is now known as whitelynx |
| [00:52:16] |
<alect> |
evening |
| [00:52:20] |
<alect> |
cboos: not bad |
| [00:52:29] |
<alect> |
not so productive today, more just yapping :) |
| [00:52:37] |
<cboos> |
hello! |
| [00:52:56] |
* |
cboos looks up yapping - another typical aussie term, for sure |
| [00:53:41] |
<cboos> |
;-) |
| [00:54:05] |
<cboos> |
was quite productive, the workflow branch looks promising |
| [00:54:29] |
<cboos> |
what's the program? another sprint day? or was that the last one? |
| [00:58:13] |
<alect> |
heh |
| [00:58:17] |
<alect> |
two more days to go |
| [00:58:23] |
<alect> |
though we're down a couple of guys now |
| [00:58:24] |
<cboos> |
oh great! |
| [01:11:29] |
* |
klando has joined #trac |
| [01:12:28] |
* |
hpnadig_ has joined #trac |
| [01:19:55] |
* |
hpnadig has quit IRC |
| [01:20:29] |
* |
dilinger has quit IRC |
| [01:23:42] |
<evil_twin> |
New news from t.e.o: SandBox edited by anonymous <http://trac.edgewall.org/wiki/SandBox> |
| [01:25:23] |
* |
cerw has quit IRC |
| [01:27:20] |
* |
nick_fn has joined #trac |
| [01:30:01] |
<nick_fn> |
When I provide text to clearsilver using req.hdf[keyname] = '<p>my text</p>' the HTML is escaped. Can I avoid that, so provide markup directly? |
| [01:31:08] |
<cboos> |
req.hdf[keyname] = Markup('<p>my text</p>') |
| [01:31:27] |
<cboos> |
where Markup is the magic unicode subclass |
| [01:32:02] |
<cboos> |
in 0.10, get it "from trac.util.text import Markup" |
| [01:32:07] |
<nick_fn> |
ah, thank you! |
| [01:32:19] |
<cboos> |
and for 0.11, use preferably: "from genshi.core import Markup" |
| [01:32:31] |
<cboos> |
though the former will still work |
| [01:32:36] |
<nick_fn> |
I also would like some text to be wiki-interpreted first, but I think I can find that in the documentation |
| [01:33:19] |
<cboos> |
the wiki_to_... functions already return a Markup instance, so take care to not escape it twice ;-) |
| [01:33:23] |
* |
coderanger_ has quit IRC |
| [01:33:24] |
<nick_fn> |
ok |
| [01:34:14] |
<cboos> |
(that's not problematic actually, Markup(Markup('>')) won't escape it twice) |
| [01:37:57] |
<nick_fn> |
Documentation on wiki_to_html is tricky to find at trac.edgewall.org |
| [01:39:07] |
<cboos> |
correct |
| [01:39:25] |
<nick_fn> |
I'll read source ;-) |
| [01:39:53] |
<cboos> |
yes... a good idea anyway if you'd like to use the Trac API ;-) |
| [01:40:36] |
<cboos> |
don't get to scared by looking at the trac/wiki/formatter.py, you don't need to get into that |
| [01:40:56] |
<cboos> |
rather use other modules (web_ui.py files), to see about the usage |
| [01:41:10] |
<cboos> |
rather look I mean |
| [01:41:26] |
<nick_fn> |
ok |
| [01:49:47] |
<nick_fn> |
My text (loaded from an XML document) currently contains "name as "Nick" or", as it's quoted HTML really. I don't want just Markup() (which would fix that quoting) as I'd like [100] etc. converted to links too... |
| [01:49:52] |
<nick_fn> |
Can I have both?! |
| [01:51:17] |
<cboos> |
you mean you have a mix of HTML and TracLinks in your content? |
| [01:51:24] |
<nick_fn> |
yeah |
| [01:52:10] |
<cboos> |
well, the wiki parser will interpret HTML markup as text, i.e. it will quote it |
| [01:52:43] |
<cboos> |
so if you do: wiki_to_html("" [100] " "), you'll get somehing like |
| [01:53:15] |
<cboos> |
Markup("&quot; <a href="...">100</a> &quot;") |
| [01:53:23] |
<nick_fn> |
yes, that's what I see now. |
| [01:53:35] |
<nick_fn> |
I guess I can't have it both ways, which is a pity |
| [01:54:41] |
<cboos> |
depending what you're actually writing (a plugin, a custom trac version, a particular script) it might be possible |
| [01:54:49] |
<nick_fn> |
a plugin at the moment |
| [01:54:56] |
<cboos> |
well, then no ;-) |
| [01:55:12] |
<nick_fn> |
hehe :-) |
| [01:55:38] |
<nick_fn> |
I suppose I could heavy handedly adjust the output from wiki_to_html() |
| [01:58:56] |
* |
lanjelot_ has quit IRC |
| [01:59:13] |
* |
lanjelot has joined #trac |
| [01:59:28] |
<nick_fn> |
'seems to work' |
| [01:59:49] |
* |
pombred1 has joined #trac |
| [02:00:35] |
* |
whitelynx|blackb has joined #trac |
| [02:01:40] |
* |
cboos has quit IRC |
| [02:01:40] |
* |
omry__ has quit IRC |
| [02:01:40] |
* |
pombreda has quit IRC |
| [02:01:40] |
* |
whitelynx has quit IRC |
| [02:01:40] |
* |
boorad has quit IRC |
| [02:01:40] |
* |
tsb has quit IRC |
| [02:01:40] |
* |
BrianHV has quit IRC |
| [02:02:12] |
* |
cboos has joined #trac |
| [02:02:12] |
* |
omry__ has joined #trac |
| [02:02:12] |
* |
pombreda has joined #trac |
| [02:02:12] |
* |
whitelynx has joined #trac |
| [02:02:12] |
* |
boorad has joined #trac |
| [02:02:12] |
* |
BrianHV has joined #trac |
| [02:02:12] |
* |
tsb has joined #trac |
| [02:02:49] |
* |
BrianHV has quit IRC |
| [02:02:56] |
* |
BrianHV has joined #trac |
| [02:03:14] |
* |
whitelynx has quit IRC |
| [02:03:33] |
* |
m_g has joined #trac |
| [02:10:27] |
* |
klando has left #trac |
| [02:12:19] |
* |
BrianHV has quit IRC |
| [02:12:19] |
* |
boorad has quit IRC |
| [02:12:19] |
* |
cboos has quit IRC |
| [02:12:19] |
* |
tsb has quit IRC |
| [02:12:19] |
* |
pombreda has quit IRC |
| [02:12:19] |
* |
omry__ has quit IRC |
| [02:12:49] |
* |
BrianHV has joined #trac |
| [02:12:49] |
* |
cboos has joined #trac |
| [02:12:49] |
* |
omry__ has joined #trac |
| [02:12:49] |
* |
pombreda has joined #trac |
| [02:12:49] |
* |
boorad has joined #trac |
| [02:12:49] |
* |
tsb has joined #trac |
| [02:16:20] |
* |
lanjelot has quit IRC |
| [02:17:13] |
* |
pombreda has quit IRC |
| [02:21:15] |
* |
hpnadig_ has quit IRC |
| [02:22:24] |
* |
hpnadig_ has joined #trac |
| [02:22:42] |
* |
eblot_ has quit IRC |
| [02:50:35] |
* |
mbroeken has joined #trac |
| [02:54:42] |
* |
mbroeken has quit IRC |
| [03:03:06] |
* |
kemik has joined #trac |
| [03:03:10] |
* |
kemik has left #trac |
| [03:21:05] |
* |
majorTomBelgium has left #trac |
| [03:33:58] |
* |
dc2447 has joined #trac |
| [03:35:17] |
<dc2447> |
Does anyone know if "2007-02-28 11:26:03,561 Trac[main] ERROR: disk I/O error" indicates a corrupt database? |
| [03:35:30] |
<dc2447> |
when using sqlite |
| [03:49:45] |
<cboos> |
dc2447: any kind of error with filesystem calls on db/trac.db could produce that -> check the physical integrity of the file and the filesystem |
| [03:54:35] |
<dc2447> |
Hi - the file system is fine - it's a large NFS server - |
| [03:54:42] |
<evil_twin> |
New news from t.e.o: DatabaseBackend edited by Colin <http://trac.edgewall.org/wiki/DatabaseBackend> |
| [03:55:03] |
<cboos> |
so it was probably a failure with a lock |
| [03:55:52] |
<cboos> |
but it's not really recommended to have a sqlite db on a nfs server |
| [03:56:28] |
<dc2447> |
Ok - we think we are specifically getting this problem with the 'browse source' part of trac - everything e4lse runs fine. Browse source just takes about tes minutes to return any content |
| [03:57:03] |
<dc2447> |
cboos - I know that sqlite and nfs isn't a great ide abut we have only a sinlge client accessing sqlite |
| [03:57:17] |
<dc2447> |
Is there any way to verify the sqlite db? |
| [03:57:40] |
<dc2447> |
Have tried the hotcopy function in trac-admin and browse source is still incredibly slow |
| [03:57:44] |
* |
goldeagle has joined #trac |
| [04:11:42] |
* |
_shawn has quit IRC |
| [04:18:49] |
* |
hpnadig_ has quit IRC |
| [04:26:40] |
<evil_twin> |
New news from t.e.o: MySqlDb edited by Colin Guthrie <http://trac.edgewall.org/wiki/MySqlDb> |
| [04:33:26] |
<dc2447> |
anyone know how to clear out tracs internal cache? |
| [04:34:58] |
* |
Musafer has joined #trac |
| [04:35:04] |
<Musafer> |
HI |
| [04:36:59] |
* |
Musafer has left #trac |
| [04:50:55] |
* |
_shawn has joined #trac |
| [04:56:48] |
<evil_twin> |
New news from t.e.o: DatabaseBackend edited by cboos <http://trac.edgewall.org/wiki/DatabaseBackend> |
| [04:57:19] |
<cboos> |
dc2447: the slowness while browsing, this is probably because you have your SVN repository on the same NFS share... also a bad combo |
| [04:58:47] |
<cboos> |
although Trac is also using the cache for the changeset related information, while browsing |
| [05:00:45] |
<dc2447> |
cboos - the NFS is faster than the local disk by several orders of magnitude |
| [05:01:13] |
<cboos> |
well, the problem is with the locks |
| [05:01:33] |
<cboos> |
both SQLite and Subversion are making some critical use of file locking |
| [05:01:40] |
<cboos> |
that could be the bottleneck |
| [05:02:15] |
<dc2447> |
eh? Are you suggesting that trac is using svn locks? WTF |
| [05:02:37] |
<dc2447> |
any there is no locking for viewing an svn repo |
| [05:02:46] |
<cboos> |
and I'm sure you couldn't find a local disk that would make Trac browse a repository in 10 minutes... |
| [05:03:46] |
<cboos> |
well, are you sure there's no kind of read lock for svn? ok, maybe. But there is for SQLite for sure |
| [05:03:48] |
<dc2447> |
No, because I used trac-admin /nfs/foo/bar hotcopy /localdisk/foo/bar and it made not difference |
| [05:05:12] |
<cboos> |
ok, that moved your sqlite db on the local disk, what about the svn repository? |
| [05:05:45] |
<cboos> |
can you try to do the same? (assuming the repos is on the nfs share) |
| [05:06:05] |
<cboos> |
btw, which repository backend are you using? fsfs or bdb? |
| [05:06:09] |
<cboos> |
bdb has read locks |
| [05:07:13] |
<cboos> |
or more precisely, accessing a bdb svn repository in read mode requires write access (and therefore write locks) |
| [05:15:20] |
* |
PingYeh has quit IRC |
| [05:15:24] |
* |
PingYeh has joined #trac |
| [05:22:20] |
* |
dharrigan has joined #trac |
| [05:26:58] |
<evil_twin> |
New news from t.e.o: Trac0.9/TracOnWindows edited by Nik <http://trac.edgewall.org/wiki/Trac0.9/TracOnWindows> |
| [05:39:27] |
* |
jimmy-james has quit IRC |
| [05:58:11] |
* |
ErikRose has joined #trac |
| [06:01:52] |
* |
dc2447 has left #trac |
| [06:03:33] |
* |
ErikRose has quit IRC |
| [06:07:24] |
* |
LeeH has joined #trac |
| [06:09:27] |
* |
dharrigan has quit IRC |
| [06:17:15] |
* |
apk has joined #trac |
| [06:18:03] |
* |
rduhon has joined #trac |
| [06:28:38] |
* |
shubes has joined #trac |
| [06:35:15] |
* |
redir has joined #trac |
| [06:38:03] |
* |
tpollari has joined #trac |
| [06:49:48] |
* |
d0rt has joined #trac |
| [06:51:03] |
* |
klando_ has joined #trac |
| [06:52:56] |
* |
klando has joined #trac |
| [06:57:25] |
<evil_twin> |
New news from t.e.o: WikiNewPage edited by anonymous <http://trac.edgewall.org/wiki/WikiNewPage> || Ticket #4865 (defect created): Interpreted InterTrac URL ignoring spaces in target names <http://trac.edgewall.org/ticket/4865> |
| [07:02:43] |
* |
retracile_ has joined #trac |
| [07:06:22] |
* |
retracile has quit IRC |
| [07:07:24] |
* |
danbeck has joined #trac |
| [07:08:36] |
* |
goldeagle has quit IRC |
| [07:11:15] |
* |
jcoby has joined #trac |
| [07:12:30] |
<cboos> |
urgh, seems like the recent internet explorer javascript hack plays not well with ie7... |
| [07:12:44] |
<cboos> |
the displayed page starts with a beautiful : |
| [07:12:46] |
<cboos> |
<!--[if IE lt 7]> <![endif]--> |
| [07:12:50] |
<cboos> |
in the upper left corner... |
| [07:13:01] |
<cboos> |
(just above the trac logo) |
| [07:17:30] |
* |
jimmy-james has joined #trac |
| [07:23:15] |
* |
LionsMane has joined #trac |
| [07:23:20] |
<mitsuhiko> |
cboos: link? :) |
| [07:23:35] |
<cboos> |
well, anytihng |
| [07:23:42] |
<cboos> |
use ie7 on a recent trac |
| [07:23:50] |
<mitsuhiko> |
cboos: ubuntu user |
| [07:23:59] |
<mitsuhiko> |
hmm. hey. i have a ie7 installation |
| [07:24:01] |
<mitsuhiko> |
*try* |
| [07:24:52] |
<mitsuhiko> |
cboos: not on the pocoo trac? |
| [07:25:27] |
* |
cboos_ has joined #trac |
| [07:26:14] |
* |
LionsMane has quit IRC |
| [07:26:29] |
<cboos_> |
mitsuhiko: it was introduced by r4848 |
| [07:26:40] |
* |
LionsMane has joined #trac |
| [07:26:54] |
<mitsuhiko> |
well. becoming ie7 running on ubuntu is quite of a hack |
| [07:27:02] |
<mitsuhiko> |
maybe it works here by chance :) |
| [07:27:31] |
<evil_twin> |
New news from t.e.o: Ticket #4866 (defect created): Bug when handling slashes in DB passwords <http://trac.edgewall.org/ticket/4866> |
| [07:27:50] |
<cboos_> |
perhaps it's an "old" ie7 still compatible with ie6 bugs ;-) |
| [07:28:10] |
<cboos_> |
nick cboos |
| [07:37:45] |
* |
cluster has joined #trac |
| [07:42:14] |
* |
ikea2_ has joined #trac |
| [07:42:20] |
<ikea2_> |
is it possible to use trac on iss? |
| [07:42:21] |
<ikea2_> |
iis? |
| [07:42:58] |
<apk> |
It is possible to run Apache on Windows. (: |
| [07:43:30] |
<apk> |
http://trac.edgewall.org/wiki/TracOnWindowsIis6 |
| [07:44:22] |
* |
cboos has quit IRC |
| [07:45:18] |
* |
tpollari has quit IRC |
| [07:45:49] |
* |
tpollari has joined #trac |
| [07:47:00] |
<ikea2_> |
apk: have a tech dude here that's gonna set that up for me (= |
| [07:47:07] |
<ikea2_> |
apk: just thought I'd ask if it's possible |
| [07:47:20] |
<ikea2_> |
so he's not wastin' teh $$$ |
| [07:57:42] |
<evil_twin> |
New news from t.e.o: TracEnvironment edited by cboos <http://trac.edgewall.org/wiki/TracEnvironment> || TracEnvironment edited by cboos <http://trac.edgewall.org/wiki/TracEnvironment> |
| [08:09:47] |
<apk> |
Does Trac resync with Subversion when you save a ticket? |
| [08:10:58] |
<apk> |
Does anybody have a cron job to periodically copy the subversion repository to keep a separate copy for trac and resync trac, so trac is not slowed by people committing to subversion during the day? |
| [08:19:13] |
* |
ikea2 has joined #trac |
| [08:20:58] |
* |
retracile_ has quit IRC |
| [08:25:11] |
* |
PingYeh has quit IRC |
| [08:25:17] |
* |
PingYeh has joined #trac |
| [08:31:48] |
* |
ikea2_ has quit IRC |
| [08:39:58] |
* |
pombred1 has quit IRC |
| [08:41:42] |
* |
sosgrososabelo has joined #trac |
| [08:52:34] |
* |
klando has quit IRC |
| [08:52:37] |
* |
jimmy-james has quit IRC |
| [08:52:51] |
* |
sosgrososabelo has left #trac |
| [08:57:49] |
* |
jimmy-james has joined #trac |
| [08:58:03] |
<evil_twin> |
New news from t.e.o: Ticket #4867 (defect created): Zip files cannot be read with Windows unarchiver <http://trac.edgewall.org/ticket/4867> |
| [08:59:00] |
* |
kafe has joined #trac |
| [09:00:18] |
<pacopablo> |
morning ;) |
| [09:02:20] |
<kafe> |
evening :) |
| [09:09:30] |
* |
kfaday has joined #trac |
| [09:10:53] |
<kfaday> |
hello |
| [09:11:04] |
<kfaday> |
would anybody please check out the following? |
| [09:11:05] |
<kfaday> |
http://groups.google.com/group/trac-users/browse_thread/thread/9a2db5691d1de29e/c5c26bcdab1ec7c2?lnk=gst&q=kfaday&rnum=2#c5c26bcdab1ec7c2 |
| [09:11:13] |
* |
ikea2 has quit IRC |
| [09:11:31] |
<kfaday> |
it's a problem i'm having, i can't remove the default permissions on users |
| [09:12:04] |
<kfaday> |
thanks! |
| [09:14:28] |
* |
pradeep has joined #trac |
| [09:16:36] |
* |
thatch has joined #trac |
| [09:16:54] |
* |
retracile_ has joined #trac |
| [09:16:55] |
* |
chrisg has joined #trac |
| [09:17:16] |
<thatch> |
Hey guys, is anyone still sprinting at pycon? |
| [09:17:22] |
<retracile_> |
Yep! |
| [09:17:28] |
<retracile_> |
Come back! |
| [09:17:31] |
* |
retracile_ is now known as retracile |
| [09:17:50] |
<thatch> |
I can't, work and school. |
| [09:17:59] |
<thatch> |
I just wanted to point out something I noticed wrt the recent wiki edits. |
| [09:18:24] |
<retracile> |
Aw, skip out & come anyway. ;) |
| [09:19:14] |
<thatch> |
trac/ticket/api.py line 307 says available_acts = ['leave'], but line 105 doesn't. WorkFlow r52 also says leave is no longer allowed by default. |
| [09:19:58] |
<retracile> |
Right... you have to specify leave... |
| [09:20:21] |
<thatch> |
then shouldn't line 307 not have it in by default? (admittedly that's code I wrote...) |
| [09:20:22] |
<retracile> |
In fact, you have to define leave. |
| [09:20:40] |
<rduhon> |
the 307 stuff is legacy stuff that hasn't been removed yet, I think |
| [09:20:51] |
<thatch> |
oh. |
| [09:20:51] |
<thatch> |
ok |
| [09:20:52] |
<rduhon> |
I left it in while I was testing, and part of the class is still needed |
| [09:21:20] |
<rduhon> |
(the remaining part to be eventually replaced with the IFieldProvider things and such) |
| [09:22:00] |
<rduhon> |
also, its what the unit tests use . . . I need to write some more unit tests for the new stuff, it'll just be a little more complicated (since the new stuff can have arbitrary workflows) |
| [09:22:44] |
<kfaday> |
hello, would anybody please check out the following? |
| [09:22:48] |
<kfaday> |
http://groups.google.com/group/trac-users/browse_thread/thread/9a2db5691d1de29e/c5c26bcdab1ec7c2?lnk=gst&q=kfaday&rnum=2#c5c26bcdab1ec7c2 |
| [09:22:54] |
<kfaday> |
it's a problem i'm having, i can't remove the default permissions on users, thanks |
| [09:23:09] |
* |
eagle__ has quit IRC |
| [09:23:09] |
* |
Epcylon has quit IRC |
| [09:23:18] |
* |
eagle__ has joined #trac |
| [09:24:08] |
* |
Epcylon has joined #trac |
| [09:24:35] |
<thatch> |
kfaday: can you clarify "can't remove"? do you get an error? |
| [09:26:05] |
<kfaday> |
hey thatch, no error, i just remove it the usual way, then list it and get the same permissions, nothing has been removed |
| [09:26:16] |
<kfaday> |
i tried adding trac_admin to the user, and removing it |
| [09:26:19] |
<kfaday> |
that worked |
| [09:26:33] |
<kfaday> |
but i couldn't remove any of the default permissions |
| [09:26:56] |
<thatch> |
can you paste the exact line you're typing to remove permission? |
| [09:28:58] |
<kfaday> |
give me one sec. it's the same one found on trac help |
| [09:31:11] |
<kfaday> |
permission remove user 1 WIKI_MODIFY |
| [09:31:16] |
<kfaday> |
permission remove user1 WIKI_MODIFY |
| [09:31:33] |
<thatch> |
that should work. What's your Trac version & db backend? |
| [09:32:03] |
<kfaday> |
if i do the following "permission list user1", WIKI_MODIFY still exists |
| [09:32:07] |
<kfaday> |
trac 0.10.3 |
| [09:32:52] |
<apk> |
Am I missing something, or does Trac not track which bugs are duplicates of which? |
| [09:32:59] |
<kfaday> |
how do i get the db backend? |
| [09:33:46] |
<apk> |
cat trac.ini | grep database |
| [09:34:23] |
<kfaday> |
working on windows, but got it... sqlite:db/trac.db |
| [09:34:27] |
<thatch> |
apk: no, Trac doesn't currently do that. It's on the list of things to add. It could be done as a ticket change listener plugin. |
| [09:37:09] |
<thatch> |
kfaday: hmm. You say you have Discussion Trac plugin installed? If you disable the plugin for a sec, can you remove the permissions then reenable? |
| [09:37:16] |
<kfaday> |
what if i download a sqlite database browser and remove permissions from that user that way? |
| [09:37:16] |
<kfaday> |
http://sqlitebrowser.sourceforge.net/ |
| [09:37:19] |
<kfaday> |
let me try |
| [09:40:33] |
<kfaday> |
i disabled discussion plugin from trac ini, restarted apache, tried removing some permissions, but i get the same behaviour as before |
| [09:41:02] |
* |
pombreda has joined #trac |
| [09:41:36] |
<kfaday> |
:( |
| [09:44:07] |
<apk> |
I'll just make a custom field "duplicate of" in hopes that when it adds the feature, I can migrate the data. |
| [09:44:46] |
<thatch> |
apk: what are you going to do with "the data"? |
| [09:45:27] |
* |
tpollari has quit IRC |
| [09:45:57] |
* |
tpollari has joined #trac |
| [09:46:04] |
<apk> |
thatch: When the features is added, I'll find out where the featuers stores its information, and I'll move the data from the ticket_custom table to wherever it is needed. |
| [09:46:55] |
<kfaday> |
strange, i've been browsing the permissions db in trac, and not all users i created that are in apache, and can see trac, are in that db |
| [09:46:59] |
<kfaday> |
might that be it? |
| [09:47:26] |
<kfaday> |
username anonymus has all the default permissions |
| [09:47:47] |
<apk> |
It is easy to query the database to find which tickets are a duplicate of a particular ticket. Can't be that hard to get that information into the ticket display. |
| [09:48:24] |
<kfaday> |
apk: You could create a ticket report showing what you want |
| [09:48:43] |
<kfaday> |
only trac admins are in the permission table |
| [09:48:59] |
<apk> |
kfaday: That would be easy enough. It would be nice to have it on the display though. |
| [09:50:36] |
* |
omry_ has joined #trac |
| [09:52:26] |
* |
mikedld|w has joined #trac |
| [09:52:38] |
<kfaday> |
thatch? |
| [09:53:57] |
<mikedld|w> |
2all: if I need to skip some fields depending on action to be made, what can I do? skip means I don't want to show them on the form |
| [09:54:57] |
<mikedld|w> |
or in other words, is there any was to make user first specify action, and them show the form? |
| [09:55:06] |
<mikedld|w> |
*then |
| [09:55:47] |
<mikedld|w> |
*any way |
| [09:55:48] |
<mikedld|w> |
:-p |
| [10:06:04] |
* |
omry__ has quit IRC |
| [10:08:06] |
* |
markm2319 has joined #trac |
| [10:09:00] |
<markm2319> |
Any way of setting an alternative locking mode on Trac Wiki page edits? (current seems to be optimistic - and I would like to have pessimistic with a timeout) |
| [10:15:36] |
* |
chandlerc has joined #trac |
| [10:15:45] |
* |
tsb has quit IRC |
| [10:17:36] |
* |
matt_good has joined #trac |
| [10:19:53] |
<alect> |
mmm, morning |
| [10:21:33] |
* |
jwiles has joined #trac |
| [10:21:52] |
* |
omry_ is now known as omry |
| [10:22:09] |
<retracile> |
Uh, no alect, it's afternoon. |
| [10:22:13] |
<retracile> |
;P |
| [10:22:18] |
<alect> |
not in australia |
| [10:22:21] |
<alect> |
! |
| [10:22:37] |
<retracile> |
Yes, but you're not in australia, now are you? |
| [10:23:44] |
<cboos_> |
alect: are you back there, or you can't help but resynchronize? |
| [10:23:50] |
* |
cboos_ is now known as cboos |
| [10:24:10] |
<alect> |
cboos: still in the US, just messing with eli :) |
| [10:24:18] |
<cboos> |
cool |
| [10:24:42] |
<cboos> |
ok, Addison, we have a problem |
| [10:25:03] |
<cboos> |
known as the weirdest Posgresql bug ever, #4043 |
| [10:25:13] |
<cboos> |
which can totally block Trac |
| [10:25:29] |
<cboos> |
now, it's not only a postgresql bug, as it happens also with pysqlite |
| [10:25:41] |
<cboos> |
as I've witnessed yesterday on the Paludis Trac |
| [10:25:51] |
<cboos> |
so it's a /big/ problem |
| [10:26:21] |
<cboos> |
now lI've just finished a patch which should hopefully fix it |
| [10:26:37] |
<cboos> |
and I'd really appreciate if some of you could test it a bit |
| [10:26:45] |
<cboos> |
works for me (tm0 |
| [10:26:47] |
<cboos> |
works for me (tm) |
| [10:27:16] |
<cboos> |
but such a big change must be more thoroughly tested |
| [10:28:04] |
<cboos> |
in case someone is interested, the patch (currently for trunk) is attached at the folliwing ticket |
| [10:28:07] |
<cboos> |
@ticket 4586 |
| [10:28:07] |
<evil_twin> |
cboos: http://trac.edgewall.org/ticket/4586 |
| [10:28:30] |
<evil_twin> |
New news from t.e.o: Ticket #3837 (enhancement closed): Inefficient sql query <http://trac.edgewall.org/ticket/3837#comment:9> |
| [10:29:08] |
<cboos> |
ok, thanks for your attention, you can resume your normal operations ;-) |
| [10:29:21] |
* |
cboos goes home |
| [10:29:40] |
<alect> |
heh |
| [10:31:02] |
* |
kafe has quit IRC |
| [10:48:43] |
* |
cboos has quit IRC |
| [11:09:16] |
* |
jborg has joined #trac |
| [11:09:36] |
* |
rlo has joined #trac |
| [11:16:33] |
* |
redir has quit IRC |
| [11:19:09] |
* |
grandrew has quit IRC |
| [11:21:26] |
* |
coderanger__ has joined #trac |
| [11:21:33] |
* |
coderanger__ is now known as coderanger_ |
| [11:21:38] |
* |
grandrew has joined #trac |
| [11:24:05] |
* |
rlo has quit IRC |
| [11:24:06] |
* |
retracile_ has joined #trac |
| [11:24:46] |
* |
rlo has joined #trac |
| [11:24:48] |
* |
coderanger__ has joined #trac |
| [11:26:40] |
* |
omry_ has joined #trac |
| [11:31:38] |
* |
stevegt has quit IRC |
| [11:33:54] |
* |
fugu13 has joined #trac |
| [11:35:24] |
* |
omry__ has joined #trac |
| [11:35:47] |
* |
coderanger__ has quit IRC |
| [11:35:53] |
* |
jborg has quit IRC |
| [11:39:45] |
* |
matt_good has quit IRC |
| [11:40:47] |
* |
matt_good has joined #trac |
| [11:41:00] |
* |
coderanger_ has quit IRC |
| [11:41:19] |
* |
omry_ has quit IRC |
| [11:41:24] |
* |
rduhon has quit IRC |
| [11:41:53] |
* |
retracile has quit IRC |
| [11:42:19] |
* |
omry has quit IRC |
| [11:47:51] |
* |
f13 has joined #trac |
| [11:47:58] |
<f13> |
Is there a way to get notifications of wiki edits for a project? |
| [11:48:16] |
<f13> |
I got ticket notification working, but not so much wiki edits |
| [11:48:19] |
* |
omry_ has joined #trac |
| [11:51:02] |
* |
stevegt has joined #trac |
| [11:51:16] |
* |
coderanger_ has joined #trac |
| [11:53:41] |
<kfaday> |
f12: go to timeline, then check wiki changes |
| [11:53:44] |
<kfaday> |
click update |
| [11:53:53] |
<kfaday> |
and get the rss feed again |
| [11:53:58] |
<kfaday> |
f13 (sorry) |
| [11:54:46] |
* |
omry__ has quit IRC |
| [11:55:19] |
* |
kfaday slaps f13 around a bit with a large trout |
| [11:57:42] |
* |
shubes has quit IRC |
| [11:58:53] |
<evil_twin> |
New news from t.e.o: Ticket #4868 (enhancement created): Johns New Teckit for testing <http://trac.edgewall.org/ticket/4868> || TracInstall edited by anonymous <http://trac.edgewall.org/wiki/TracInstall> || Changeset [4879]: PyCon: Security branch. <http://trac.edgewall.org/changeset/4879> |
| [12:01:07] |
<f13> |
kfaday: hrm, I was hoping something not rss. rss is somewhat transient where as email is more perminent. |
| [12:02:55] |
<alect> |
http://bailando.sims.berkeley.edu/papers/infovis01.htm |
| [12:03:23] |
<alect> |
http://hypergraph.sourceforge.net/ |
| [12:04:08] |
<alect> |
http://www.ischool.berkeley.edu/~rachna/gtv/ |
| [12:06:05] |
<fugu13> |
our main software tool is at http://nwb.slis.indiana.edu , which is built on top of our framework ( http://cishell.org ) |
| [12:06:40] |
<coderanger_> |
f13: There is a wiki notification plugin |
| [12:06:55] |
<alect> |
http://www.cs.usyd.edu.au/~aquigley/3dfade/ |
| [12:07:09] |
<f13> |
coderanger_: ok, I'll look into it. Thakns. |
| [12:08:44] |
* |
dilinger has joined #trac |
| [12:09:56] |
<chrisg> |
Any tips on getting custom fields into the output of custom queries? |
| [12:10:27] |
* |
f13 has left #trac |
| [12:11:16] |
<chrisg> |
I like the custom queries, and would prefer using some form of cq as opposed to a custom report |
| [12:12:46] |
<apk> |
chrisg: join on ticket_custom ? |
| [12:13:04] |
* |
PingYeh has quit IRC |
| [12:13:09] |
* |
PingYeh has joined #trac |
| [12:14:52] |
<apk> |
oh, you said custom queries, not custom reports. |
| [ |