1 2 Previous Next 28 Replies Latest reply on Jun 25, 2004 5:51 PM by jae77 Go to original post
      • 15. Re: nukes 1.1RC1 available
        jae77

        p..s if you do encounter that the sql is wrong to create the unique constrants, just edit the appropriate .properties file in "build/etc", run "build clean deploy" to retest, and post the correct statement back in the forum so i can check in the correct statement.

        • 16. Re: nukes 1.1RC1 available
          jae77

          i've just committed the changes to add management of user submissions for the downloads module.

          this was the only thing holding up the final release of 1.1, so it'd be great if some ppl could help give some final qa testing to everything.

          the tag (Nukes_1_1_0_RC1) has been promoted as a new zip has been dropped at http://www.scriptkitty.org/nukes-1.1.0-mysql-RC1.zip

          • 17. Re: nukes 1.1RC1 available

            there's a bug I need to fix regarding changing password as well

            • 18. Re: nukes 1.1RC1 available
              jae77

              what's your schedule looking like for this? i could probably get it taken care of in the next few days so we can get 1.1 out the door if you are occupied w/ other things.

              • 19. Re: nukes 1.1RC1 available

                go ahead, the bug description is listed on sourceforge and assigned to me.

                • 20. Re: nukes 1.1RC1 available
                  chamcha

                  expected release date for 1.1?

                  Marco

                  • 21. Re: nukes 1.1RC1 available
                    jae77

                    soon. :)

                    as far as i am aware, the only major outstanding issue to get 1.1 out the door is the bug reguarding changing the password. i am going work on getting this resolved over the weekend.

                    once that's complete, i believe we are good to go. i would appriciate it if you could check out the release candidate and give it a once over to see if there was anything that was missed.

                    • 22. Re: nukes 1.1RC1 available

                      let's do an RC2 before the 1.1

                      • 23. Re: nukes 1.1RC1 available
                        jae77

                        ok - i've just been promoting the RC1 tag as things have been fixed and wasn't going to push a final 1.1 out w/o another round of RC testing.

                        once i've gotten the user password bug resolved, i'll create an RC2 tag for ppl to bang against.

                        • 24. Re: nukes 1.1RC1 available

                          I just pulled the lastest RC1 tagged code. When deploying the download module, The following exception is thrown. I'm using linux/postgresql.

                          ----------------------------------------------
                          16:23:49,665 INFO [TopicEJB] Executing SQL: CREATE UNIQUE name ON nukes_news_topics (name);
                          16:23:49,670 WARN [TopicEJB] Issuing sql CREATE UNIQUE name ON nukes_news_topics (name); failed: java.sql.SQLException: ERROR: parser: parse error at or near
                          "name" at character 15

                          • 25. Re: nukes 1.1RC1 available

                            Another issue I just found when I clicked on news:
                            ----------------------------------------
                            16:52:01,059 ERROR [news]
                            javax.ejb.FinderException: Unknown query: public abstract java.util.Collection org.jboss.nukes.addons.modules.news.ejb.TopicEJBLocalHome.findByState(java.lang.Integer) throws javax.ejb.FinderException

                            • 26. Re: nukes 1.1RC1 available
                              jae77

                              what database are you using? i know i have incorrect sql statemens for postgres and probably oracle right now.

                              if you know the correct way to alter a postgres table and add a unique constraint, pls let me know.

                              was the table created? the other error is most likely an extension of the unique constraint problem.

                              • 27. Re: nukes 1.1RC1 available

                                I'm using postgres on linux. Yes, the table was created and the downloads module actually works. To add a unique constraint on postgres, you would do something like:
                                alter table <table_name> add constraint <constraint_name> unique (<column1 [, ] );

                                • 28. Re: nukes 1.1RC1 available
                                  jae77

                                  ok - thx - i'll make the necessary updates.

                                  in the mean time, you can adjust the postgres.properties in build/etc to correct the sql syntax for creating the constraint.

                                  let me know if the table is created and everything works after that.

                                  1 2 Previous Next