RE: [Trac] Arbitrarily fine-grained priorization ?

2013-12-11 Thread Cooke, Mark
> -Original Message-
> From: trac-users@googlegroups.com On Behalf Of mickeyf
> Sent: 11 December 2013 15:52
> 
> Our legacy application used Seapine Software's Test Track. 
> There are plenty of things about it not to like, but it did 
> allow us to use a real number field for prioritizing. Thus we 
> could have 1.001, 1.017, 3.8923... Whatever. This meant we 
> could reassign and sort any number of issues to have 
> individual, rather than simply categorized priorities.
> 
> Trac uses enums, and it's not practical to have more than a 
> handful of them since they must be individually entered. 
> 
> Is there a way to create a numeric field that could be used 
> with arbitrary values for prioritizing?

You can add your own fields to tickets:-

http://trac.edgewall.org/wiki/TracTicketsCustomFields

...however it does not AFAIK directly support real numbers, you would probably 
have to use a plain text field and rewrite all of your SQL report queries 
appropriately (using JOINs as mentioned in the help).  See #3080 for a similar 
issue with integer priorities:-

http://trac.edgewall.org/ticket/3080

You could then remove all of the values from the built-in priority (using the 
admin interface) to hide that field.

> Thanks for any ideas / suggestions.
> 
> Mickeyf

~ Mark C

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Trac] Re: Few questions regarding software version

2013-12-11 Thread Matthew Caron

On 12/11/2013 12:15 PM, Ala Maison wrote:

In what files do you have this ?!!?!?!?! plz


Since you didn't quote context, we don't know of whom you are asking 
this question.


If you meant me, it's in my /etc/apache2/sites-available/trac file, 
which is a config file I wrote in apache, for trac, so its location is 
irrelevant.


--
Matthew Caron, Software Build Engineer
Red Lion Controls | www.redlion.net
+1 (518) 877-5173 x138 office

--
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Trac] Re: Few questions regarding software version

2013-12-11 Thread Ala Maison
In what files do you have this ?!!?!?!?! plz

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


[Trac] Arbitrarily fine-grained priorization ?

2013-12-11 Thread mickeyf
Our legacy application used Seapine Software's Test Track. There are plenty 
of things about it not to like, but it did allow us to use a real number 
field for prioritizing. Thus we could have 1.001, 1.017, 3.8923... 
Whatever. This meant we could reassign and sort any number of issues to 
have individual, rather than simply categorized priorities.

Trac uses enums, and it's not practical to have more than a handful of them 
since they must be individually entered. 

Is there a way to create a numeric field that could be used with arbitrary 
values for prioritizing?

Thanks for any ideas / suggestions.

Mickeyf

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Trac] Re: Few questions regarding software version

2013-12-11 Thread Matthew Caron

On 12/11/2013 06:23 AM, Ala Maison wrote:

What file is that because i looked in all apache configuration files
and i couldn't find the Scriptalias or WSGIScriptAlias they are
talking about :/


It would be in the apache config for that site. Here's mine for 
reference (with appropriate parts redacted, naturally):


# Redirect plain requests to the https://

ServerName trac.fqdn
ServerAlias trac
RewriteEngine on
RewriteRule . https://trac.fqdn/%{REQUEST_URI}


# Rewritelocks can't be in a VirtualHost section
RewriteLock /var/run/apache2.rewritelock

# trac serves trac

ServerName trac.fqdn
ServerAlias trac

# Serve (relatively) static chrome files directly from the
# filesystem. Use trac-admin's deploy command to create the
# static-htdocs directory:
Alias /trac/chrome /opt/trac/eng/static-htdocs/htdocs

Order allow,deny
Allow from all


WSGIDaemonProcess trac user=www-data group=www-data threads=50
WSGIScriptAlias /trac /opt/trac/eng/static-htdocs/cgi-bin/trac.wsgi
RewriteEngine on

# RewriteLog /var/log/apache2/rewrite.log
# RewriteLogLevel 9

# SSL stuff
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/server_cert.pem
SSLCertificateKeyFile /etc/apache2/ssl/private.key
SSLCertificateChainFile /etc/apache2/ssl/cert_chain.pem

# It would be far better if mod_fcgid respected the setting of LANG
# in the actual environment, but I don't know how to do that easily.
# It seems mod_fcgid includes _only_ the environment values
# specifically set below, so we do need to set LANG here explicitly.
# See ticket #1352
DefaultInitEnv LANG "en_US.UTF-8"
DefaultInitEnv TRAC_ENV "/opt/trac/eng"

# Redirect bare requests to /trac
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$ https://trac.fqdn/trac%{REQUEST_URI}

# force fully qualified domain name
RewriteCond %{HTTP_HOST}!^trac\.fqdn
RewriteCond %{HTTP_HOST}!^$
RewriteRule ^/(.*)  https://trac.fqdn/$1


WSGIProcessGroup trac
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all


# It's very likely that this section does nothing since mod_fcgid
# appears to only pass variables set via DefaultInitEnv, but why fix
# something that isn't broken?

  SetEnv TRAC_ENV "/opt/trac/eng"


# This is likely redundant with the http redirect, above, but
# let's be explicit about not sending credentials in plain text,
# shall we?

  SSLRequireSSL




--
Matthew Caron, Software Build Engineer
Red Lion Controls | www.redlion.net
+1 (518) 877-5173 x138 office

--
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [Trac] Re: Few questions regarding software version

2013-12-11 Thread Ala Maison
My mistake, 8000 is the default port used by trac when ran in a stand alone 
server (tracd) if you follow the installation guide on the trac website.
So my bad, it's normal that i wasn't able to access it.

Back in the installation guide http://trac.edgewall.org/wiki/TracInstall 
when they say :

"Add the following snippet to Apache configuration *before* the ScriptAliasor 
WSGIScriptAlias (which map all the other requests to the Trac application), 
changing paths to match your deployment: 

Alias /trac/chrome/common /path/to/trac/htdocs/common
Alias /trac/chrome/site /path/to/trac/htdocs/site


  Order allow,deny
  Allow from all
"

What file is that because i looked in all apache configuration files and i 
couldn't find the Scriptalias or WSGIScriptAlias they are talking about :/

thanks again

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.