nice-devel Mailing List for The Nice Programming Language
Brought to you by:
bonniot
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(49) |
Jul
(7) |
Aug
(9) |
Sep
(53) |
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
(1) |
Mar
(12) |
Apr
(1) |
May
(1) |
Jun
(3) |
Jul
(16) |
Aug
(61) |
Sep
(42) |
Oct
(14) |
Nov
(3) |
Dec
(9) |
2004 |
Jan
(51) |
Feb
(40) |
Mar
(40) |
Apr
(12) |
May
|
Jun
(24) |
Jul
(18) |
Aug
(10) |
Sep
(3) |
Oct
(1) |
Nov
(31) |
Dec
(34) |
2005 |
Jan
(20) |
Feb
(48) |
Mar
(15) |
Apr
(10) |
May
(6) |
Jun
(5) |
Jul
|
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
(2) |
Jun
(18) |
Jul
|
Aug
(2) |
Sep
|
Oct
(4) |
Nov
|
Dec
(2) |
2007 |
Jan
(5) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(36) |
Dec
(52) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2009-09-16 20:31:43
|
Bugs item #2860266, was opened at 2009-09-16 16:31 Message generated for change (Tracker Item Submitted) made by ronneesley You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=2860266&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Ronneesley Moura Teles (ronneesley) Assigned to: Nobody/Anonymous (nobody) Summary: Error compiler - DbC with Return of function null Initial Comment: Version of compiler ================================================== nicec --version Nice compiler version 0.9.13 (build 2008.05.06, 11:44:43 UTC) Compiled using JDK 1.4.2 Copyright (C) 2003 Daniel Bonniot Visit the Nice homepage: http://nice.sourceforge.net ================================================== The CODE ================================================== class Calculadora { ?int somar(int numero) ensures result != null && result > 0 : "O retorno deve ser positivo" { return numero + 1; } } void main(String[] args) { var calculadora = new Calculadora(); println(calculadora.somar(10)); println(calculadora.somar(-5)); } =========================================== The error message =========================================== An exception has occured in the compiler Please fill-in a bug report at the following webpage: http://sourceforge.net/tracker/?func=add&group_id=12788&atid=112788 Stack trace: Exception in thread "main" java.lang.Error: non-matching types to emitGotoIfCompare2 at gnu.bytecode.CodeAttr.emitGotoIfCompare2(CodeAttr.java:1304) at gnu.bytecode.CodeAttr.emitGotoIfGt(CodeAttr.java:1315) at nice.lang.inline.CompOp.compileJump(CompOp.java:106) at nice.lang.inline.ShortCircuitOp.compileJump(ShortCircuitOp.java:145) at nice.lang.inline.Assert.compile(Assert.java:61) at gnu.expr.ApplyExp.compile(ApplyExp.java:192) at gnu.expr.ApplyExp.compile(ApplyExp.java:111) at gnu.expr.Expression.compileNotePosition(Expression.java:82) at gnu.expr.Expression.compileWithPosition(Expression.java:69) at gnu.expr.CheckContract.compile(CheckContract.java:59) at gnu.expr.Expression.compileWithPosition(Expression.java:72) at gnu.expr.LambdaExp.compileBody(LambdaExp.java:1565) at gnu.expr.LambdaExp.compileAsMethod(LambdaExp.java:1536) at gnu.expr.LambdaExp.compileChildMethods(LambdaExp.java:1422) at gnu.expr.ClassExp.compileChildMethods(ClassExp.java:573) at gnu.expr.Compilation.compileAll(Compilation.java:1614) at gnu.expr.Compilation.generate(Compilation.java:1588) at gnu.expr.Compilation.compile(Compilation.java:1556) at gnu.expr.Package.compileToFiles(Package.java:100) at bossa.modules.Package.finishCompilation(Package.java:411) at bossa.modules.Package.link(Package.java:388) at mlsub.compilation.fun.lambda27(Unknown Source) at mlsub.compilation.fun.apply1(Unknown Source) at gnu.expr.ModuleMethod.apply1(ModuleMethod.java:89) at nice.lang.fun.foreach(collections.nice:141) at nice.lang.dispatch.foreach(Unknown Source) at mlsub.compilation.fun.compileComponent(make.nice:33) at mlsub.compilation.dispatch.compileComponent(Unknown Source) at mlsub.compilation.fun$make.lambda24(Unknown Source) at mlsub.compilation.fun$make.apply1(Unknown Source) at gnu.expr.ModuleMethod.apply1(ModuleMethod.java:89) at nice.lang.fun.foreach(collections.nice:141) at nice.lang.dispatch.foreach(Unknown Source) at mlsub.compilation.fun.make(make.nice:44) at mlsub.compilation.dispatch.make(Unknown Source) at nice.tools.compiler.fun.compile(interface.nice:40) at nice.tools.compiler.dispatch.compile(Unknown Source) at nice.tools.compiler.console.fun.compile(main.nice:170) at nice.tools.compiler.console.dispatch.compile(Unknown Source) at nice.tools.compiler.console.fun.main(main.nice:204) at nice.tools.compiler.console.dispatch.main(Unknown Source) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=2860266&group_id=12788 |
From: SourceForge.net <no...@so...> - 2008-04-09 16:40:27
|
Bugs item #1936767, was opened at 2008-04-07 16:28 Message generated for change (Comment added) made by rudi_s You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Rudi_S (rudi_s) Assigned to: Nobody/Anonymous (nobody) Summary: Compiling nice 0.9.13 fails on Mac OS X 10.4.11 Initial Comment: Hi, I'm trying to compile nice 0.9.13 on Mac OS X 10.4.11 but it fails with the following error: make complete rm -f src/nice/tools/compiler/{console.jar,dateBuild.nice,Manifest} rm -f nicepublish.jar regtest/*.jar rm -rf classes classes-inline share/java src/bossa/parser/{Parse*.java,Token*.java,*CharStream.java} rm -f bin/{nicedoc,niceunit} if [ -r src/bossa/syntax/dispatch.java -a ! -r src/bossa/syntax/dispatch.java.bootstrap ]; then \ mv src/bossa/syntax/dispatch.java src/bossa/syntax/dispatch.java.bootstrap; fi rm -f src/bossa/syntax/dispatch.java find . \( -name "*.class" -o -name "*.nicei" -o -name "*~" \) -exec rm {} \; mkdir -p classes classes-inline ln -sf nicec bin/nicedoc; ln -sf nicec bin/niceunit cd src/bossa/syntax && mv -f dispatch.java.bootstrap dispatch.java javac -classpath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes.old" -sourcepath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/src:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/stdlib" -O -g -d "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes" src/nice/tools/util/System.java Note: src/nice/tools/util/System.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. CLASSPATH=classes JAVA="java -Dnice.inlined=classes-inline" bin/nicec.bootstrap --exclude-runtime -d classes.old --sourcepath=stdlib.old:stdlib:src.old:src --classpath=classes -R nice.tools.repository Exception in thread "main" java.lang.UnsupportedClassVersionError: Bad version number in .class file at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at nice.lang.dispatch.printStackTraceWithSourceInfo(Unknown Source) at nice.tools.compiler.console.dispatch.main(Unknown Source) make[1]: *** [core-bootstrap] Error 1 make: *** [src/nice/tools/compiler/console.jar] Error 2 I'm using the following java version and compiler: java version "1.5.0_13" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-241) Java HotSpot(TM) Client VM (build 1.5.0_13-121, mixed mode, sharing) If you need more information just tell me. Thanks for your help, Simon ---------------------------------------------------------------------- >Comment By: Rudi_S (rudi_s) Date: 2008-04-09 18:40 Message: Logged In: YES user_id=1382820 Originator: YES Thanks, using the version from http://nice.sourceforge.net/nice-current.jar and replacing external/nice-bootstrap.jar worked fine and I could install nice on Mac OS X. But why is the distributed version of nice (in external/nice-bootstrap.jar) outdated and doesn't work to compile its own version? Can this be fixed (for the next release)? Thanks, Simon ---------------------------------------------------------------------- Comment By: Artem Gr Kozarezov (artemgr) Date: 2008-04-09 11:27 Message: Logged In: YES user_id=289741 Originator: NO Might be an old version of bootstrap nice compiler? Usually you have to download the latest version of the compiler. Try http://nice.sourceforge.net/nice-current.jar ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 |
From: SourceForge.net <no...@so...> - 2008-04-09 09:27:12
|
Bugs item #1936767, was opened at 2008-04-07 18:28 Message generated for change (Comment added) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Rudi_S (rudi_s) Assigned to: Nobody/Anonymous (nobody) Summary: Compiling nice 0.9.13 fails on Mac OS X 10.4.11 Initial Comment: Hi, I'm trying to compile nice 0.9.13 on Mac OS X 10.4.11 but it fails with the following error: make complete rm -f src/nice/tools/compiler/{console.jar,dateBuild.nice,Manifest} rm -f nicepublish.jar regtest/*.jar rm -rf classes classes-inline share/java src/bossa/parser/{Parse*.java,Token*.java,*CharStream.java} rm -f bin/{nicedoc,niceunit} if [ -r src/bossa/syntax/dispatch.java -a ! -r src/bossa/syntax/dispatch.java.bootstrap ]; then \ mv src/bossa/syntax/dispatch.java src/bossa/syntax/dispatch.java.bootstrap; fi rm -f src/bossa/syntax/dispatch.java find . \( -name "*.class" -o -name "*.nicei" -o -name "*~" \) -exec rm {} \; mkdir -p classes classes-inline ln -sf nicec bin/nicedoc; ln -sf nicec bin/niceunit cd src/bossa/syntax && mv -f dispatch.java.bootstrap dispatch.java javac -classpath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes.old" -sourcepath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/src:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/stdlib" -O -g -d "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes" src/nice/tools/util/System.java Note: src/nice/tools/util/System.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. CLASSPATH=classes JAVA="java -Dnice.inlined=classes-inline" bin/nicec.bootstrap --exclude-runtime -d classes.old --sourcepath=stdlib.old:stdlib:src.old:src --classpath=classes -R nice.tools.repository Exception in thread "main" java.lang.UnsupportedClassVersionError: Bad version number in .class file at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at nice.lang.dispatch.printStackTraceWithSourceInfo(Unknown Source) at nice.tools.compiler.console.dispatch.main(Unknown Source) make[1]: *** [core-bootstrap] Error 1 make: *** [src/nice/tools/compiler/console.jar] Error 2 I'm using the following java version and compiler: java version "1.5.0_13" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-241) Java HotSpot(TM) Client VM (build 1.5.0_13-121, mixed mode, sharing) If you need more information just tell me. Thanks for your help, Simon ---------------------------------------------------------------------- >Comment By: Artem Gr Kozarezov (artemgr) Date: 2008-04-09 13:27 Message: Logged In: YES user_id=289741 Originator: NO Might be an old version of bootstrap nice compiler? Usually you have to download the latest version of the compiler. Try http://nice.sourceforge.net/nice-current.jar ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 |
From: SourceForge.net <no...@so...> - 2008-04-07 14:33:44
|
Bugs item #1936767, was opened at 2008-04-07 16:28 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Rudi_S (rudi_s) Assigned to: Nobody/Anonymous (nobody) Summary: Compiling nice 0.9.13 fails on Mac OS X 10.4.11 Initial Comment: Hi, I'm trying to compile nice 0.9.13 on Mac OS X 10.4.11 but it fails with the following error: make complete rm -f src/nice/tools/compiler/{console.jar,dateBuild.nice,Manifest} rm -f nicepublish.jar regtest/*.jar rm -rf classes classes-inline share/java src/bossa/parser/{Parse*.java,Token*.java,*CharStream.java} rm -f bin/{nicedoc,niceunit} if [ -r src/bossa/syntax/dispatch.java -a ! -r src/bossa/syntax/dispatch.java.bootstrap ]; then \ mv src/bossa/syntax/dispatch.java src/bossa/syntax/dispatch.java.bootstrap; fi rm -f src/bossa/syntax/dispatch.java find . \( -name "*.class" -o -name "*.nicei" -o -name "*~" \) -exec rm {} \; mkdir -p classes classes-inline ln -sf nicec bin/nicedoc; ln -sf nicec bin/niceunit cd src/bossa/syntax && mv -f dispatch.java.bootstrap dispatch.java javac -classpath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes.old" -sourcepath "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/src:/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/stdlib" -O -g -d "/Users/simonruderich/Documents/unix/macports/trunk/dports/lang/nice/work/nice-0.9.13.orig/classes" src/nice/tools/util/System.java Note: src/nice/tools/util/System.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. CLASSPATH=classes JAVA="java -Dnice.inlined=classes-inline" bin/nicec.bootstrap --exclude-runtime -d classes.old --sourcepath=stdlib.old:stdlib:src.old:src --classpath=classes -R nice.tools.repository Exception in thread "main" java.lang.UnsupportedClassVersionError: Bad version number in .class file at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:620) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124) at java.net.URLClassLoader.defineClass(URLClassLoader.java:260) at java.net.URLClassLoader.access$100(URLClassLoader.java:56) at java.net.URLClassLoader$1.run(URLClassLoader.java:195) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268) at java.lang.ClassLoader.loadClass(ClassLoader.java:251) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) at nice.lang.dispatch.printStackTraceWithSourceInfo(Unknown Source) at nice.tools.compiler.console.dispatch.main(Unknown Source) make[1]: *** [core-bootstrap] Error 1 make: *** [src/nice/tools/compiler/console.jar] Error 2 I'm using the following java version and compiler: java version "1.5.0_13" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-241) Java HotSpot(TM) Client VM (build 1.5.0_13-121, mixed mode, sharing) If you need more information just tell me. Thanks for your help, Simon ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1936767&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-19 13:29:00
|
Bugs item #1840088, was opened at 2007-11-28 09:11 Message generated for change (Comment added) made by eao197 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1840088&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed Resolution: None Priority: 5 Private: No Submitted By: Yauheni Akhotnikau (eao197) Assigned to: Daniel Bonniot (bonniot) Summary: No .bat files in Nice-0.9.13-windows.zip Initial Comment: There aren't .bat files in Nice-0.9.13-windows.zip. So I had to get nicec.bat (and others) from 0.9.12 distributive. ---------------------------------------------------------------------- >Comment By: Yauheni Akhotnikau (eao197) Date: 2007-12-19 15:29 Message: Logged In: YES user_id=163552 Originator: YES I have tested last windows zip file. .bat files are here and nicec.bat and nicedoc.bat work. Thank you. ---------------------------------------------------------------------- Comment By: Daniel Bonniot (bonniot) Date: 2007-12-19 10:07 Message: Logged In: YES user_id=88952 Originator: NO Thanks for you report. I just fixed it. Could you please test the new windows zip and confirm that everything is working properly? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1840088&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-19 08:07:25
|
Bugs item #1840088, was opened at 2007-11-28 08:11 Message generated for change (Comment added) made by bonniot You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1840088&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Pending Resolution: None Priority: 5 Private: No Submitted By: Yauheni Akhotnikau (eao197) >Assigned to: Daniel Bonniot (bonniot) Summary: No .bat files in Nice-0.9.13-windows.zip Initial Comment: There aren't .bat files in Nice-0.9.13-windows.zip. So I had to get nicec.bat (and others) from 0.9.12 distributive. ---------------------------------------------------------------------- >Comment By: Daniel Bonniot (bonniot) Date: 2007-12-19 09:07 Message: Logged In: YES user_id=88952 Originator: NO Thanks for you report. I just fixed it. Could you please test the new windows zip and confirm that everything is working properly? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1840088&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:02:06
|
Bugs item #1841855, was opened at 2007-11-30 20:39 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1841855&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: xOJHlGWXE Initial Comment: <a href= http://bigdig.freehostia.com/puffy-nipple/index.html > puffy nipple </a> puffy nipple <br> puffy nipple <br> <a href= http://bigdig.freehostia.com/rachael-ray-suck/index.html > rachael ray suck </a> rachael ray suck <br> rachael ray suck <br> <a href= http://bigdig.freehostia.com/rate-my-camel-toe/index.html > rate my camel toe </a> rate my camel toe <br> rate my camel toe <br> <a href= http://bigdig.freehostia.com/redclouds/index.html > redclouds </a> redclouds <br> redclouds <br> <a href= http://bigdig.freehostia.com/revolting-cock/index.html > revolting cock </a> revolting cock <br> revolting cock <br> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1841855&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:02:03
|
Bugs item #1841908, was opened at 2007-11-30 22:18 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1841908&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: OmaCYiycpfIukppuS Initial Comment: <a href= http://borisani.newsit.es/shemale-surprise/index.html > shemale surprise </a> shemale surprise [URL=http://borisani.newsit.es/shemale-surprise/index.html] shemale surprise [/URL] <a href= http://borisani.newsit.es/shemale-yum/index.html > shemale yum </a> shemale yum [URL=http://borisani.newsit.es/shemale-yum/index.html] shemale yum [/URL] <a href= http://borisani.newsit.es/shih-poo/index.html > shih poo </a> shih poo [URL=http://borisani.newsit.es/shih-poo/index.html] shih poo [/URL] <a href= http://borisani.newsit.es/shut-up-stop-whining-and/index.html > shut up stop whining and </a> shut up stop whining and [URL=http://borisani.newsit.es/shut-up-stop-whining-and/index.html] shut up stop whining and [/URL] <a href= http://borisani.newsit.es/sleazydream/index.html > sleazydream </a> sleazydream [URL=http://borisani.newsit.es/sleazydream/index.html] sleazydream [/URL] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1841908&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:01:42
|
Bugs item #1842319, was opened at 2007-12-01 15:46 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842319&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: PeibNhvwTOC Initial Comment: , <a href="http://gmc-louis-st.needspeedcars.info/index.html">gmc louis st </a>[url="http://gmc-louis-st.needspeedcars.info/index.html"]gmc louis st [/url]http://gmc-louis-st.needspeedcars.info/index.html gmc louis st 444, <a href="http://city-gmc-lake-salt.needspeedcars.info/index.html">city gmc lake salt </a>[url="http://city-gmc-lake-salt.needspeedcars.info/index.html"]city gmc lake salt [/url]http://city-gmc-lake-salt.needspeedcars.info/index.html city gmc lake salt 69068, <a href="http://chicago-gmc.needspeedcars.info/index.html">chicago gmc </a>[url="http://chicago-gmc.needspeedcars.info/index.html"]chicago gmc [/url]http://chicago-gmc.needspeedcars.info/index.html chicago gmc 4134, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842319&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:01:37
|
Bugs item #1842495, was opened at 2007-12-02 03:01 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842495&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: AjJLSyPIx Initial Comment: , <a href="http://bergen-gmc.needspeedcars.info/index.html">bergen gmc </a>[url="http://bergen-gmc.needspeedcars.info/index.html"]bergen gmc [/url]http://bergen-gmc.needspeedcars.info/index.html bergen gmc acoykj, <a href="http://gmc-new-rochester.needspeedcars.info/index.html">gmc new rochester </a>[url="http://gmc-new-rochester.needspeedcars.info/index.html"]gmc new rochester [/url]http://gmc-new-rochester.needspeedcars.info/index.html gmc new rochester dtb, <a href="http://gmc-richmond.needspeedcars.info/index.html">gmc richmond </a>[url="http://gmc-richmond.needspeedcars.info/index.html"]gmc richmond [/url]http://gmc-richmond.needspeedcars.info/index.html gmc richmond :), ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842495&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:01:23
|
Bugs item #1842509, was opened at 2007-12-02 04:00 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842509&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: iAwSCDMSOZfcWvKCkpA Initial Comment: , <a href="http://Ford-Shock-Absorber.needspeedcars.info/index.html">Ford Shock Absorber </a>[url="http://Ford-Shock-Absorber.needspeedcars.info/index.html"]Ford Shock Absorber [/url]http://Ford-Shock-Absorber.needspeedcars.info/index.html Ford Shock Absorber 617, <a href="http://Daihatsu-Center-Caps.needspeedcars.info/index.html">Daihatsu Center Caps </a>[url="http://Daihatsu-Center-Caps.needspeedcars.info/index.html"]Daihatsu Center Caps [/url]http://Daihatsu-Center-Caps.needspeedcars.info/index.html Daihatsu Center Caps 050, <a href="http://Dodge-Headlights.needspeedcars.info/index.html">Dodge Headlights </a>[url="http://Dodge-Headlights.needspeedcars.info/index.html"]Dodge Headlights [/url]http://Dodge-Headlights.needspeedcars.info/index.html Dodge Headlights :[[[, <a href="http://Ford-Radiators.needspeedcars.info/index.html">Ford Radiators </a>[url="http://Ford-Radiators.needspeedcars.info/index.html"]Ford Radiators [/url]http://Ford-Radiators.needspeedcars.info/index.html Ford Radiators >:-PPP, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842509&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:01:06
|
Bugs item #1842584, was opened at 2007-12-02 12:35 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842584&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: ZeaCOWfXAIKjRx Initial Comment: <a href= http://borisani.newsit.es/sleazydreamcom/index.html > sleazydreamcom </a> [URL=http://borisani.newsit.es/sleazydreamcom/index.html] sleazydreamcom [/URL] [URL=http://borisani.newsit.es/swinger-tale/index.html] swinger tale [/URL] <a href= http://borisani.newsit.es/swinger-tale/index.html > swinger tale </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842584&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:00:47
|
Bugs item #1842622, was opened at 2007-12-02 15:01 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842622&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: KrRrYFFslcSMo Initial Comment: , <a href="http://Mercedes-Window.needspeedcars.info/index.html">Mercedes Window </a>[url="http://Mercedes-Window.needspeedcars.info/index.html"]Mercedes Window [/url]http://Mercedes-Window.needspeedcars.info/index.html Mercedes Window befygn, <a href="http://Saab-Hub-Caps.needspeedcars.info/index.html">Saab Hub Caps </a>[url="http://Saab-Hub-Caps.needspeedcars.info/index.html"]Saab Hub Caps [/url]http://Saab-Hub-Caps.needspeedcars.info/index.html Saab Hub Caps 035, <a href="http://Mercedes-Window.needspeedcars.info/index.html">Mercedes Window </a>[url="http://Mercedes-Window.needspeedcars.info/index.html"]Mercedes Window [/url]http://Mercedes-Window.needspeedcars.info/index.html Mercedes Window 9761, <a href="http://Saab-Grille.needspeedcars.info/index.html">Saab Grille </a>[url="http://Saab-Grille.needspeedcars.info/index.html"]Saab Grille [/url]http://Saab-Grille.needspeedcars.info/index.html Saab Grille =D, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1842622&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 14:00:00
|
Bugs item #1843605, was opened at 2007-12-03 22:58 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843605&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: vefLqEFyjDreAKbts Initial Comment: , <a href= http://Ford-Weatherstrip.needspeedcars.info/index.html >Ford Weatherstrip </a>[url="http://Ford-Weatherstrip.needspeedcars.info/index.html"]Ford Weatherstrip [/url]http://Ford-Weatherstrip.needspeedcars.info/index.html Ford Weatherstrip 348, <a href= http://Dodge-Shock-Absorber.needspeedcars.info/index.html >Dodge Shock Absorber </a>[url="http://Dodge-Shock-Absorber.needspeedcars.info/index.html"]Dodge Shock Absorber [/url]http://Dodge-Shock-Absorber.needspeedcars.info/index.html Dodge Shock Absorber joc, <a href= http://Dodge-Windshield.needspeedcars.info/index.html >Dodge Windshield </a>[url="http://Dodge-Windshield.needspeedcars.info/index.html"]Dodge Windshield [/url]http://Dodge-Windshield.needspeedcars.info/index.html Dodge Windshield >:-PPP, <a href= http://Dodge-Catalytic.needspeedcars.info/index.html >Dodge Catalytic </a>[url="http://Dodge-Catalytic.needspeedcars.info/index.html"]Dodge Catalytic [/url]http://Dodge-Catalytic.needspeedcars.info/index.html Dodge Catalytic 2611, <a href= http://Dodge-Hub-Caps.needspeedcars.info/index.html >Dodge Hub Caps </a>[url="http://Dodge-Hub-Caps.needspeedcars.info/index.html"]Dodge Hub Caps [/url]http://Dodge-Hub-Caps.needspeedcars.info/index.html Dodge Hub Caps 35907, <a href= http://Eagle-Corner-Lights.needspeedcars.info/index.html >Eagle Corner Lights </a>[url="http://Eagle-Corner-Lights.needspeedcars.info/index.html"]Eagle Corner Lights [/url]http://Eagle-Corner-Lights.needspeedcars.info/index.html Eagle Corner Lights 8-[[[, <a href= http://Eagle-Hub-Caps.needspeedcars.info/index.html >Eagle Hub Caps </a>[url="http://Eagle-Hub-Caps.needspeedcars.info/index.html"]Eagle Hub Caps [/url]http://Eagle-Hub-Caps.needspeedcars.info/index.html Eagle Hub Caps 07252, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843605&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:59:43
|
Bugs item #1843716, was opened at 2007-12-04 02:04 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843716&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: syRerPjI Initial Comment: , <a href= http://Plymouth-Lights.needspeedcars.info/index.html >Plymouth Lights </a>[url="http://Plymouth-Lights.needspeedcars.info/index.html"]Plymouth Lights [/url]http://Plymouth-Lights.needspeedcars.info/index.html Plymouth Lights 586650, <a href= http://Lexus.needspeedcars.info/index.html >Lexus </a>[url="http://Lexus.needspeedcars.info/index.html"]Lexus [/url]http://Lexus.needspeedcars.info/index.html Lexus zmodp, <a href= http://Mazda-Fog-Lights.needspeedcars.info/index.html >Mazda Fog Lights </a>[url="http://Mazda-Fog-Lights.needspeedcars.info/index.html"]Mazda Fog Lights [/url]http://Mazda-Fog-Lights.needspeedcars.info/index.html Mazda Fog Lights :OO, <a href= http://Mercedes-Window.needspeedcars.info/index.html >Mercedes Window </a>[url="http://Mercedes-Window.needspeedcars.info/index.html"]Mercedes Window [/url]http://Mercedes-Window.needspeedcars.info/index.html Mercedes Window 014482, <a href= http://Plymouth-Lights.needspeedcars.info/index.html >Plymouth Lights </a>[url="http://Plymouth-Lights.needspeedcars.info/index.html"]Plymouth Lights [/url]http://Plymouth-Lights.needspeedcars.info/index.html Plymouth Lights jddsmh, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843716&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:59:37
|
Bugs item #1843757, was opened at 2007-12-04 03:34 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843757&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: zmmEfiGEglFATOocnj Initial Comment: , <a href= http://blue-columbus-jacket.needspeedcars.info/index.html >blue columbus jacket </a>[url="http://blue-columbus-jacket.needspeedcars.info/index.html"]blue columbus jacket [/url]http://blue-columbus-jacket.needspeedcars.info/index.html blue columbus jacket 9569, <a href= http://bactrim-ds.needspeedcars.info/index.html >bactrim ds </a>[url="http://bactrim-ds.needspeedcars.info/index.html"]bactrim ds [/url]http://bactrim-ds.needspeedcars.info/index.html bactrim ds zkfyki, <a href= http://blue-cult-oyster.needspeedcars.info/index.html >blue cult oyster </a>[url="http://blue-cult-oyster.needspeedcars.info/index.html"]blue cult oyster [/url]http://blue-cult-oyster.needspeedcars.info/index.html blue cult oyster 2476, <a href= http://airway-blue-jet.needspeedcars.info/index.html >airway blue jet </a>[url="http://airway-blue-jet.needspeedcars.info/index.html"]airway blue jet [/url]http://airway-blue-jet.needspeedcars.info/index.html airway blue jet 62820, <a href= http://blue-parkway-ridge.needspeedcars.info/index.html >blue parkway ridge </a>[url="http://blue-parkway-ridge.needspeedcars.info/index.html"]blue parkway ridge [/url]http://blue-parkway-ridge.needspeedcars.info/index.html blue parkway ridge 63910, <a href= http://blue-mouse-tooth.needspeedcars.info/index.html >blue mouse tooth </a>[url="http://blue-mouse-tooth.needspeedcars.info/index.html"]blue mouse tooth [/url]http://blue-mouse-tooth.needspeedcars.info/index.html blue mouse tooth icc, <a href= http://angel-blue.needspeedcars.info/index.html >angel blue </a>[url="http://angel-blue.needspeedcars.info/index.html"]angel blue [/url]http://angel-blue.needspeedcars.info/index.html angel blue 0176, ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843757&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:59:22
|
Bugs item #1843876, was opened at 2007-12-04 10:51 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843876&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: ZLxoviWjGYGywFRKgIr Initial Comment: <a href= http://bactrim.needspeedcars.info/index.html > bactrim </a> <a href= http://bactrim-ds.needspeedcars.info/index.html > bactrim ds </a> <a href= http://bentyl.needspeedcars.info/index.html > benty </a> <a href= http://bextra.needspeedcars.info/index.html > bextra </a> <a href= http://black-cohosh.needspeedcars.info/index.html > black cohosh </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843876&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:59:06
|
Bugs item #1843914, was opened at 2007-12-04 11:59 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843914&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: qALZfGFLYPy Initial Comment: <a href = http://blue-blue-cross.needspeedcars.info/index.html > blue blue cross </a> <a href= http://blue-headset-tooth.needspeedcars.info/index.html > blue headset tooth </a> <a href= http://blue-cult-oyster.needspeedcars.info/index.html > blue cult oyster </a> <a herf= http://angel-blue.needspeedcars.info/index.html > angel blue </a> <a href= http://blue-california.needspeedcars.info/index.html > blue california </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843914&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:56:20
|
Bugs item #1843950, was opened at 2007-12-04 13:04 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843950&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: NWaDZJJkK Initial Comment: <a href= http://blue-motorola-tooth.needspeedcars.info/index.html > blue motorola tooth </a> <a href= http://berry-blue.needspeedcars.info/index.html > berry blue </a> <a href= http://blue-pitbull.needspeedcars.info/index.html > blue pitbull </a> <a href= http://airway-blue-jet.needspeedcars.info/index.html > airway blue jet </a> <a href= http://blue-corbin.needspeedcars.info/index.html > blue corbin </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1843950&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:55:44
|
Bugs item #1844003, was opened at 2007-12-04 14:11 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844003&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: rTDuTBMEpXA Initial Comment: <a href= http://blue-jays-toronto.needspeedcars.info/index.html > blue jays toronto </a> <a href= http://blue-ocean-strategy.needspeedcars.info/index.html > blue ocean strategy </a> <a href= http://blue-book-car-value.needspeedcars.info/index.html > blue book car value </a> <a href= http://blue-lagoon.needspeedcars.info/index.html > blue lagoon </a> <a href= http://blue-parkway-ridge.needspeedcars.info/index.html > blue parkway ridge </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844003&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:55:06
|
Bugs item #1844030, was opened at 2007-12-04 15:15 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844030&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: FqQeNVeSKu Initial Comment: <a href= http://blue-headset.needspeedcars.info/index.html > blue headset </a> <a href= http://bay-blue-getaway.needspeedcars.info/index.html > bay blue getaway </a> <a href= http://blue-car-kit-tooth.needspeedcars.info/index.html > blue car kit tooth </a> <a href= http://blue-heeler.needspeedcars.info/index.html > blue heeler </a> <a href= http://anthem-blue-blue.needspeedcars.info/index.html > anthem blue blue </a> <a href= http://blue-kelley.needspeedcars.info/index.html > blue kelley </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844030&group_id=12788 |
From: SourceForge.net <no...@so...> - 2007-12-07 13:54:57
|
Bugs item #1844098, was opened at 2007-12-04 17:25 Message generated for change (Settings changed) made by artemgr You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844098&group_id=12788 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Deleted >Resolution: Invalid Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: kfrUSjacHhLUuWp Initial Comment: <a href= http://2007-acadia-gmc.needspeedcars.info/index.html > 2007 acadia gmc </a> <a href= http://accessory-hummer.needspeedcars.info/index.html > accessory hummer </a> <a href= http://akron-gmc-ohio.needspeedcars.info/index.html > akron gmc ohio </a> <a href= http://albany-gmc-new-york.needspeedcars.info/index.html > albany gmc new york </a> <a href= http://allentown-gmc.needspeedcars.info/index.html > allentown gmc </a> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=112788&aid=1844098&group_id=12788 |