| [00:08:24] |
* |
cmlenz has joined #trac |
| [00:24:07] |
<cmlenz> |
hmm, someone needs to get started with importing the SF data for the python tracker |
| [00:24:57] |
<alect> |
diogenes sent me the script he was working on |
| [00:25:04] |
<alect> |
but i haven't had the time to try it |
| [00:26:19] |
<alect> |
i'll bounce it to you |
| [00:27:23] |
* |
alect sleep |
| [00:27:26] |
<cmlenz> |
yeah |
| [00:27:37] |
<cmlenz> |
I might be able to look into it |
| [00:42:01] |
* |
_idostyle has joined #trac |
| [00:43:51] |
* |
tenshiKur0 has joined #trac |
| [00:48:10] |
* |
imajes has quit IRC |
| [00:49:14] |
* |
imajes has joined #trac |
| [00:56:00] |
* |
idostyle has quit IRC |
| [00:56:08] |
* |
_idostyle is now known as idostyle |
| [01:04:32] |
* |
_idostyle has joined #trac |
| [01:17:21] |
* |
idostyle has quit IRC |
| [01:17:23] |
* |
_idostyle is now known as idostyle |
| [01:20:04] |
* |
otaku42_away is now known as otaku42 |
| [01:40:14] |
* |
Tuzz has joined #trac |
| [01:41:52] |
<Tuzz> |
Hi all |
| [01:54:08] |
<otaku42> |
moin |
| [02:01:31] |
* |
Sonderblade has joined #trac |
| [02:02:05] |
* |
tuxipuxi has joined #trac |
| [02:23:16] |
* |
dreamingk has joined #trac |
| [02:26:10] |
<Tuzz> |
i've got a problem with svn /svn/trac initenv |
| [02:26:28] |
<Tuzz> |
it gives me this message "Can't open file '/var/svn/test/format' |
| [02:26:47] |
<Tuzz> |
i haven't the directory format :/ |
| [02:27:07] |
* |
vandenoever has joined #trac |
| [02:27:12] |
<dreamingk> |
Hi, I have write a plugin for trac . There are some sql statment for initialise. It is ok in sqlite. But postgresql is not ok. When i do trac-admin upgrade ,there is a error :Command failed: Can only backup sqlite databases. I don't know why. |
| [02:27:19] |
<vandenoever> |
can i upload images in the trac wiki? |
| [02:31:02] |
* |
MasterC has joined #trac |
| [02:34:20] |
<cmlenz> |
dreamingk: use the "-b" option |
| [02:34:30] |
<cmlenz> |
(or --no-backup) |
| [02:34:47] |
<dreamingk> |
Ok. Let me have a try. Thank you . |
| [02:42:03] |
<dreamingk> |
I have done like you. It is "upgrade done". But when i visit trac, i still got a errer page: need to upgrade . |
| [02:51:02] |
* |
Tuzz has quit IRC |
| [02:53:15] |
* |
jrydberg has joined #trac |
| [02:57:21] |
* |
tenshiKur0 has quit IRC |
| [03:00:15] |
* |
tenshiKur0 has joined #trac |
| [03:02:56] |
* |
tenshiKur0 has quit IRC |
| [03:57:33] |
* |
maxb has joined #trac |
| [04:12:40] |
* |
sven_oostenbrink has quit IRC |
| [04:16:14] |
* |
Guy- has joined #trac |
| [04:16:19] |
<Guy-> |
hi |
| [04:16:58] |
<Guy-> |
I'm confused about the /chrome location, and how trac handles requests to it; is there specific documentation I could read on this? |
| [04:17:19] |
* |
dreamingk has left #trac |
| [04:37:02] |
* |
sunew has joined #trac |
| [04:47:33] |
* |
maxb has quit IRC |
| [05:01:42] |
* |
_idostyle has joined #trac |
| [05:09:07] |
* |
agile has quit IRC |
| [05:11:35] |
<Guy-> |
I don't understand how I'm supposed to set up apache so that both the static files that came with trac and the ones installed by projects/plugins work correctly |
| [05:11:54] |
<Guy-> |
how is the /chrome location supposed to work? |
| [05:12:12] |
<Guy-> |
if I sethandler none, I get the static content from /usr/share/trac/htdocs, which is fine |
| [05:12:33] |
<Guy-> |
but obviously trac is then not able to map /chrome/someplugin to the appropriate static directory |
| [05:12:40] |
<Guy-> |
I don't get it |
| [05:12:45] |
<Guy-> |
any hints? |
| [05:14:33] |
<Guy-> |
if I don't do the sethandler none stuff, chrome/site/somefile.png works (it's a 404 with sethandler none), but the static content supplied with trac doesn't (I get the trac main page instead of the mini icon) |
| [05:17:24] |
* |
tuxipuxi has quit IRC |
| [05:18:08] |
* |
idostyle has quit IRC |
| [05:18:13] |
* |
_idostyle is now known as idostyle |
| [05:24:33] |
* |
chjunior has joined #trac |
| [05:25:42] |
<cmlenz> |
Guy-: you should be mapping sub-directories of /chrome, not /chrome itself |
| [05:26:04] |
<cmlenz> |
because each subdirectory will be in a different directory |
| [05:31:15] |
* |
maxb has joined #trac |
| [05:31:26] |
<Guy-> |
cmlenz: but projects and plugins can come with their own 'htdocs' directory - does this mean I have to modify the apache config each time I add a plugin? |
| [05:31:55] |
<cmlenz> |
if you don't trac serves the static files of those plugins |
| [05:32:02] |
<Guy-> |
cmlenz: I thought trac would sort this out internally, tell apache in which directory to look for the static file based on what comes after /chrome/ |
| [05:32:11] |
<cmlenz> |
"SetHandler none" *only* on /chrome/common/ for example |
| [05:32:34] |
<cmlenz> |
it does sort it out internally but not if you tell it not to ;-) |
| [05:32:52] |
<Guy-> |
that's exactly what confuses me :) |
| [05:32:53] |
<cmlenz> |
but of course having apache serve the files is more efficient |
| [05:32:55] |
<cmlenz> |
but more work for you |
| [05:33:07] |
<Guy-> |
so, assuming I want trac to handle it |
| [05:33:24] |
<Guy-> |
do I need to do sethandler none on any directories/locations? |
| [05:35:29] |
<Guy-> |
from what you said, I assume not |
| [05:35:54] |
<Guy-> |
but, without sethandler none, the static content that comes in /usr/share/trac/htdocs is not served |
| [05:35:57] |
<Guy-> |
what's wrong? |
| [05:40:09] |
* |
agile has joined #trac |
| [05:44:00] |
<Guy-> |
also, how does htdocs_location enter the picture? |
| [05:47:25] |
<Guy-> |
OK, I think I get what htdocs_location does; this is what I should set to /whatever/chrome/common? |
| [05:51:27] |
* |
klando has joined #trac |
| [06:11:11] |
<cmlenz> |
you should probably just delete htdocs_location from the config |
| [06:11:36] |
<cmlenz> |
what it does it let you relocate the htdocs so that Trac uses an entirely different URL for referencing the builtin static files |
| [06:12:09] |
<cmlenz> |
i.e. remove "SetHandler none" *and* remove the "htdocs_location" option |
| [06:16:10] |
<Guy-> |
I now set htdocs_location to /root/of/my/trac/chrome/common and SetHandler none on that location |
| [06:16:13] |
<Guy-> |
and it appears to work |
| [06:16:28] |
<Guy-> |
but thanks anyway |
| [06:17:46] |
* |
WhiteLynx|Firest has joined #trac |
| [06:24:58] |
* |
coderanger_ has joined #trac |
| [06:25:11] |
* |
tgcondor has joined #trac |
| [06:25:21] |
<tgcondor> |
hello |
| [06:29:11] |
<tgcondor> |
what's the status of adding date/time support to the trac query language? in particular, is it already in the svn? |
| [06:29:42] |
* |
klasstek has joined #trac |
| [06:34:09] |
* |
sunew has quit IRC |
| [06:40:31] |
* |
_Lakritz_ has joined #trac |
| [06:44:28] |
* |
cerrayo has joined #trac |
| [06:45:25] |
<cmlenz> |
tgcondor: nope, not yet |
| [06:45:31] |
<cmlenz> |
contributions welcome :-) |
| [06:46:05] |
<tgcondor> |
cmlenz: it is a very important feature in order to use trac as a 'project management system' |
| [06:46:42] |
<tgcondor> |
cmlenz: are there copyright policies with regards to contributions? |
| [06:55:18] |
* |
bwmcadams has joined #trac |
| [07:07:48] |
* |
sunew has joined #trac |
| [07:09:12] |
<cmlenz> |
nothing formal |
| [07:09:31] |
* |
bougyman has joined #trac |
| [07:09:54] |
<bougyman> |
problem with .8, after upgrading libsvn, can't browse or view timeline |
| [07:10:02] |
<bougyman> |
nor can I find any error output as to why |
| [07:10:09] |
<bougyman> |
running as a cgi under lighttpd. |
| [07:10:15] |
<bougyman> |
any way to get better debug? |
| [07:12:56] |
<alot_not_a_word> |
bougyman does libsvn bindings match your python version? |
| [07:13:05] |
<alot_not_a_word> |
bougyman trac.ini has debug and logfile settings |
| [07:13:52] |
<bougyman> |
looking at that now. |
| [07:13:55] |
<bougyman> |
trac.ini, yes! |
| [07:14:00] |
<bougyman> |
that's what I couldn't find last night |
| [07:14:02] |
<bougyman> |
looking for it now |
| [07:14:09] |
<bougyman> |
no _idea_ where debian puts it. |
| [07:14:23] |
<bougyman> |
oh, nowhere. |
| [07:14:25] |
<bougyman> |
it doesn't install one. |
| [07:14:34] |
<bougyman> |
where would trac look for it by default? |
| [07:14:39] |
<bougyman> |
/etc/trac.ini ? |
| [07:16:26] |
<bougyman> |
thank you! |
| [07:16:28] |
<bougyman> |
fixed. |
| [07:16:50] |
<bougyman> |
i just needed some dang error output, i was getting a blank screen, no html on it, and nothing in the logs. |
| [07:18:47] |
<alot_not_a_word> |
bougyman did you even run trac-admin to create your project? |
| [07:18:54] |
<bougyman> |
alot_not_a_word: yessir. |
| [07:19:10] |
<bougyman> |
i had trac installed from source cause debian's woody had a really old version |
| [07:19:13] |
<alot_not_a_word> |
you found the trac.ini for your project in there, right... ? |
| [07:19:33] |
<bougyman> |
when sarge's version caught up to what I was using, i installed it. |
| [07:19:58] |
<bougyman> |
alot_not_a_word: yes. last night i had looked with dpkg -L trac, which shows all of the files debian installs for trac. |
| [07:20:07] |
<bougyman> |
trac.ini isn't one of em, so I didn't see it. |
| [07:20:21] |
<bougyman> |
< dumbass didn't think to look in his /storage/tracs/ directory for it. |
| [07:21:54] |
<alot_not_a_word> |
or /usr/share/docs/TRAC/README* |
| [07:23:05] |
<bougyman> |
i looked in the readme and faq |
| [07:23:06] |
<bougyman> |
bougyman@darktwo:/usr/share/doc/trac$ grep trac.ini * |
| [07:23:07] |
<bougyman> |
bougyman@darktwo:/usr/share/doc/trac$ |
| [07:24:18] |
<bougyman> |
the README just points to the web, the README.Debian tells how to install and initialize a trac project, and serve it (with apache only) |
| [07:27:13] |
* |
tuxipuxi has joined #trac |
| [07:27:38] |
<alot_not_a_word> |
bad debian, someone should tell the maintainer |
| [07:28:24] |
* |
chjunior has quit IRC |
| [07:34:04] |
* |
boorad has quit IRC |
| [07:39:53] |
<bwmcadams> |
no more debian! use a real os! lke ... windows! :) |
| [07:43:40] |
* |
chjunior has joined #trac |
| [07:58:15] |
* |
BrianHV has joined #trac |
| [07:58:50] |
<BrianHV> |
is there a script out there somewhere that will convert a wiki to an offline-viewable set of pages? |
| [08:05:17] |
* |
cerrayo has quit IRC |
| [08:14:35] |
<Guy-> |
BrianHV: how about wget -m -k? |
| [08:15:08] |
* |
phoenixz has joined #trac |
| [08:15:09] |
* |
sven_oostenbrink has joined #trac |
| [08:16:15] |
* |
boorad has joined #trac |
| [08:18:15] |
<BrianHV> |
Guy-: yeah, I did something along those lines a while back |
| [08:18:26] |
<BrianHV> |
I thought I saw a real script since then, but I can't find it |
| [08:20:39] |
* |
danbeck has joined #trac |
| [08:20:44] |
<alot_not_a_word> |
mmmkay |
| [08:20:47] |
<alot_not_a_word> |
mk :) |
| [08:21:21] |
* |
phoenixz has left #trac |
| [08:21:46] |
* |
pekuja has joined #trac |
| [08:24:21] |
* |
sven_oostenbrink has quit IRC |
| [08:30:43] |
* |
vandenoever has quit IRC |
| [08:42:53] |
* |
otaku42 is now known as otaku42_away |
| [08:44:34] |
* |
sven_oostenbrink has joined #trac |
| [08:46:03] |
* |
sven_oostenbrink has left #trac |
| [08:52:38] |
* |
Sonderblade has quit IRC |
| [08:53:29] |
* |
_idostyle has joined #trac |
| [09:09:51] |
* |
idostyle has quit IRC |
| [09:09:58] |
* |
_idostyle is now known as idostyle |
| [09:11:52] |
<pacopablo> |
morning all |
| [09:18:58] |
* |
azerttyu has joined #trac |
| [09:19:51] |
<azerttyu> |
hi |
| [09:20:23] |
<azerttyu> |
i have a little question, the adminstrator update trac to 0.10 to use spam filter |
| [09:20:59] |
<azerttyu> |
the question is is it possible to use the rules for filter, to delete automactily the spam posts ? |
| [09:21:49] |
<pacopablo> |
I haven't used the spamfitler yet but I think the whole idea is to prevent the spam posts from ever being posted |
| [09:21:57] |
<pacopablo> |
I don't think it does cleanup. |
| [09:22:45] |
<azerttyu> |
ok, and is it possible to delete manually post ? |
| [09:23:12] |
<coderanger_> |
Get TicketDelete from trac-hacks |
| [09:24:01] |
<azerttyu> |
ok i look |
| [09:38:19] |
* |
Blackhex has joined #trac |
| [09:38:36] |
* |
klando has quit IRC |
| [09:50:04] |
<Guy-> |
BrianHV: in what way would a "real script" be better than wget -m -k? |
| [09:50:36] |
<pacopablo> |
more complex :) |
| [09:51:35] |
* |
|Lakritz| has joined #trac |
| [09:54:41] |
* |
ncognito has joined #trac |
| [10:04:58] |
* |
_Lakritz_ has quit IRC |
| [10:05:48] |
<BrianHV> |
Guy-: less load on the web server, no login banners, no edit buttons. basically nicer for end users to browse. |
| [10:05:55] |
<BrianHV> |
none of those are showstoppers though. |
| [10:07:27] |
* |
kowey has joined #trac |
| [10:08:34] |
<kowey> |
hello, i am having trouble with the accountmanager plugin on trac 0.10 |
| [10:08:36] |
<kowey> |
http://trac.loria.fr/projects/hylores |
| [10:08:57] |
<kowey> |
notice that the link for register is not presented... is there a simple fix? |
| [10:09:27] |
* |
|Lakritz| has quit IRC |
| [10:16:05] |
* |
azerttyu has quit IRC |
| [10:18:38] |
<kowey> |
hmm... restarting apache seems to have fixed it |
| [10:20:32] |
* |
chjunior has quit IRC |
| [10:24:25] |
* |
kowey has quit IRC |
| [10:25:51] |
* |
hlb has quit IRC |
| [10:25:56] |
* |
hlb has joined #trac |
| [10:31:24] |
* |
ryepup has quit IRC |
| [10:33:22] |
* |
tuxipuxi has quit IRC |
| [10:35:14] |
* |
hlb has quit IRC |
| [10:35:22] |
* |
hlb has joined #trac |
| [10:43:21] |
* |
RobinPeixoto has joined #trac |
| [10:43:42] |
<RobinPeixoto> |
hi. i'm has a problem with Apache 2 + Trac. |
| [10:44:33] |
<RobinPeixoto> |
When I logout my user and i try login with other user, the system loging in the last user without passwd |
| [10:45:02] |
<RobinPeixoto> |
sorry my bad english |
| [10:46:12] |
<maxb> |
This is a known problem and there isn't really much you can do about it using only Trac. What you can do, is use one of the alternate login method plugins that can be found on trac-hacks.org |
| [10:46:33] |
<RobinPeixoto> |
I use this solution. http://projects.edgewall.com/trac/wiki/TracOnDebianSarge |
| [10:47:05] |
<RobinPeixoto> |
maxb: I try use too |
| [10:51:50] |
* |
peppelorum has joined #trac |
| [10:58:20] |
* |
Tetraboy has joined #trac |
| [11:00:15] |
* |
ringard has quit IRC |
| [11:00:57] |
<Tetraboy> |
coderanger, how's TracForge coming? |
| [11:01:56] |
* |
milk-it has joined #trac |
| [11:07:53] |
* |
xris has joined #trac |
| [11:08:24] |
<xris> |
are there any plans to add a "need info" status to tickets? |
| [11:09:25] |
* |
dirakx has joined #trac |
| [11:15:41] |
* |
RobinPeixoto has left #trac |
| [11:19:23] |
<coderanger_> |
Tetraboy: The object sync stuff is going |
| [11:19:29] |
<coderanger_> |
I have tickets and changesets done |
| [11:19:33] |
* |
xjjk has joined #trac |
| [11:19:52] |
* |
cmlenz has quit IRC |
| [11:19:56] |
<Tetraboy> |
Nice. |
| [11:20:32] |
<coderanger_> |
There was a hardware mishap with the other person working on it, so other things are still in progress |
| [11:20:41] |
<coderanger_> |
But feel free to test out the sync stuff |
| [11:26:04] |
* |
dirakx has joined #trac |
| [11:40:00] |
<alect> |
hey |
| [11:40:17] |
<pacopablo> |
hey there |
| [11:47:24] |
<coderanger_> |
alo |
| [12:10:00] |
* |
cmlenz has joined #trac |
| [12:21:43] |
* |
bwmcadams has quit IRC |
| [12:25:30] |
* |
mef has joined #trac |
| [12:28:26] |
* |
mef has quit IRC |
| [13:01:31] |
* |
peppelorum has quit IRC |
| [13:02:14] |
* |
_idostyle has joined #trac |
| [13:03:40] |
* |
xjjk has quit IRC |
| [13:05:10] |
* |
dirakx has left #trac |
| [13:08:23] |
* |
xjjk has joined #trac |
| [13:12:54] |
* |
MasterC has quit IRC |
| [13:15:10] |
* |
inviso has joined #trac |
| [13:15:23] |
* |
xris has left #trac |
| [13:15:49] |
<inviso> |
Is there a way to have the trac repo on machine A and the svn repo on machine B? |
| [13:17:26] |
* |
idostyle has quit IRC |
| [13:17:27] |
* |
_idostyle is now known as idostyle |
| [13:19:20] |
* |
coderanger_ has quit IRC |
| [13:33:30] |
* |
Blackhex has quit IRC |
| [13:42:14] |
* |
cmlenz has quit IRC |
| [13:47:05] |
* |
WhiteLynx|Firest has quit IRC |
| [14:01:03] |
<alot_not_a_word> |
nope |
| [14:06:19] |
* |
jcw9 has quit IRC |
| [14:06:41] |
* |
Megz has quit IRC |
| [14:06:44] |
* |
Megzlna has joined #trac |
| [14:07:25] |
* |
agile has quit IRC |
| [14:15:07] |
* |
cmlenz has joined #trac |
| [14:19:26] |
* |
tolsen has joined #trac |
| [14:27:44] |
<inviso> |
Hmm, if I can't do that, does it make sense to run Trac without an svn repo to serve as just a ticket tracking system? |
| [14:29:59] |
* |
tolsen has quit IRC |
| [14:30:46] |
<danderson> |
it is possible, yes |
| [14:30:59] |
<danderson> |
although you obviously loose integration with anything related to source code |
| [14:31:17] |
<danderson> |
eg. pointing to changesets, browsing the source... |
| [14:31:29] |
<danderson> |
you might be able to close tickets from a post-commit script, not sure. |
| [14:38:46] |
<inviso> |
yeah, losing the integration would be a bummer, but I guess that's just life. What do I specify when it asks me for the svn repo path? |
| [14:39:53] |
<danderson> |
not sure :-) |
| [14:40:07] |
<danderson> |
give it anything. You'll have to disable the version control components afterwards in the configuration |
| [14:40:19] |
<inviso> |
alright, thanks |
| [14:40:30] |
<danderson> |
and this is where I'm hoping someone shows up who knows which components need disabling :-) |
| [14:40:59] |
* |
cmlenz has quit IRC |
| [14:52:40] |
* |
sunew has quit IRC |
| [15:00:08] |
<pacopablo> |
inviso: if you use trunk, then you jus tleave the entry blank |
| [15:00:37] |
<pacopablo> |
and you'll have issues creating a 0.9.6 env without some svn repos |
| [15:02:29] |
<inviso> |
Any chance remote repos are in the future? |
| [15:03:52] |
<pacopablo> |
distant future |
| [15:04:09] |
* |
milk-it has quit IRC |
| [15:04:09] |
<pacopablo> |
biggest issue is that the subversion python bindings don't support remote repos |
| [15:04:31] |
<danderson> |
they might, by the end of the summer |
| [15:04:35] |
<danderson> |
(powered by SoC) |
| [15:04:42] |
<pacopablo> |
oooh, yummy ;) |
| [15:05:10] |
<pacopablo> |
once the python bindings support them, I don't think it will be long before trac will support them. |
| [15:05:26] |
<danderson> |
there are issues though |
| [15:05:32] |
* |
agile has joined #trac |
| [15:05:46] |
<danderson> |
it is *much* easier/faster to get data out of a repository opened locally, through the svn_fs or svn_repos APIs |
| [15:06:15] |
<danderson> |
with a remote repository, you need to go through the svn_ra or svn_client APIs, which are less flexible in some ways |
| [15:06:32] |
<danderson> |
but I'm sure the Trac folks will figure it out :-) |
| [15:12:20] |
<maxb> |
Or, we could just fix the RA APIs to be sane :-) |
| [15:20:32] |
* |
danbeck has quit IRC |
| [15:27:27] |
* |
agile has quit IRC |
| [15:29:41] |
* |
elarson has left #trac |
| [15:38:08] |
<inviso> |
Honestly, it's a tradeoff I'd be happy with. The time required to fetch the same data via http is not *that bad when you consider in the context of requiring a user click in the first place. And, I'm not ready to throw Trac on an AIX box yet ;) |
| [15:38:22] |
<inviso> |
Thanks for the info and help guys, I'm out for now |
| [15:38:34] |
* |
inviso has left #trac |
| [15:46:55] |
* |
klasstek has quit IRC |
| [15:57:17] |
* |
xjjk has quit IRC |
| [15:58:19] |
* |
agile has joined #trac |
| [16:24:00] |
* |
bougyman has left #trac |
| [16:28:00] |
* |
agile has quit IRC |
| [16:39:08] |
<coderanger> |
Once 1.4 comes out the remote repo thing should be less of an issue |
| [16:39:24] |
<coderanger> |
They are including a repo mirroring system as a new RA |
| [16:41:47] |
* |
_idostyle has joined #trac |
| [16:49:02] |
* |
agile has joined #trac |
| [16:51:34] |
* |
xjjk has joined #trac |
| [16:57:31] |
* |
idostyle has quit IRC |
| [16:57:34] |
* |
_idostyle is now known as idostyle |
| [17:09:55] |
* |
hdiogenes has joined #trac |
| [17:34:20] |
* |
Semhirage_ has joined #trac |
| [17:34:20] |
* |
Semhirage has quit IRC |
| [17:45:53] |
* |
jstuart has quit IRC |
| [17:49:41] |
* |
jstuart has joined #trac |
| [17:59:20] |
* |
jstuart has quit IRC |
| [18:01:41] |
* |
jstuart has joined #trac |
| [18:05:03] |
* |
Semhirage_ has quit IRC |
| [18:05:11] |
* |
Semhirage has joined #trac |
| [18:19:12] |
* |
Semhirage has quit IRC |
| [18:19:21] |
* |
Semhirage has joined #trac |
| [18:23:39] |
* |
Semhirage has left #trac |
| [18:24:18] |
* |
Semhirage has joined #trac |
| [18:26:36] |
* |
Semhirage_ has joined #trac |
| [18:26:36] |
* |
Semhirage has quit IRC |
| [19:55:47] |
* |
jrydberg has quit IRC |
| [19:57:25] |
* |
converter has joined #trac |
| [20:02:14] |
* |
hdiogenes has left #trac |
| [20:38:03] |
* |
xjjk has quit IRC |
| [20:48:22] |
* |
matt_good has joined #trac |
| [20:50:18] |
* |
_idostyle has joined #trac |
| [20:56:16] |
* |
matt_good has quit IRC |
| [21:06:41] |
* |
idostyle has quit IRC |
| [21:06:48] |
* |
_idostyle is now known as idostyle |
| [21:18:05] |
* |
Thanatermesis__ has joined #trac |
| [21:18:41] |
* |
Thanatermesis__ is now known as Thanatermesis |
| [21:19:14] |
<Thanatermesis> |
is posible to "comment" test (wikiformating text) |
| [21:19:34] |
<Thanatermesis> |
is posible to "comment" text (wikiformating text) for not are show in the page and not need to delete it ? |
| [22:03:29] |
* |
jstuart_ has joined #trac |
| [22:11:16] |
* |
Megzlna is now known as Megz |
| [22:18:07] |
* |
jstuart has quit IRC |
| [22:43:54] |
<pacopablo> |
Thanatermesis: have no idea what you're trying to ask. |
| [22:44:01] |
* |
converter has quit IRC |
| [22:50:46] |
* |
raidman|Away is now known as raidman|Work |
| [22:57:33] |
* |
s0undt3c1 has joined #trac |
| [23:12:53] |
* |
s0undt3ch has quit IRC |
| [23:13:04] |
* |
s0undt3c1 is now known as s0undt3ch |
| [23:25:29] |
* |
concept10 has joined #trac |
| [23:56:36] |
<raidman|Work> |
Ho to assign a ticket to all users? |
| [23:57:17] |
<pacopablo> |
can't? |
| [23:57:34] |
<pacopablo> |
you could create a group user, and then assign it to that |