| [00:04:21] |
<erikand> |
how do I get the component owner for a ticket? |
| [00:07:13] |
* |
cmlenz_ has joined #trac |
| [00:10:54] |
* |
gour has left #trac |
| [00:13:55] |
* |
konrads has joined #trac |
| [00:14:22] |
<konrads> |
coderanger, Hi, You mentioned You had some db schema upgrade snippet. Which plugin of Yours uses it? |
| [00:15:51] |
<coderanger> |
Any of them that has a DB table |
| [00:17:18] |
<erikand> |
I have the ticket so I can get ticket['component'], but how can I use that to get the component owner |
| [00:18:33] |
<coderanger> |
erikand: The Component object |
| [00:19:44] |
<konrads> |
coderanger: name one? |
| [00:23:31] |
* |
cmlenz has quit IRC |
| [00:26:00] |
* |
cbalan has joined #trac |
| [00:27:25] |
<konrads> |
coderanger: I can't find any :) |
| [00:30:14] |
* |
Synapse has quit IRC |
| [00:31:40] |
<konrads> |
any plugins using DB and defining schemas |
| [00:36:42] |
<erikand> |
me too stupid |
| [00:38:14] |
<konrads> |
are there some docs on the trac.db module? |
| [00:40:17] |
* |
cmlenz_ has quit IRC |
| [00:41:23] |
* |
kringalf has quit IRC |
| [00:52:47] |
<erikand> |
how do I get the Component object? |
| [00:59:22] |
<erikand> |
ticket['component'] only gives me a string of the component name, right? |
| [01:01:19] |
<cbalan> |
erikand: Component(env, 'component_name').owner .... check out trac.ticket.model.Component |
| [01:01:52] |
<erikand> |
thanks |
| [01:03:15] |
* |
coling has joined #trac |
| [01:03:42] |
* |
cmlenz has joined #trac |
| [01:07:48] |
* |
SunWuKung has quit IRC |
| [01:09:12] |
* |
hatul30 has joined #trac |
| [01:10:10] |
<erikand> |
hmm |
| [01:10:13] |
<erikand> |
self.env.log.debug("Component owner=%s" % (Component(self.env,ticket['owner'])).owner ) |
| [01:10:49] |
<erikand> |
ERROR: 'Component' object has no attribute 'owner' |
| [01:12:34] |
<cbalan> |
erikand: are u sure that it's trac.ticket.model.Component and not trac.core.Component ? |
| [01:12:45] |
<erikand> |
exactly.. I'm getting the wrong Component? |
| [01:12:53] |
<erikand> |
so I added ticket.Component |
| [01:12:54] |
<cbalan> |
erikand: maybe .. |
| [01:13:15] |
<erikand> |
that did the trick |
| [01:13:29] |
<erikand> |
thanks for the help. |
| [01:13:39] |
<cbalan> |
erikand: np |
| [01:27:35] |
<konrads> |
How is the user stored in trac? as name or as id? |
| [01:28:34] |
<konrads> |
What does key in Table declaration actually mean? |
| [01:28:53] |
<konrads> |
is it primary key? |
| [01:37:25] |
* |
hlb has quit IRC |
| [01:37:31] |
* |
hlb has joined #trac |
| [01:37:41] |
* |
segy has quit IRC |
| [01:37:49] |
* |
segy has joined #trac |
| [01:45:36] |
* |
hatul30 has quit IRC |
| [01:48:53] |
* |
hatul30 has joined #trac |
| [01:51:55] |
* |
hatul30 has quit IRC |
| [02:04:48] |
* |
kringalf has joined #trac |
| [02:10:11] |
* |
hatul30 has joined #trac |
| [02:11:38] |
<konrads> |
What is entry_points for trac plugin egg? |
| [02:12:46] |
* |
lae1 has joined #trac |
| [02:22:06] |
* |
blafasel is now known as Blafasel |
| [02:27:04] |
<erikand> |
argh |
| [02:27:36] |
<erikand> |
how can I make sure it's it's trac.ticket.model.Component and not trac.core.Component I'm getting? |
| [02:28:34] |
<erikand> |
self.env.log.debug("Component owner=%s" % (ticket.Component(self.env,ticket['owner'])).owner ) |
| [02:28:42] |
<erikand> |
ERROR: 'Ticket' object has no attribute 'Component' |
| [02:33:34] |
<erikand> |
please |
| [02:34:50] |
<erikand> |
how do I type cast to trac.ticket.model.Component? |
| [02:35:51] |
<erikand> |
self.env.log.debug("Component owner=%s" % (Component(self.env,ticket['owner'])).owner ) |
| [02:35:51] |
<erikand> |
AttributeError: 'Component' object has no attribute 'owner' |
| [02:36:27] |
<evil_twin> |
New news from t.e.o: Ticket #5948 (defect created): [Home PAge] error doesn't let me use trac <http://trac.edgewall.org/ticket/5948> |
| [02:40:15] |
<erikand> |
self.env.log.debug("Component owner=%s" % (trac.ticket.model.Component(self.env,ticket['owner'])).owner ) |
| [02:40:15] |
<erikand> |
NameError: global name 'trac' is not defined |
| [02:42:32] |
* |
jannic has quit IRC |
| [02:45:02] |
* |
lae1 is now known as laen |
| [02:49:48] |
* |
menace has joined #trac |
| [02:50:22] |
* |
jannic has joined #trac |
| [02:51:50] |
<erikand> |
how do I separate the different Component classes? |
| [02:52:59] |
<erikand> |
self.env.log.debug("Component owner=%s" % (ticket.component(self.env,ticket['owner'])).owner ) |
| [02:52:59] |
<erikand> |
AttributeError: 'Ticket' object has no attribute 'component' |
| [02:54:07] |
<erikand> |
self.env.log.debug("Component owner=%s" % (Ticket.Component(self.env,ticket['owner'])).owner ) |
| [02:54:07] |
<erikand> |
NameError: global name 'Ticket' is not defined |
| [02:56:13] |
* |
PingYeh has quit IRC |
| [02:56:39] |
* |
PingYeh has joined #trac |
| [02:59:08] |
<erikand> |
some one please help the rookit |
| [02:59:16] |
<erikand> |
rookie |
| [03:03:40] |
* |
lys has quit IRC |
| [03:04:11] |
<konrads> |
erikand: NameError probably refers to missing import |
| [03:04:18] |
<konrads> |
erikand: isinstance could work |
| [03:06:24] |
<erikand> |
konrads, how do you use isinstance? |
| [03:08:11] |
<konrads> |
erikand: http://www.ibm.com/developerworks/library/l-pyint.html |
| [03:08:12] |
<konrads> |
the very end |
| [03:12:50] |
* |
Voltaire has joined #trac |
| [03:12:51] |
* |
PingYeh has quit IRC |
| [03:12:55] |
* |
PingYeh has joined #trac |
| [03:13:10] |
<Voltaire> |
hi |
| [03:13:51] |
<Voltaire> |
I am using Trac 0.10.4 and the concept of groups doesnt seem to be working. Any suggestions? |
| [03:16:04] |
* |
Cammm has quit IRC |
| [03:17:08] |
<konrads> |
I can't find a signle plugin that uses the Table |
| [03:17:15] |
<cbalan> |
erikand: u could do also ... : from trac.ticket.model import Component as ticketComponent |
| [03:19:10] |
<konrads> |
Hello, how to properly set up additional tables in db that my plugin needs? |
| [03:19:38] |
<konrads> |
I see that trac.db.Table is used for setting up main trac schema, but I can't find a single plugin that uses this too |
| [03:25:37] |
<cbalan> |
konrads: check out for instance .. tractagsplugin ( tractags.api.TagEngine ) |
| [03:26:46] |
<cbalan> |
konrads: I think that's a good example |
| [03:27:21] |
<konrads> |
cbalan: grand, thanks! |
| [03:36:51] |
<evil_twin> |
New news from t.e.o: Trac0.11/TracInstall edited by anonymous <http://trac.edgewall.org/wiki/Trac0.11/TracInstall> || Ticket #5949 (defect created): tracd crashes with my SVN repository <http://trac.edgewall.org/ticket/5949> |
| [03:39:33] |
<konrads> |
What is the convetion for file names |
| [03:39:36] |
<konrads> |
e.g. db.py, api.py? |
| [03:44:01] |
* |
Voltaire has quit IRC |
| [03:45:10] |
<erikand> |
cbalan: thanks. Is that the only way to separate them? |
| [03:45:42] |
<erikand> |
so I cannot do anything like trac.model.ticket.Component |
| [03:50:54] |
<erikand> |
I have it working now by doing: |
| [03:50:54] |
<erikand> |
from core import * |
| [03:50:54] |
<erikand> |
from trac.ticket import model |
| [03:50:55] |
<erikand> |
and then making the cast with model.Component |
| [03:53:20] |
<erikand> |
is there any way to do: |
| [03:53:20] |
<erikand> |
from core import * |
| [03:53:20] |
<erikand> |
from trac.ticket.model import Component |
| [03:53:20] |
<erikand> |
and then making some type cast when using different Component |
| [03:53:47] |
<erikand> |
but I have two alternatives now anyway.. |
| [03:54:05] |
<erikand> |
but it would've been nice to learn if I could do otherwise |
| [03:54:50] |
<lisppaste5> |
cbalan pasted "trac.ticket.model.Component " at http://paste.lisp.org/display/46963 |
| [03:58:02] |
* |
menace has quit IRC |
| [04:00:45] |
<erikand> |
thanks for all help.. I learned some now |
| [04:03:48] |
* |
InsomniaCity has left #trac |
| [04:07:59] |
<cbalan> |
erikand: great |
| [04:10:13] |
<erikand> |
and I had typo. it's: |
| [04:10:13] |
<erikand> |
from trac.core import * |
| [04:15:25] |
* |
Tartaros has joined #trac |
| [04:22:04] |
* |
Tartaros has quit IRC |
| [04:37:25] |
* |
hatul30 has quit IRC |
| [04:44:29] |
* |
hatul30 has joined #trac |
| [04:50:14] |
<aat> |
evening |
| [04:53:19] |
<konrads> |
Hoi, I created a plugin that implements a IEnvironmentSetupParticipant |
| [04:54:32] |
<konrads> |
However, when I load it, apparently it doesn't create the environment. Do i need to register it someplace? |
| [04:56:28] |
<aat> |
it needs to be enabled under [components], have you done that? |
| [04:56:32] |
<aat> |
@faq plugins |
| [04:56:32] |
<evil_twin> |
aat: "plugins" is http://trac.edgewall.org/wiki/TracPlugins <-- How to install and activate Trac plugins |
| [04:57:17] |
<aat> |
and of course, it needs to return True from environment_needs_upgrade() |
| [04:58:12] |
<konrads> |
aach |
| [04:58:22] |
<konrads> |
humm |
| [04:58:44] |
<konrads> |
there are three methods - environment_created, env_need_upgrade and upgr_env |
| [04:58:57] |
<konrads> |
what should be called when? |
| [05:00:12] |
<aat> |
you don't call them, trac does |
| [05:00:32] |
<aat> |
it calls environment_needs_upgrade() to determine whether your plugin needs to perform any upgrades |
| [05:01:16] |
<aat> |
then when you call trac-admin upgrade, upgrade_environment() is called |
| [05:01:30] |
<konrads> |
okay |
| [05:01:37] |
<konrads> |
and when the plugin is first installed/ |
| [05:01:42] |
<konrads> |
env_created is called? |
| [05:02:20] |
<aat> |
no that's when the trac env is first created |
| [05:02:32] |
* |
Synapse has joined #trac |
| [05:02:41] |
<aat> |
to be called in that situation your plugin would have be installed and enabled globally |
| [05:03:00] |
<konrads> |
Okay. |
| [05:03:24] |
<konrads> |
And if a plugin is installed after the trac env was created, it has to rely on upgrade/ |
| [05:03:47] |
<aat> |
correct |
| [05:04:06] |
<konrads> |
thans |
| [05:04:08] |
<konrads> |
thanks |
| [05:04:15] |
* |
lerrr has joined #trac |
| [05:04:19] |
<lerrr> |
morning |
| [05:06:46] |
<aat> |
re |
| [05:08:39] |
* |
m_g has joined #trac |
| [05:09:33] |
* |
dennis- has joined #trac |
| [05:09:35] |
<dennis-> |
hey guys |
| [05:10:35] |
<dennis-> |
is there a quick way to add all permissions to authenticated users? |
| [05:10:36] |
<lerrr> |
I have some troubles with trac-dev running via lighttpd and fcgi |
| [05:10:50] |
<lerrr> |
dennis-: trac-admin can do that |
| [05:11:05] |
<dennis-> |
lerrr: yeah sure, but how? :) |
| [05:11:54] |
<lerrr> |
dennis-: http://trac.edgewall.org/wiki/TracPermissions |
| [05:12:09] |
* |
hatul30 has quit IRC |
| [05:12:23] |
<dennis-> |
lerrr: thx |
| [05:12:27] |
<lerrr> |
np |
| [05:12:31] |
* |
Burps__ is now known as Burps |
| [05:12:45] |
<lerrr> |
so, anybody with experience in trac+lighttpd ? |
| [05:14:45] |
<konrads> |
lerrr: what doesn't work? |
| [05:15:07] |
<lerrr> |
actually it works, but main page is server without css stylings |
| [05:15:22] |
<lerrr> |
it looks fine only, when I add /something to url |
| [05:15:40] |
<lerrr> |
also, rest works fine only, when it has /something at the end of url |
| [05:16:10] |
<lerrr> |
my goal was to make trac a default page when typing oracle.lerkins.com |
| [05:17:13] |
<konrads> |
lerrr: just redirect |
| [05:17:51] |
<lerrr> |
redirect what to what? |
| [05:18:06] |
* |
hatul30 has joined #trac |
| [05:18:11] |
<lerrr> |
and why trac cant be accessible simply by http://oracle.lerkins/com ? |
| [05:18:26] |
<lerrr> |
nah, http://oracle.lerkins.com/ |
| [05:20:08] |
<konrads> |
lerrr: it can |
| [05:20:20] |
<lerrr> |
so, where did I make the mistake? |
| [05:20:22] |
<konrads> |
you should probably consult lighttpd manual |
| [05:21:21] |
<aat> |
totally guessing, but i'd look for trailing slashes in your config (http://oracle.lerkins.com/) |
| [05:21:22] |
<lerrr> |
I cant find anything about it, thats why I am asking |
| [05:21:28] |
<aat> |
but that could be complete lies |
| [05:22:23] |
<konrads> |
lerrr: start by posting your configuration |
| [05:22:26] |
<lisppaste5> |
lerrr pasted "fcgi trac settings in lighttpd" at http://paste.lisp.org/display/46965 |
| [05:23:06] |
<lerrr> |
thats all, rest is just usual basic lighttpd configuration |
| [05:25:48] |
<lerrr> |
http://oracle.lerkins.com/ shows start page, but without any styles, when I click the prefs link http://oracle.lerkins.com/prefs it shows the same start page, but styles |
| [05:25:52] |
<lerrr> |
*styled |
| [05:26:25] |
<lerrr> |
and when I click the prefs again http://oracle.lerkins.com/prefs/prefs, then it goes to prefs page, which is styled |
| [05:27:59] |
<lerrr> |
any clues? |
| [05:37:23] |
<aat> |
try changing "/" to "" |
| [05:37:46] |
<konrads> |
I am writing a page under TracWebAdmin |
| [05:37:56] |
<konrads> |
I am returning a template, but nothing is rendered |
| [05:38:02] |
<konrads> |
could it be that the template is not found? |
| [05:38:39] |
<konrads> |
any way to test that? |
| [05:39:08] |
<aat> |
check the logs |
| [05:39:34] |
<konrads> |
nothing there |
| [05:39:54] |
<aat> |
insert debug statements (self.env.log.debug('weee')) |
| [05:40:20] |
<aat> |
have you been through the eggcooking tutorial on trachacks? |
| [05:40:22] |
<aat> |
@faq tutorial |
| [05:40:23] |
<evil_twin> |
aat: "tutorial" is http://trac-hacks.org/wiki/EggCookingTutorial: The Trac plugin tutorial |
| [05:40:35] |
<konrads> |
aat: yeah. i managed to deploy my egg |
| [05:40:35] |
<aat> |
you need to implement a templateprovider |
| [05:40:45] |
<aat> |
it's not just about eggs |
| [05:41:01] |
<konrads> |
aat: well, the WebAdmin pages are a bit different |
| [05:41:29] |
<aat> |
oh yeah, forgot you said that |
| [05:41:36] |
<konrads> |
the WebAdmin implements the ITemplateProvider |
| [05:42:09] |
<aat> |
no that's not true |
| [05:42:25] |
<aat> |
any templates shipped with your plugin need to be provided by your plugin |
| [05:42:57] |
<konrads> |
Yes, well I am looking at a working example of TracAccountManager |
| [05:43:15] |
<konrads> |
there the class that implements IAdminPageProvider does not implement any other interfaces |
| [05:45:06] |
* |
aat shrugs |
| [05:45:11] |
<konrads> |
What happens is that I see blank content there , where the WebAdmin content usually is |
| [05:45:12] |
<aat> |
i'm right |
| [05:45:22] |
<konrads> |
uh? |
| [05:45:22] |
<cmlenz> |
it's imlemented by some other component of acctmgr |
| [05:45:24] |
<aat> |
believe it or not :) |
| [05:45:39] |
<konrads> |
cmlenz: humm... let me see then |
| [05:46:13] |
* |
Lathi has left #trac |
| [05:46:51] |
<konrads> |
cmlenz: you are right |
| [05:47:01] |
<konrads> |
adding an ITemplateProvider immediately worked :) |
| [05:47:31] |
<aat> |
mmm |
| [05:50:15] |
<konrads> |
thanks! |
| [06:02:38] |
<lerrr> |
aat: which one ? |
| [06:03:41] |
<aat> |
i can only see one "/" ... at the root |
| [06:05:01] |
<lerrr> |
no change |
| [06:05:10] |
<lerrr> |
it looks and behaves the same way |
| [06:08:55] |
<lerrr> |
and I dont really know what to do |
| [06:12:46] |
<aat> |
not sure |
| [06:14:32] |
* |
ralfWORK has left #trac |
| [06:28:16] |
<lerrr> |
anybody else? |
| [06:31:18] |
* |
Gebb has joined #trac |
| [06:32:14] |
<laen> |
Sure! |
| [06:40:35] |
<lerrr> |
? |
| [06:45:04] |
* |
dennis- has quit IRC |
| [06:45:14] |
* |
dennis- has joined #trac |
| [06:47:58] |
* |
|muelli| has quit IRC |
| [06:49:08] |
* |
Muelli has joined #trac |
| [06:50:31] |
* |
Gebb has left #trac |
| [06:57:46] |
* |
danbeck has joined #trac |
| [07:02:10] |
<erikand> |
I'm trying to use pre-generated urls to create tickets |
| [07:02:17] |
<erikand> |
in 0.11 |
| [07:02:22] |
<erikand> |
like trac/newticket?summary=Test |
| [07:02:34] |
<erikand> |
but it doesn't work.. is this a known problem? |
| [07:08:25] |
<erikand> |
found something.. need to use trac/newticket?field_summary=Test |
| [07:08:58] |
<laen> |
Cool. |
| [07:10:31] |
* |
boorad has joined #trac |
| [07:12:46] |
<erikand> |
how is documentation for 0.x vs. 0.11 separated? |
| [07:13:16] |
<erikand> |
I mean is there a wiki for 0.11 where the field_xxx information should be updated (or already is) |
| [07:13:19] |
<aat> |
poorly at the moment |
| [07:14:17] |
<erikand> |
so I shouldn't update http://trac.edgewall.org/wiki/TracTickets ;-) |
| [07:14:30] |
<aat> |
no |
| [07:14:43] |
<aat> |
you can branch it to 0.11/TracTickets though if you like |
| [07:14:46] |
<aat> |
http://trac.edgewall.org/wiki/0.11 |
| [07:15:51] |
<erikand> |
not sure how you mean by branching it? |
| [07:16:04] |
<erikand> |
manually? |
| [07:18:40] |
<erikand> |
need to go.. |
| [07:18:40] |
<erikand> |
see you tomorrow |
| [07:20:02] |
<erikand> |
bye |
| [07:20:23] |
* |
erikand has left #trac |
| [07:20:33] |
<konrads> |
this small number naming scheme is confusing - if there are incompatibilities between .10 and .11, the .11 should be called .2 |
| [07:20:33] |
* |
lakin has joined #trac |
| [07:24:21] |
<konrads> |
Is the unique constraint honoured when using Table? |
| [07:26:48] |
* |
hatul30 has quit IRC |
| [07:31:25] |
* |
`Peter has joined #trac |
| [07:36:09] |
* |
retracile has joined #trac |
| [07:36:16] |
* |
Rica has quit IRC |
| [07:36:30] |
* |
Rica has joined #trac |
| [07:36:36] |
* |
retracile mumbles something unintelligable about mornings. |
| [07:37:16] |
* |
aat pats eli |
| [07:37:27] |
<aat> |
i'm channelling asmodai |
| [07:37:32] |
* |
retracile grins |
| [07:37:45] |
<retracile> |
heh :) I can see that ;) |
| [07:38:14] |
<evil_twin> |
New news from t.e.o: TracUsers edited by lbotti@byte-code.com <http://trac.edgewall.org/wiki/TracUsers> |
| [07:40:18] |
<aat> |
how you doing? |
| [07:40:50] |
<`Peter> |
I'd like to add a robots meta tag to all my trac pages. Is there a way to do this? |
| [07:40:58] |
<retracile> |
Doing ok; got into work about 45 minutes "late" today. But at least I got some sleep. ;) |
| [07:41:20] |
<retracile> |
`Peter: have you searched trac-hacks? |
| [07:42:26] |
<konrads> |
`Peter: look for Robots hack on trac-hacks |
| [07:43:01] |
<aat> |
sleep is s sparse commodity at the moment, no dbout :) |
| [07:43:32] |
<retracile> |
yeah. Thought I seem to sleep through most disturbances in the night now. |
| [07:43:36] |
* |
konrads has left #trac |
| [07:45:18] |
<`Peter> |
Thanks retracile. |
| [07:50:05] |
* |
pombreda has quit IRC |
| [07:56:16] |
* |
tsb has quit IRC |
| [07:56:48] |
* |
YosWinK has joined #trac |
| [08:04:23] |
* |
tsb has joined #trac |
| [08:08:26] |
<evil_twin> |
New news from t.e.o: Ticket #5950 (defect created): trac-post-commit-hook has errors when run manually <http://trac.edgewall.org/ticket/5950> |
| [08:10:09] |
* |
_johnjosephbachi has joined #trac |
| [08:10:36] |
<_johnjosephbachi> |
is there a distro that is particularly suited for deploying trac, with minimal installation of software not provided by the distro? |
| [08:11:25] |
<retracile> |
_johnjosephbachi: I've been happy with FC6; "yum install trac" |
| [08:12:04] |
<_johnjosephbachi> |
cool |
| [08:13:14] |
<YosWinK> |
_johnjosephbachi, if you are looking for minimal software installed by default, probably gentoo (emerge trac) or ubuntu server (apt-get trac) can also be useful |
| [08:14:05] |
<_johnjosephbachi> |
excellent. we were probably going to go with Ubuntu |
| [08:14:20] |
<_johnjosephbachi> |
do these installs configure trac with mod_python? |
| [08:14:27] |
<_johnjosephbachi> |
or is that up to me to configure? |
| [08:14:51] |
<YosWinK> |
you will have to work a little and configure it |
| [08:15:34] |
* |
`Peter has quit IRC |
| [08:15:53] |
<_johnjosephbachi> |
okay. |
| [08:15:57] |
* |
|muelli| has joined #trac |
| [08:17:50] |
* |
Muelli has quit IRC |
| [08:19:09] |
* |
laen has quit IRC |
| [08:21:21] |
* |
bismol has joined #trac |
| [08:24:36] |
* |
Federico2 has joined #trac |
| [08:38:38] |
<evil_twin> |
New news from t.e.o: TracUsers edited by nkantrowitz <http://trac.edgewall.org/wiki/TracUsers> |
| [08:57:45] |
* |
YosWinK has quit IRC |
| [09:02:41] |
* |
Blafasel is now known as blafasel |
| [09:10:33] |
* |
hatul30 has joined #trac |
| [09:32:21] |
* |
osmosis has joined #trac |
| [09:32:33] |
* |
coderanger_pad has quit IRC |
| [09:33:40] |
* |
coderanger_pad has joined #trac |
| [09:36:44] |
* |
hatul30 has quit IRC |
| [09:46:13] |
* |
coderanger_pad grumbles about mornings |
| [09:54:33] |
* |
retracile 2nds that |
| [09:54:37] |
* |
em-dash has joined #trac |
| [09:54:50] |
<retracile> |
(and promptly heads to lunch) |
| [10:04:34] |
* |
hatul30 has joined #trac |
| [10:05:25] |
* |
osmosis has quit IRC |
| [10:07:14] |
* |
osmosis has joined #trac |
| [10:08:11] |
* |
danbeck has quit IRC |
| [10:12:29] |
* |
pombreda has joined #trac |
| [10:12:33] |
* |
largos has joined #trac |
| [10:13:32] |
* |
_keturn has quit IRC |
| [10:15:18] |
<largos> |
is there an ETA for the Track 0.11 release? |
| [10:15:30] |
<cmlenz> |
Track? what's that? ;-) |
| [10:15:37] |
<largos> |
(looking at the outstanding tickets, it looks pretty close :) |
| [10:15:49] |
* |
bismol has quit IRC |
| [10:15:52] |
<largos> |
gah. my chat client auto-fixed some spelling "errors" |
| [10:16:23] |
<largos> |
either that or I'm still on my first cup of coffee... |
| [10:16:32] |
* |
bismol has joined #trac |
| [10:17:18] |
<largos> |
anyhow, I'm about to start up a new project, and I'm trying to decide about using the latest stable Trac, Trac 0.11dev, or waiting for a 0.11 release |
| [10:17:26] |
<largos> |
s/about/between/ |
| [10:18:13] |
* |
_keturn has joined #trac |
| [10:35:20] |
* |
tinh_ has quit IRC |
| [10:36:07] |
* |
tinh_ has joined #trac |
| [10:37:15] |
* |
osmosis has quit IRC |
| [10:37:35] |
* |
osmosis has joined #trac |
| [10:41:54] |
* |
jborg has joined #trac |
| [10:50:49] |
* |
hatul30 has quit IRC |
| [10:52:11] |
* |
hatul30 has joined #trac |
| [10:53:59] |
* |
osmosis has quit IRC |
| [10:54:14] |
* |
osmosis has joined #trac |
| [10:56:26] |
* |
coling has quit IRC |
| [10:57:10] |
* |
osmosis has quit IRC |
| [10:58:46] |
* |
osmosis has joined #trac |
| [11:05:24] |
* |
osmosis has quit IRC |
| [11:09:25] |
<evil_twin> |
New news from t.e.o: Ticket #5951 (defect closed): Problem with date format while editing version information using webadmin <http://trac.edgewall.org/ticket/5951#comment:1> || Ticket #5951 (defect created): Problem with date format while editing version information using webadmin <http://trac.edgewall.org/ticket/5951> |
| [11:09:37] |
* |
danbeck has joined #trac |
| [11:11:36] |
* |
khundeen has joined #trac |
| [11:11:42] |
<khundeen> |
hi aat |
| [11:16:26] |
* |
jae has joined #trac |
| [11:35:50] |
* |
osmosis has joined #trac |
| [11:44:33] |
* |
tinh_ has quit IRC |
| [11:45:07] |
* |
tinh_ has joined #trac |
| [11:55:40] |
* |
bowen has joined #trac |
| [12:00:27] |
* |
pembo13_com has joined #trac |
| [12:00:41] |
* |
bowen is now known as fortius |
| [12:00:58] |
* |
fortius is now known as bowenf1 |
| [12:01:37] |
<pembo13_com> |
can i globally disallow annonymous wiki edits? |
| [12:04:01] |
<bowenf1> |
can someone help with trac attachments? they've mysteriously vanished from our installation... |
| [12:08:25] |
<retracile> |
pembo13_com: remove WIKI_MODIFY from anonymous |
| [12:09:58] |
<pembo13_com> |
retracile, thanks.... how do i do that globally |
| [12:10:20] |
<retracile> |
pembo13_com: Uh. What do you mean by "globally"? |
| [12:10:30] |
<pembo13_com> |
retracile, as in not per project |
| [12:10:47] |
<retracile> |
pembo13_com: Are you using tracforge or something? |
| [12:10:55] |
<pembo13_com> |
retracile, no |
| [12:11:21] |
<retracile> |
pembo13_com: Then I don't understand what you are asking. |
| [12:11:39] |
<pembo13_com> |
retracile, will try to rephrase in a few minutes |
| [12:11:57] |
<retracile> |
@wiki TracPermissions |
| [12:11:57] |
<evil_twin> |
retracile: http://trac.edgewall.org/wiki/TracPermissions |
| [12:12:38] |
<pembo13_com> |
evil_twin, been there, will re-read |
| [12:12:39] |
<evil_twin> |
Bugger all, I dunno! |
| [12:13:44] |
<bowenf1> |
hey, we're having a problem that attachments are no longer visible on trac - they don't show up on tickets, there's no longer a button to add one, and there's no "i have attachments" checkbox on the ticket creation form... nothing has changed with the system, they just stopped showing up... can anybody help us field this one? |
| [12:14:35] |
<cmlenz> |
heh |
| [12:14:39] |
<bowenf1> |
logs indicate "Trac[perm] DEBUG: No policy allowed [user] performing ATTACHMENT_CREATE ..." |
| [12:14:46] |
<cmlenz> |
"nothing has changed"… that's gotta be wrong ;) |
| [12:14:55] |
<bowenf1> |
nope - we have not touched it in weeks. |
| [12:15:05] |
<cmlenz> |
you've upgraded trac, I'd suspect |
| [12:15:12] |
<cmlenz> |
svn up at the very least |
| [12:15:34] |
<bowenf1> |
and nothing pertaining to attachments shows up in the "action" list on the admin screen |
| [12:15:46] |
<retracile> |
bowenf1: any sort of automatic update feature enabled on your OS? |
| [12:16:06] |
<bowenf1> |
retracile: not that i know of... it's running on ubuntu... let me check real quick. |
| [12:16:23] |
<cmlenz> |
such as automatically `svn up` any directory containing a ".svn" dir? hah |
| [12:16:50] |
<cmlenz> |
bowenf1: for attachments to wiki pages, ATTACHMENT_CREATE maps to WIKI_CREATE IIRC |
| [12:16:55] |
<cmlenz> |
any for tickets, TICKET_CREATE |
| [12:17:00] |
<cmlenz> |
aat is the expert on that, though |
| [12:20:51] |
<bowenf1> |
thanks guys. gotta bail. |
| [12:21:03] |
* |
bowenf1 has quit IRC |
| [12:21:11] |
<pacopablo> |
afternoon |
| [12:21:23] |
* |
pacopablo wants per ticket custom fields :( |
| [12:21:46] |
<cmlenz> |
pacopablo: use JIRA or something ;) |
| [12:21:59] |
<cmlenz> |
or lotus notes |
| [12:22:17] |
<pacopablo> |
jira = java = suckage |
| [12:22:24] |
<pacopablo> |
lotus notes = suckage |
| [12:22:54] |
<cmlenz> |
ms access, then? |
| [12:22:58] |
<cmlenz> |
:P |
| [12:23:12] |
<pacopablo> |
ms access < suckage |
| [12:23:32] |
<pacopablo> |
nah, i just need to get some time and firgure out how to add it to trac |
| [12:23:46] |
<pacopablo> |
cus trac is hot! |
| [12:23:56] |
* |
YosWinK has joined #trac |
| [12:25:21] |
* |
osmosis has quit IRC |
| [12:25:35] |
<cmlenz> |
haha |
| [12:29:38] |
* |