irclog2html for #flyspray on 20060104

09:20.30*** join/#flyspray tda (n=tda@c222143.adsl.hansenet.de)
09:24.15tdagood morning everybody
09:49.36*** join/#flyspray kNIGits_ (i=tc@202-161-16-228.dyn.iinet.net.au)
09:49.36*** mode/#flyspray [+o kNIGits_] by ChanServ
09:50.11*** join/#flyspray kNIGits_ (i=tc@202-161-16-228.dyn.iinet.net.au)
09:50.12*** mode/#flyspray [+o kNIGits_] by ChanServ
09:50.46*** topic/#flyspray by kNIGits_ -> Flyspray bug tracking system | http://flyspray.rocks.cc | BTS upgraded to latest development code, try it!
10:15.00*** join/#flyspray floele (n=Miranda@p508CB8FC.dip0.t-ipconnect.de)
10:15.00*** mode/#flyspray [+o floele] by ChanServ
10:24.17kNIGits_g'day mate
10:24.23floeleHi
10:24.34kNIGits_I'm at work, night shift
10:24.48kNIGits_I was about to take a look at your latest patch (view own tasks perm)
10:25.45floeleok. I noticed that the permission-checks are not always very efficient
10:25.53kNIGits_more information?
10:26.31floelewell, you call GetAssignees even if it is not needed
10:27.46floele&& ($this->perms['manage_project'] || in_array($this->id, $assignees));
10:27.58kNIGits_which perm is that?
10:28.11floelejust an example, the last one
10:28.28floeleif $this->perms['manage_project'] is true, the second condition is not checked at all
10:28.46floelebut you already called the GetAssignees function
10:29.04kNIGits_hmm, did I do that?  it doesn't make sense that a user can mark their opened tasks private and public
10:29.35floeletasks assigned to him
10:29.47kNIGits_errr,
10:30.12kNIGits_I'm even dumber than usual when I'm tired :-)
10:30.22floele:D
10:30.31floelebut you get the point I make?
10:31.08kNIGits_I see what you're saying
10:31.25kNIGits_you want to only call GetAssignees() if the PM check is false
10:32.34floeleonly if it is necessary in generaö
10:33.09floeleyou could achive that by not creating $assignees at all
10:35.41kNIGits_and how could we then check it?  give me an example?
10:36.02floele&& ($this->perms['manage_project'] || in_array($this->id, $fs->GetAssignees($task['task_id'])));
10:37.13kNIGits_that could work
10:37.24kNIGits_now I see what you meant
10:37.34floelegood :)
10:37.50floeleI can take care of that if you like
10:37.59kNIGits_less permission checks = less sql queries = more efficient = better
10:38.18kNIGits_please do
10:38.30floelein can_create_group
10:38.33kNIGits_I am logged into my server over dialup, so editing is a little painful
10:38.38floelewhatfor is && !Get::val('project'))?
10:39.01kNIGits_I have no idea.  weird
10:39.18kNIGits_I certainly didn't put it there
10:39.51floeleI'll remove it and see what happens ;)
10:39.54kNIGits_if only MadCoder was around
10:39.58kNIGits_heh, go for it!
10:41.26kNIGits_your history query is very impressive, btw
10:41.36floelethanks :)
10:42.03floeleit is still far from perfect though
10:42.53floeleit seems to work without Get::val too
10:43.29floeleif someone can manage a project I see no reason why he shouldn't be able to create a group
10:43.41kNIGits_the whole history code is a mess.  one day I might get to fixing it
10:43.58floelehm...
10:44.41floele($this->perms['manage_project'] && $proj->id != 0)
10:44.46floelethis is probably what is meant
10:44.49kNIGits_that Get::val('project') checks for the project var on the URL... how could that be relevant for creating a group?
10:45.00kNIGits_yeah, that's more likely
10:45.42kNIGits_to stop PMs creating a global group
10:49.21floeleit is not necessary though
10:49.25floeleI just checked
10:49.44floelewhen the project is 0, the project manager does not get [manage_project] => 1
10:49.49floelebut [manage_project] => 0
10:52.23floelebtw, I noticed something in your BTS
10:52.59floelebefore I think I was able to edit comments, and now I am not able to do that. was I never able to do it?
10:55.31kNIGits_I messed with permissions during the upgrade.  I'll double check them now
10:56.56kNIGits_hm, we have to do something about that error
10:57.08kNIGits_Warning: ob_start(): output handler 'ob_gzhandler' cannot be used after 'URL-Rewriter' in /home/.jackaroo/knigits/flyspray.rocks.cc/bts/index.php on line 90
10:57.14floeleindeed ;)
10:58.21floeleI got another idea bout the task statuses
10:59.01kNIGits_do tell
10:59.35kNIGits_hrmf, and logging in takes me to the error page
10:59.37floele*if* the user/admin deletes a status like "unconfirmed", "new" or "assigned" he can never add them again since the index value matters. I suggest to disable the possibility to delete them
11:00.15floelebut those are quite important for flyspray
11:00.48kNIGits_yes
11:01.38kNIGits_your edit comment permission is restored
11:01.47floeleok :)
11:02.53*** join/#flyspray _kNIGits (i=tc@202-161-16-228.dyn.iinet.net.au)
11:02.53*** mode/#flyspray [+o _kNIGits] by ChanServ
11:03.48_kNIGitserrr, wtf just happened...
11:03.53floeleyou can have a look at the change in my BTS now if you like
11:04.01_kNIGitsdamn, got disconnected
11:04.10floelelol, 3 kNIGits :)
11:04.22_kNIGitsmake that two
11:05.38floelein theory you could still dele the statuses, but not using the flyspray GUI so it is OK I think :)
11:07.00kNIGatworkyou can delete anything using the commandline or phpmyadmin
11:08.13kNIGatworkinteresting how that gzip error doesn't happen on your server
11:09.03floeledoes it happen on other servers than yours?
11:09.40kNIGatworkI can't see that I know of any others that run 0.9.9-devel
11:10.03floelewhat about mac? didn't he want to run it?
11:10.18kNIGatworkyes, but I think his is private
11:10.31floelebut he can tell us ;)
11:12.17kNIGatworkyep, when america wakes up
11:18.04kNIGatworkah, it's a good feeling to search google and see how many people are using Flyspray
11:20.06floelemine is among them too :)
11:21.07floelehm, interesting that turtoiseSVN uses it
11:21.08kNIGatworkyep, you didn't know?
11:21.08floeleno
11:21.08kNIGatworkand dokuwiki :-)
11:21.19kNIGatworkand jpgraph, and archlinux
11:21.54kNIGatworkhttp://www.deltascripts.com/bugs/
11:23.02floeleis this something special?
11:24.02kNIGatworkI just liked the page wrapper
11:24.45floeleyep, it's nice. and it future it will probably be easier to achieve that :)
11:26.05kNIGatworkyeah, now that we have templates
11:28.42floelehm, I just noticed a problem when looking at the SVN bug tracker. if the logo is not displayed the links top right are still not very useable...
11:30.40floelemaybe we should replace  "Open a new Task anonymously" with a button in the menu?
11:37.01kNIGatworkhell no
11:37.22kNIGatworkwe've removed the "show logo" option, and we have templates
11:37.38kNIGatworkif someone wants to modify the templates to remove the logo, then they can also fix the link :-)
11:38.24floeleoooookay ;)
11:40.21kNIGatworkthat's how I see it, anyway
11:41.11kNIGatworkI'm not really working, you know.  I'm at my workplace, but I'm watching a movie :-D
11:41.23floelelol
11:41.39kNIGatworkand talking to you on my laptop, dialed up
11:43.49floeleI noticed that you are talking to me ;)
11:58.58kNIGatworknoticed that I"m not talking much now?  :-)
12:38.57kNIGatworkbut neither are you, so I guess that's ok
12:39.09floeleit is ;)
12:51.24kNIGatworkso what are you doing?  surely not school
13:11.43*** join/#flyspray floele41 (n=Miranda@p508C9084.dip0.t-ipconnect.de)
13:11.44*** mode/#flyspray [+o floele41] by ChanServ
13:24.30kNIGatworkwhat are you doing, floele41?  surely not school
13:24.48floele41no, I have holidays :)
13:25.03floele41so I am learning for my abitur
13:25.15floele41Biotechnology right now
13:27.17kNIGatworkhttp://bugs.ayende.com/index.php?tasks=all&project=3 a different colour scheme
13:27.55floele41nice :)
13:28.28kNIGatworkit says 'modified by...', but I can't see any changes except the theme
13:29.44floele41maybe he had to do some changes within the flyspray code
13:30.47kNIGatworkmaybe
13:31.51floele41this also has an interesting theme: http://www.agentur-simon.de/flyspray/
13:34.30kNIGatworkyes, but I can't see much of it
13:34.53kNIGatworkand clicking 'show' results in a nasty error
13:35.08kNIGatworksilly Markdown
13:35.18kNIGatworkdidn't I remove that for 0.9.8?
13:35.56floele41I don't think so
13:36.09floele41pierre did for 0.9.9
13:37.24kNIGatworkI'm pretty sure that I did.  there were many complaints about it in 0.9.7
13:37.42floele41but you didn't do for the project message
13:38.57kNIGatworkoh
13:39.06kNIGatworkI removed it for task details and comments
13:41.12kNIGatworkit's good to see that most installations I find are 0.9.8, but I'm unhappy to find a few 0.9.7, and even a couple of 0.9.6
13:41.39floele41like mine :)
13:41.47floele41why are you unhappy?
13:41.57kNIGatworkbecause they have nasty bugs, including security
13:42.11kNIGatworkpeople should upgrade.  it's free
13:42.20floele41is that *your* problem? ;)
13:42.48floele41btw, you could add a feature that checks if Flyspray is up-to-date
13:44.33floele41or I could do it if you like such a feature ;)
13:47.43kNIGatworkI have often thought of adding it myself
13:47.49floele41but?
13:47.54kNIGatworkhowever, most people don't like software that phone's home
13:48.18kNIGatworkand what about those installations that aren't connected to the internet?
13:48.35floele41??
13:48.49floele41those installations shouldn't suffer security problems
13:49.01kNIGatworkpossibly
13:49.09floele41most likely ;)
13:49.41floele41if you can disable the update check, is it a problem then?
13:49.55kNIGatworkI have thought of adding a 'check for updates' feature that only appears on an Admin's login
13:50.40floele41yes, something like that
13:51.47floele41if(isLongTimeAgo($fs->prefs['last_check'])) {
13:51.47floele41<PROTECTED>
13:51.47floele41}
13:52.11kNIGatworkI would probably make it include_once() a file on the Flyspray webserver.  that file would contain each version on a newline
13:52.25kNIGatworkthe most recent version at the top.  if the version they're using isn't at the top, then prompt them
13:52.28floele41no, not include
13:52.37kNIGatworkno?
13:52.51floele41imagine someone hacks your server
13:52.58floele41and outs PHP code in that file
13:53.00kNIGatworkgah
13:53.20floele41he could hack all FS installations at once then
13:53.27kNIGatworknasty.  how then?
13:53.43floele41file_get_contents('http://etc.'); for example
13:54.03kNIGatworkoh, and if my server was offline or slow, then every flyspray install would hang
13:54.32floele41we can also use fsockopen and a short timeout
13:54.48floele41and of course it is not checked on *every* login
13:55.28kNIGatworkyep
13:55.40floele41and you could also consider putting that file on another server
13:55.47floele41which has a better internet connection
13:57.14floele41why should the file contain all versions btw? isn't one enough?
13:57.52kNIGatworkbetter internet connection?  better than the Flyspray site that's hosted in the USA?
13:58.08floele41isn't that your home server?
13:58.23kNIGatworkthe Flyspray website is not hosted on my dsl line :-)
13:58.31floele41ah, ok
13:58.44kNIGatworksometimes it seems that slow, but it isn't
13:58.51kNIGatworkonly throw.rocks.cc is my dsl
13:59.08kNIGatworkI pay for hosting for flyspray.rocks.cc
14:01.46floele41so do you want me to implement it? :)
14:01.56kNIGatworkspeaking of paying... did you contact those people about them paying you to do Flyspray changes?
14:02.10floele41I don't even know who hey are
14:02.21kNIGatworkoh.  I thought that macnewbold told you
14:04.10floele41he told me that there are people who are interested in etc,
14:04.51kNIGatworkok.  he actually told me privately first, and I said that you'd do a better, faster job
14:05.18kNIGatworkso as much as I could use the $$$, I told him to tell you
14:06.57floele41hm, he didn't ell me anything than that what he announced here in the chat room
14:08.39kNIGatworknor me
14:09.30kNIGatworkyes, you can implement the update check if you like.  I will see how I like it, and how other people like it (or not)
14:09.43floele41ok
14:10.39floele41could you add a file to your server containing the latest version of FS? In this case 1.0 of course
14:10.48floele41just for testing
14:11.05kNIGatworkif you're making changes, can you swap the 'assigned to' and 'opened by' in the search box please?
14:11.15kNIGatworksure, I'll do that now
14:11.19floele41why?
14:11.38kNIGatworkbecause it makes more sense to me.  a task is 'opened' first,then 'assigned
14:11.47kNIGatworkyou don't agree?
14:12.04floele41of course I do :)
14:12.35kNIGatworkyou don't have to agree with me.  it's not like I'm going to fire you from a high-paying job :-)
14:13.05floele41I only wanted to know if there are more reasons to do that ;)
14:13.45floele41and I already disagreed on other topics with you :-p
14:14.06kNIGatworkhttp://flyspray.rocks.cc/version.txt
14:14.22floele41good work  ;)
14:16.10kNIGatworkI assume that you're going to compare the current version with the one the user is running in the $version variable?
14:16.16tdaWhat we do is using a number like 100 for 1.00 so you can use > and < operators
14:16.32tdaBut then no alpha is possible.
14:16.44kNIGatworkand what if I make another Update like I did for 0.9.8 ?
14:16.50floele41yes
14:17.13floele41version_compare() maybe?
14:17.20floele41or 0.9.8.1
14:17.33floele41"update1" is a stupid name
14:17.43floele41(to my eye)
14:19.12kNIGatworkand 0.9.8.1 looks like a fresh release
14:19.32kNIGatworkI didn't want it to look like a new release, when it only had a few changed files
14:20.50floele41it still is better. "update1" sounds like a last-minute-patch
14:21.24floele41in any case it has a negative connotation
14:22.01kNIGatworkversion_compare() looks good to me
14:22.05floele41and you don't have to always ask "did you apply update1"?
14:22.19kNIGatworkwe will have to try and use a standard naming convention now
14:22.33floele41every update gets its own version and there is no confusion :)
14:22.57kNIGatworkI hate releases
14:23.14kNIGatworkespecially when I didn't write the installer, and it doesn't operate how I want it to
14:23.19floele41I guess after 1.0 we could use 1.1, 1.2 1.3 for major releases and 1.0.1 1.0.2 for (important) bugfixes
14:23.35floele41indeed, releases can be a pain
14:23.43floele41all the testing and packaging you have to do...
14:24.04tdaWe use even and odd numbers like linux does.
14:24.21kNIGatworkg'day tda
14:24.34tdaHello kNIGits
14:25.07kNIGatworkI don't like the linux versioning system much
14:25.09tdasorry, and of course hello floele
14:25.13floele41probably we will end up with a version like 1.16.x then
14:25.25tdayep
14:25.27floele41and this is always a little confusing
14:25.29kNIGatworkI also don't like that
14:25.45floele41I have to eat, will be back in a few minutes
14:25.53kNIGatworkI really want to go 0.9.9 then 1.0
14:25.54tdaGuten Appetit
14:27.47tdakNIGatwork, do you have a jabber address too?
14:28.12kNIGatworkyes
14:28.26tdathank you.
14:28.35tda:-)
14:28.48kNIGatworkI mostly use Jabber to keep in contact with my friends in the other states I've lived in
14:29.23tdaok, I see. Is the OpenPGP plugin ok? I mean does it work as it should?
14:29.29tdasorry, I mean PSI
14:29.46kNIGatworkI've successfully used GnuPG with Psi on Linux
14:30.19tdaI am using it but have no idea if msgs are en/decrypted or if it just tells so.
14:30.52kNIGatworkif you have the other person's public key, and they have yours.... click the 'encrypt' button and go for it
14:32.07kNIGatworkif you want to confirm that it really is encrypted, open the xml console window and see what's actually sent and received
14:33.15floele41back, and danke :)
14:34.12tdaThanks, now I feel much better having seen the gpg encryption
14:41.04kNIGatworknp
14:59.32floele41kNIGits, does your server always have the same IP?
15:02.31floele41kNIGatwork rather
15:03.15kNIGatworkdo you mean the Flyspray website?
15:03.20floele41yes
15:05.28floele41I guess it doesn't matter anymore :)
15:06.21floele41have a look at my dev version. is the error-message div too "eye-catching"?
15:06.42kNIGatworkI don't know about the IP address, but the domain name never changes
15:06.50floele41haha
15:08.13kNIGatworkI particularly like all the notices and warnings
15:08.21floele41?
15:08.34floele41which are?
15:09.21kNIGatworkNotice: Undefined index: project_is_active in /www/htdocs/v111912/flyspray/includes/class.user.php on line 143
15:09.27kNIGatworkWarning: Cannot modify header information - headers already sent by (output started at /www/htdocs/v111912/flyspray/includes/class.user.php:143) in /www/htdocs/v111912/flyspray/index.php on line 79
15:09.35kNIGatworkand a few more warnings like that one
15:09.47floele41I don#t get them
15:10.47kNIGatworkhttp://gosdaturacatala-zucht.de/flyspray/index.php?project=0&tasks=all&do=index&area=status&show=Show
15:11.08floele41ah
15:12.35floele41fixed
15:13.10floele41so, what about the message?
15:13.25kNIGatworkyes, it's a bit obvious
15:13.42floele41too obviuos?
15:14.52floele41so it is?
15:15.15kNIGatworkyes, it's a bit much
15:16.21floele41now better?
15:17.53kNIGatworkyes
15:18.03floele41ok
15:20.47kNIGatworkperhaps it could be overlaid in the title image?
15:21.08floele41and if it doesn't exist?
15:21.33floele41you can't expect a user to fix the whole flyspray if he removes the header image ;)
15:22.50kNIGatworkyeah, good point
15:24.14kNIGatworkleave it where it is.  now, I'll change version.txt and see what happens
15:27.35kNIGatworknow, see what happens
15:27.51floele41hm....
15:28.07floele41probably the (devel) causes problems
15:28.36kNIGatworkindeed
15:29.30floele41we could call it dev instead of devel
15:30.51floele41is that OK?
15:31.34kNIGatwork0.9.9dev?
15:31.45floele410.9.9 dev
15:32.06floele410.9.9dev also works
15:32.26kNIGatworkchange it in your functions.inc.php and see if it works
15:32.41floele41it does
15:33.00floele41hm, in fact it does not
15:33.11floele410.9.9dev should be lower than 0.9.9
15:35.15kNIGatworkyes, but perhaps the function doesn't recognise it
15:36.20floele41The function first replaces _, - and + with a dot . in the version strings and also inserts dots . before and after any non number so that for example '4.3.2RC1' becomes '4.3.2.RC.1'. Then it splits the results like if you were using explode('.', $ver). Then it compares the parts starting from left to right. If a part contains special version strings these are handled in the following order: dev <
15:36.20floele41<PROTECTED>
15:42.20floele41hm, now it works
15:42.34floele41you have to call the final version "0.9.9 pl" then
15:43.21kNIGatworkhmm, I don't like that much
15:43.55floele41otherwise we could write our own version compare function
15:45.25floele41or even easier
15:45.45floele41we add ' pl' to the version
15:47.41floele41since the version in your file always ia a release and not a beta version
15:49.02floele41anyway, I have to fo now. cya
16:55.37macnewboldkNIGits / kNIGatwork: I'm back now... I see you and flo were discussing my BTS
16:56.08macnewboldit's publicly accessible, but doesn't let anyone anonymous do anything, nor anyone sign up without my approval.
16:58.21macnewboldand I'm still waiting to hear back on the people who are potentially interested in paying for some flyspray work
16:58.35macnewboldso I'll need to talk to flo about it sometime soon
17:01.11kNIGatworksure
17:03.20macnewboldand seriously, kNIGits - I know what you have done for flyspray, and if you want it, it's yours, just let me know how much you'd ask (in USD$ to your paypal acct, for example)
17:03.53kNIGatworkwhat do you mean?  me customising Flyspray for your contacts?
17:04.18macnewboldyes
17:04.25macnewboldyou say you wouldn't be that good, but you would
17:04.28*** join/#flyspray floele (n=Miranda@p508C9084.dip0.t-ipconnect.de)
17:04.28*** mode/#flyspray [+o floele] by ChanServ
17:04.34macnewboldmorning, floele
17:04.55macnewboldguten morgen
17:05.07macnewboldI was just telling knigits as I was reading the backlog:
17:05.13macnewboldI'm back now... I see you and flo were discussing my BTS
17:05.16macnewboldit's publicly accessible, but doesn't let anyone anonymous do anything, nor anyone sign up without my approval.
17:05.20macnewboldand I'm still waiting to hear back on the people who are potentially interested in paying for some flyspray work
17:05.28floeleGuten Abend eher ;)
17:05.48floeleok
17:05.54kNIGatworkperhaps we could do it together
17:05.57macnewboldso if you're interested, floele, let me know how much you'd ask, and how you'd want them to pay you (via paypal, perhaps?) and I'll give them your name too
17:05.59macnewboldsure
17:06.13macnewboldthat actually wouldn't be a bad idea
17:06.35macnewboldespecially if all the improvements they want could be part of the main flyspray version, rather than patches
17:06.54kNIGatworkI'd need a full list of what they want, and how soon they want it
17:07.10floelewell, I prefer if I simply get a list of tasks and then I'll see if I want to work on anything which is on the list. *after* that we can talk about payment ;)
17:07.20kNIGatworkyeah, that too
17:07.26floelewill be back in a moment, have to eat
17:07.27macnewboldI could coordinate with them and keep track of all the stuff they want done, and collect the money from them (they're already a client of ours), and split it up and send it to you two who are working on it
17:07.36macnewboldyes, very true
17:07.49kNIGatworkall our changes would be under the LGPL
17:07.55kNIGatworkremember the last person that wanted to hire me
17:07.56macnewboldso far they mentioned reports and perhaps some fine-grained permissions
17:08.06macnewboldyes, they know about that already
17:08.10macnewboldthey're not trying to resell it or anything,
17:08.14macnewboldthey want to adopt it in house
17:08.24macnewboldbut there are some features they'd like in order to do so
17:09.09kNIGatworkthe reports area is very lacking, I agree
17:13.54floeletrue...probably we would have to rewrite the whole code before we can add any features ;)
17:14.55kNIGatworkpossibly
17:15.47floelewhat about the other person who wanted to hire you?
17:17.52floeleI am away again now...cu later
17:18.41kNIGatworkthe other person who wanted to pay me to do Flyspray enhancements wanted it under a different licence so that they could sell it
17:20.25kNIGatworkmacnewbold, remind me what other features they were interested in?
17:20.52kNIGatwork(oh, and what time is it in USA right now?)
17:44.50macnewboldright now where I am (Utah, same timezone as Denver Colorado) it is 10:44am on jan 4
17:44.57macnewboldI don't know what other features they had in mind
17:56.27kNIGatworkI'm sure that they'll tell us if they're serious
17:58.06macnewboldyeah
17:58.11macnewboldhe was mostly just asking
17:58.16macnewboldit was his first time seeing flyspray
17:58.22macnewboldI didn't take notes though on his questions
18:20.17*** join/#flyspray teranex (n=TeRanEX@d515284A5.access.telenet.be)
18:20.56kNIGatworknp mate
18:21.53kNIGatworkit's like this - if I can do what he's asking for, and I have time, I'm happy to take whatever he's paying.  if I can't, I defer to Florian who will undoubtably do a stellar job
18:35.51*** join/#flyspray macnewbold (n=mac@69.2.248.251)
18:35.51*** mode/#flyspray [+o macnewbold] by ChanServ
19:05.30*** part/#flyspray teranex (n=TeRanEX@d515284A5.access.telenet.be)
22:24.07*** join/#flyspray odoc (i=odoc@is.borntobooze.de)
22:55.45*** join/#flyspray kevinm (n=kvirc@adsl-69-209-19-30.dsl.emhril.ameritech.net)
22:56.12kevinmhello all, quick question
22:56.40kevinmI've been running 0.9.6 of Flyspray and want to upgrade to 0.9.8...do I have to upgrade to 0.9.7 first?
22:59.56*** join/#flyspray floele (n=Miranda@p508C9084.dip0.t-ipconnect.de)
22:59.56*** mode/#flyspray [+o floele] by ChanServ
23:01.47*** part/#flyspray odoc (i=odoc@is.borntobooze.de)
23:01.56*** join/#flyspray teranex (n=TeRanEX@d515284A5.access.telenet.be)
23:05.07macnewboldkevinm: yes, upgrade to 0.9.7, then to 0.9.8, then apply update1
23:06.09kevinmExcuse me if I'm being dumb, but I move out of the way the 0.9.6 directory, put the 0.9.7 stuff in, connect via the web and go thru the steps, then do the same for 0.9.7->0.9.8?
23:06.42macnewboldyou're fine - yes, I think that would work
23:07.10kevinmNo way to do this from the command line?  I need to recreate my flyspray.conf.php file every time?
23:07.39macnewboldI'm not sure what 0.9.7 does, but 0.9.8 will create the conf for you as part of the setup process
23:08.14kevinmok, I'll give it a whirl...seems fairly cumbersom (sp?).
23:08.14macnewboldyou can do it with a combination of web and command line stuff
23:08.33macnewbold0.9.6 is extremely old, and very few people still use it
23:08.43macnewbold0.9.7 is a year old, so 0.9.8 can upgrade from 0.9.7
23:08.47macnewboldbut not directly from 0.9.6
23:08.50macnewboldunfortunately
23:09.12macnewboldmost people who upgrade are upgrading from the immediately previous version
23:09.45kevinmcool, thanks for the help...I may be back with more questions (hope not but...)
23:09.48macnewboldthere have just been too many database changes to do an upgrade very easily, and I don't think we had a really good way to test an upgrade from 0.9.6 to 0.9.8 anyway
23:13.33kevinmSo it appears that, based on the 0.9.7 initial webpage, that I'm going to lose all of my data in my existing flyspray database.  This from the comment "Note that you must have already created the database that you wish to use for Flyspray, and it must NOT have a Flyspray structure already inside it.".  Is this the case?
23:19.00macnewboldI'm not sure
23:19.10macnewboldI've never installed 0.9.7 myself, kevinm
23:19.15macnewboldbackup your database
23:19.19macnewboldand try the upgrade, I guess
23:48.15*** join/#flyspray terane1 (n=TeRanEX@d515284A5.access.telenet.be)

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with blootbot logs, split per channel, etc.