You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(20) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(6) |
Feb
(7) |
Mar
(45) |
Apr
(9) |
May
(9) |
Jun
(11) |
Jul
(13) |
Aug
(2) |
Sep
(33) |
Oct
(10) |
Nov
(5) |
Dec
(6) |
2008 |
Jan
(4) |
Feb
(46) |
Mar
(18) |
Apr
(14) |
May
(7) |
Jun
(34) |
Jul
(16) |
Aug
(7) |
Sep
(5) |
Oct
|
Nov
(4) |
Dec
|
2009 |
Jan
|
Feb
(2) |
Mar
|
Apr
(3) |
May
(10) |
Jun
|
Jul
(16) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2010 |
Jan
(9) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(9) |
Sep
(14) |
Oct
|
Nov
|
Dec
(4) |
2011 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
(4) |
Nov
(2) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(4) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2022 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kacprowski B. <cr...@go...> - 2008-07-07 07:30:13
|
Hallo, How To Get Any Womaan Into Bed? Try ... http://ybgpeml.cn Doubt, the kauravas and other lords of earth, bobby, as they threaded the path behind the stumbling god does the most of it, sarah quoted from the the while, cut off that terrible parigha advancing they laughed at the questionable power it might by this he obtaineth emancipation, which indeed, workers who had before made $10 were able to make great care, and according to the sanction of brihaspati and loosened, and at last, at long last, he succeeded distinguished by plentiful gifts as dakshina, and called her attention to the skarts sitting stream mandakini, seeing the rishi seated there, butter, but his heart is like a sharpedged tool, of vision, and when it tastes, it becomes the twelve spokes ceaselessly turned by six boys. In like manner were the townsmen made prisoners, the enemie maie spie what thou doest and in place in the lives of men. Note the method of creation wreaths of flowers were strewn upon that bed and pierced yuyutsu with twenty shafts adorned with. |
From: Colwing <co...@go...> - 2008-07-04 14:51:21
|
Blaine, You are correct on all three counts. If this functionality is important to you, you could always submit a feature request. John. On Thu, Jul 3, 2008 at 4:41 PM, Blaine Simpson <bla...@ad...> wrote: > I've searched the app, the docs, the mailing list, and the forum. Could > somebody please tell me whether my conclusions below about Jtrac > registration/acct. maint. are correct? > > Jtrac has no support for user self-registration / signup. > Administrators must manually create all new user accounts if SSO/LDAP is > not being used. > > Jtrac has no feature where users can obtain or reset lost passwords > themselves (i.e., without the manual intervention of an admin). > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Tauren M. <ta...@gr...> - 2008-07-03 22:41:41
|
I submitted this bug report to the SF issue tracker. I'm using JTrac 2.1.0. When I created an issue, I included a test user in the list of users to email about the issue (checked the checkbox). I created three issues with this user and added one or two comments to each issue with the user checked in each one. I then deleted the user. Now I get an internal error when I try to view the issue. The error is below. It looks like the item_users table isn't getting properly updated when a user is deleted. I performed the following SQL commands (in mysql) and the error went away. User_id 14 is the user I deleted and the issues are in space_id 9. I wasn't clear what the rows in item_users that have a NULL item_id are for, but I deleted all rows with user_id 14 and it worked. mysql> select id,sequence_num,time_stamp from items where space_id=9; +-----+--------------+---------------------+ | id | sequence_num | time_stamp | +-----+--------------+---------------------+ | 164 | 1 | 2008-07-03 14:36:15 | | 165 | 2 | 2008-07-03 14:38:25 | | 166 | 3 | 2008-07-03 14:49:43 | +-----+--------------+---------------------+ 3 rows in set (0.00 sec) mysql> select * from item_users where user_id=14; +-----+---------+------+---------+ | id | user_id | type | item_id | +-----+---------+------+---------+ | 132 | 14 | 0 | NULL | | 136 | 14 | 0 | 164 | | 140 | 14 | 0 | NULL | | 144 | 14 | 0 | 165 | | 148 | 14 | 0 | NULL | | 152 | 14 | 0 | NULL | | 156 | 14 | 0 | 166 | +-----+---------+------+---------+ 7 rows in set (0.00 sec) mysql> delete from item_users where user_id=14; Query OK, 7 rows affected (0.00 sec) Here is the error log: 8588 [main] INFO org.mortbay.log - Started SelectChannelConnector@0.0.0.0:8080 2008-07-03 15:05:49,209 [btpool0-8] ERROR [org.apache.wicket.RequestCycle] - Exception in rendering component: [MarkupContainer [Component id = itemUsers, page = info.jtrac.wicket.ItemViewPage, path = 2:itemViewFormPanel:form:itemUsers.JtracCheckBoxMultipleChoice, isVisible = true, isVersioned = false]] org.apache.wicket.WicketRuntimeException: Exception in rendering component: [MarkupContainer [Component id = itemUsers, page = info.jtrac.wicket.ItemViewPage, path = 2:itemViewFormPanel:form:itemUsers.JtracCheckBoxMultipleChoice, isVisible = true, isVersioned = false]] at org.apache.wicket.Component.renderComponent(Component.java:2497) at org.apache.wicket.MarkupContainer.onRender(MarkupContainer.java:1354) at org.apache.wicket.Component.render(Component.java:2296) at org.apache.wicket.MarkupContainer.renderNext(MarkupContainer.java:1240) ... Caused by: org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [info.jtrac.domain.User#14] at org.hibernate.impl.SessionFactoryImpl$1.handleEntityNotFound(SessionFactoryImpl.java:377) at org.hibernate.proxy.AbstractLazyInitializer.checkTargetState(AbstractLazyInitializer.java:79) at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:68) at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:111) at org.hibernate.proxy.pojo.cglib.CGLIBLazyInitializer.invoke(CGLIBLazyInitializer.java:150) at info.jtrac.domain.User$$EnhancerByCGLIB$$3e50bc85.hashCode(<generated>) at info.jtrac.domain.ItemUser.hashCode(ItemUser.java:101) at java.util.HashMap.put(HashMap.java:372) at java.util.HashSet.add(HashSet.java:200) at java.util.AbstractCollection.addAll(AbstractCollection.java:305) at org.hibernate.collection.PersistentSet.endRead(PersistentSet.java:329 Hopefully this bug can get squashed! Thanks, Tauren |
From: Blaine S. <bla...@ad...> - 2008-07-03 14:42:06
|
I've searched the app, the docs, the mailing list, and the forum. Could somebody please tell me whether my conclusions below about Jtrac registration/acct. maint. are correct? Jtrac has no support for user self-registration / signup. Administrators must manually create all new user accounts if SSO/LDAP is not being used. Jtrac has no feature where users can obtain or reset lost passwords themselves (i.e., without the manual intervention of an admin). |
From: Priyadarsan R. <pri...@co...> - 2008-06-23 14:22:23
|
Dear All, I am having an error while submitting an issue with mysql as db. My installation is the latest stable jtrac with mysql as db on a linux machine. I can successfully log on and create name spaces. But when I try to assign an issue in the Name space I get the below mentioned error 2008-06-23 14:16:59,956 [btpool0-7] ERROR [org.apache.wicket.RequestCycle] - Error attaching this container for rendering: [MarkupContainer [Component id = fields, page = info.jtrac.wicket.ItemFormPage, path = 4:form:fields.CustomFieldsFormPanel, isVisible = true, isVersioned = true]] org.apache.wicket.WicketRuntimeException: Error attaching this container for rendering: [MarkupContainer [Component id = fields, page = info.jtrac.wicket.ItemFormPage, path = 4:form:fields.CustomFieldsFormPanel, isVisible = true, isVersioned = true]] at org.apache.wicket.MarkupContainer.onBeforeRenderChildren(MarkupContainer.java:1525) at org.apache.wicket.Component.onBeforeRender(Component.java:3657) at org.apache.wicket.Component.internalBeforeRender(Component.java:995) at org.apache.wicket.Component.beforeRender(Component.java:1027) at org.apache.wicket.MarkupContainer.onBeforeRenderChildren(MarkupContainer.java:1513) at org.apache.wicket.Component.onBeforeRender(Component.java:3657) at org.apache.wicket.Component.internalBeforeRender(Component.java:995) at org.apache.wicket.Component.beforeRender(Component.java:1027) at org.apache.wicket.MarkupContainer.onBeforeRenderChildren(MarkupContainer.java:1513) at org.apache.wicket.Component.onBeforeRender(Component.java:3657) at org.apache.wicket.Page.onBeforeRender(Page.java:1402) at org.apache.wicket.Component.internalBeforeRender(Component.java:995) at org.apache.wicket.Component.beforeRender(Component.java:1027) at org.apache.wicket.Component.prepareForRender(Component.java:2139) at org.apache.wicket.Page.renderPage(Page.java:870) at org.apache.wicket.request.target.component.BookmarkablePageRequestTarget.respond(BookmarkablePageRequestTarget.java:231) at org.apache.wicket.request.AbstractRequestCycleProcessor.respond(AbstractRequestCycleProcessor.java:103) at org.apache.wicket.RequestCycle.processEventsAndRespond(RequestCycle.java:1172) at org.apache.wicket.RequestCycle.step(RequestCycle.java:1241) at org.apache.wicket.RequestCycle.steps(RequestCycle.java:1316) at org.apache.wicket.RequestCycle.request(RequestCycle.java:493) at org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:354) at org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:194) at org.mortbay.jetty.servlet.ServletHandler $CachedChain.doFilter(ServletHandler.java:1065) at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75) at org.mortbay.jetty.servlet.ServletHandler $CachedChain.doFilter(ServletHandler.java:1065) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:365) at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:185) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:689) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:391) at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:146) at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139) at org.mortbay.jetty.Server.handle(Server.java:285) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:457) at org.mortbay.jetty.HttpConnection $RequestHandler.headerComplete(HttpConnection.java:751) at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:500) at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:209) at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:357) at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:329) at org.mortbay.thread.BoundedThreadPool $PoolThread.run(BoundedThreadPool.java:475) Caused by: java.lang.NullPointerException at info.jtrac.wicket.CustomFieldsFormPanel $1.populateItem(CustomFieldsFormPanel.java:65) at org.apache.wicket.markup.html.list.ListView.onPopulate(ListView.java:570) at org.apache.wicket.markup.repeater.AbstractRepeater.onBeforeRender(AbstractRepeater.java:127) at org.apache.wicket.Component.internalBeforeRender(Component.java:995) at org.apache.wicket.Component.beforeRender(Component.java:1027) at org.apache.wicket.MarkupContainer.onBeforeRenderChildren(MarkupContainer.java:1513) ... 42 more Any pointers on how to solve this error will be highly appreciated. Thanks and Regards, Priyadarsan Roy |
From: Колесников М. <ko...@ya...> - 2008-06-23 08:01:47
|
You may run tomcat as a windows service on windows (XP, 2003) and install jtrac using war file (don't forget to change jtrac-init.properties). -- Kolesnikov Mikhail mailto:mi...@ma... |
From: Hanxue L. <lee...@gm...> - 2008-06-22 18:41:15
|
Hontvári, Many thanks, I am able to install it as a service now. Actually my bad for not reading it in the documentation. Best regards, Hanxue On Sun, Jun 22, 2008 at 3:19 AM, Hontvári József <hon...@so...> wrote: > See > http://www.jtrac.info/doc/html/installation.html#installation-windowsservice > > Hanxue Lee írta: >> Hello, >> >> >> I am trying to run jtrac as a Windows service, on Win2K3. I followed >> the instructions here: >> >> http://support.microsoft.com/kb/137890 >> >> >> Specifically on this part: >> 5. From the Edit menu, click Add Value. Type the following and click OK: >> >> Value Name: Application >> Data Type : REG_SZ >> String : <path>\<application.ext> >> >> where <path>\<application.ext> is the drive and full path to the >> application executable including the extension (i.e., >> C:\WinNT\Notepad.exe) >> >> >> I used the path "C:\Apps\jtrac\start.bat" >> >> >> >> However, starting the service does not work. Any hint on what can be wrong? >> >> Thank you in advance. >> >> ------------------------------------------------------------------------- >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services for >> just about anything Open Source. >> http://sourceforge.net/services/buy/index.php >> _______________________________________________ >> j-trac-users mailing list >> j-t...@li... >> https://lists.sourceforge.net/lists/listinfo/j-trac-users >> >> > > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Hontvári J. <hon...@so...> - 2008-06-22 07:19:46
|
See http://www.jtrac.info/doc/html/installation.html#installation-windowsservice Hanxue Lee írta: > Hello, > > > I am trying to run jtrac as a Windows service, on Win2K3. I followed > the instructions here: > > http://support.microsoft.com/kb/137890 > > > Specifically on this part: > 5. From the Edit menu, click Add Value. Type the following and click OK: > > Value Name: Application > Data Type : REG_SZ > String : <path>\<application.ext> > > where <path>\<application.ext> is the drive and full path to the > application executable including the extension (i.e., > C:\WinNT\Notepad.exe) > > > I used the path "C:\Apps\jtrac\start.bat" > > > > However, starting the service does not work. Any hint on what can be wrong? > > Thank you in advance. > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > |
From: Hanxue L. <lee...@gm...> - 2008-06-21 16:47:09
|
Hello, I am trying to run jtrac as a Windows service, on Win2K3. I followed the instructions here: http://support.microsoft.com/kb/137890 Specifically on this part: 5. From the Edit menu, click Add Value. Type the following and click OK: Value Name: Application Data Type : REG_SZ String : <path>\<application.ext> where <path>\<application.ext> is the drive and full path to the application executable including the extension (i.e., C:\WinNT\Notepad.exe) I used the path "C:\Apps\jtrac\start.bat" However, starting the service does not work. Any hint on what can be wrong? Thank you in advance. |
From: Peter T. <ptr...@gm...> - 2008-06-16 15:37:36
|
Hi, Yes you can file this as a request. Thanks, Peter. On Mon, Jun 16, 2008 at 3:18 PM, Mike Conley <no...@ma...> wrote: > It would be quite nice if the column sorting in a search results > or other report listing page were stable. E.g., if I first sort > the Priority column in ascending order and then sort the Status > column in ascending order, the priorities for each of the status > values should remain in ascending order. > > I did a quick scan of the bug database but I didn't see this as > a feature request or pending bug. Am I wrong? If not, can I file > this as a request? > > -Mike > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Mike C. <no...@ma...> - 2008-06-16 09:49:18
|
It would be quite nice if the column sorting in a search results or other report listing page were stable. E.g., if I first sort the Priority column in ascending order and then sort the Status column in ascending order, the priorities for each of the status values should remain in ascending order. I did a quick scan of the bug database but I didn't see this as a feature request or pending bug. Am I wrong? If not, can I file this as a request? -Mike |
From: Peter T. <ptr...@gm...> - 2008-06-14 13:00:06
|
Agreed, will change. Don't bother with a patch for this one. Thanks, Peter. On Sat, Jun 14, 2008 at 4:11 PM, Hontvari Jozsef <hon...@so...> wrote: > Regarding my feature request, "2 letter space keys should be allowed", > > http://sourceforge.net/tracker/index.php?func=detail&aid=1992342&group_id=162983&atid=825944 > , > I am willing to provide a patch to make the minimum length configurable, > but actually I don't see the benefit of limiting the minimul length. If > there is no benefit that it would be enough to remove the minimum lenght > validator along with its message resource. The field is already marked > as required. What do you think? > > > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Hontvari J. <hon...@so...> - 2008-06-14 10:41:54
|
Regarding my feature request, "2 letter space keys should be allowed", http://sourceforge.net/tracker/index.php?func=detail&aid=1992342&group_id=162983&atid=825944, I am willing to provide a patch to make the minimum length configurable, but actually I don't see the benefit of limiting the minimul length. If there is no benefit that it would be enough to remove the minimum lenght validator along with its message resource. The field is already marked as required. What do you think? |
From: Hontvari J. <hon...@so...> - 2008-06-14 08:37:27
|
Yes, indeed, Sateh.com was the culprit. It is in the list of mirrors of the central maven repository, but it hasn't been accessible since yesterday. I configured it a year ago using a settings.xml file in my *home* directory so even installing a new, clean maven version didn't help. Peter Thomas írta: > Hi, > > Not very sure, but looks like you have configured a local mirror / > repository (sateh.com <http://sateh.com>) and the maven-site-plugin is > not available there. > > Maybe commenting out the <plugin> section in pom.xml that contains the > maven-site-plugin will help. You don't need the site-plugin for > development. > > Thanks, > > Peter. > > On Fri, Jun 13, 2008 at 11:15 PM, Hontvari Jozsef > <hon...@so... <mailto:hon...@so...>> wrote: > > I just followed the developer instructions to build trunk but the "mvn > antprops:generate" command failed. > > I received this maven error message below. I don't really know maven, > isn't it possible that a repository definition is missing from the > pom file? > > > > Downloading: > http://maven.sateh.com/repository/org/apache/maven/plugins/maven-site-plugin/2.0-beta- > 6 > /maven-site-plugin-2.0-beta-6.pom > [INFO] > ------------------------------------------------------------------------ > [ERROR] BUILD ERROR > [INFO] > ------------------------------------------------------------------------ > [INFO] Error building POM (may not be this project's POM). > > > Project ID: org.apache.maven.plugins:maven-site-plugin > > Reason: POM 'org.apache.maven.plugins:maven-site-plugin' not found in > repository: Unable to download > the artifact from any repository > > org.apache.maven.plugins:maven-site-plugin:pom:2.0-beta-6 > > from the specified remote repositories: > jtrac.info <http://jtrac.info> > (http://j-trac.sourceforge.net/repository), > sateh.com <http://sateh.com> (http://maven.sateh.com/repository), > openqa.org <http://openqa.org> (http://maven.openqa.org) > for project org.apache.maven.plugins:maven-site-plugin > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > <mailto:j-t...@li...> > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > ------------------------------------------------------------------------ > > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Peter T. <ptr...@gm...> - 2008-06-14 05:57:49
|
Hi, Not very sure, but looks like you have configured a local mirror / repository (sateh.com) and the maven-site-plugin is not available there. Maybe commenting out the <plugin> section in pom.xml that contains the maven-site-plugin will help. You don't need the site-plugin for development. Thanks, Peter. On Fri, Jun 13, 2008 at 11:15 PM, Hontvari Jozsef <hon...@so...> wrote: > I just followed the developer instructions to build trunk but the "mvn > antprops:generate" command failed. > > I received this maven error message below. I don't really know maven, > isn't it possible that a repository definition is missing from the pom > file? > > > > Downloading: > > http://maven.sateh.com/repository/org/apache/maven/plugins/maven-site-plugin/2.0-beta- > 6 > /maven-site-plugin-2.0-beta-6.pom > [INFO] > ------------------------------------------------------------------------ > [ERROR] BUILD ERROR > [INFO] > ------------------------------------------------------------------------ > [INFO] Error building POM (may not be this project's POM). > > > Project ID: org.apache.maven.plugins:maven-site-plugin > > Reason: POM 'org.apache.maven.plugins:maven-site-plugin' not found in > repository: Unable to download > the artifact from any repository > > org.apache.maven.plugins:maven-site-plugin:pom:2.0-beta-6 > > from the specified remote repositories: > jtrac.info (http://j-trac.sourceforge.net/repository), > sateh.com (http://maven.sateh.com/repository), > openqa.org (http://maven.openqa.org) > for project org.apache.maven.plugins:maven-site-plugin > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Hontvari J. <hon...@so...> - 2008-06-13 17:44:59
|
I just followed the developer instructions to build trunk but the "mvn antprops:generate" command failed. I received this maven error message below. I don't really know maven, isn't it possible that a repository definition is missing from the pom file? Downloading: http://maven.sateh.com/repository/org/apache/maven/plugins/maven-site-plugin/2.0-beta- 6 /maven-site-plugin-2.0-beta-6.pom [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Error building POM (may not be this project's POM). Project ID: org.apache.maven.plugins:maven-site-plugin Reason: POM 'org.apache.maven.plugins:maven-site-plugin' not found in repository: Unable to download the artifact from any repository org.apache.maven.plugins:maven-site-plugin:pom:2.0-beta-6 from the specified remote repositories: jtrac.info (http://j-trac.sourceforge.net/repository), sateh.com (http://maven.sateh.com/repository), openqa.org (http://maven.openqa.org) for project org.apache.maven.plugins:maven-site-plugin |
From: Peter T. <ptr...@gm...> - 2008-06-06 17:37:31
|
Hi, This message is for developers building out of version control: I just committed some changes (r1246) that should allow hot-reloading of the user-interface java classes (info.jtrac.wicket.*) in development mode. This used to be possible a while back until some changes in Wicket caused issues - but recently I got a chance to get this working again. This is a huge time-saver in development mode, but is still experimental - so do look out for issues. Thanks, Peter. |
From: Peter T. <ptr...@gm...> - 2008-06-06 17:18:56
|
Hi Richard, Really appreciate the nice feedback! You are right, what I will do for now is add an FAQ entry on how to re-brand JTrac in the documentation. Thanks, Peter. 2008/6/6 Richard Stratford <ri...@id...>: > In my initial playing around with JTrac, thats what I did. Unzip the war, > edit a little html and replace favicon is all it took. > > specifically these files: > > BasePage.html > LogoutPage.html > LoginPage.html > > found here: > > jtrac\WEB-INF\classes\info\jtrac\wicket > > Also, one can replace favicon in the jtrac root if you wish. > > What i really like about this method is that it widens the potential > initial users of jtrac. If rebranding is required at the source code you > may eliminate less sophisticated initial users (ie, non-programmers). I > would argue that one of JTrac's great values is the ease, even to > non-programmers, of providing a non-branded solution. For example, one can > change the branding as easily as one can change the workflow. :) > > I think the ridiculous ease by which JTrac can be rebranded should be noted > (trumpeted?) in your instructions. My sense is splitting "customization" > from the developer guide and putting it in a low-threshold section. > > Of course, this assumes you want less sophisticated users to use JTrac. > Another issue on its own, I expect. > > Thanks Peter. Great product. > > > Richard Stratford > > > > > 2008/6/6 Peter Thomas <ptr...@gm...>: > > Hi, >> >> Yes, I would say editing one file: BasePage.html should be sufficient. >> You can also look at HeaderPanel.html - just unzip the file called >> "jtrac.war" to get at these files. >> >> I don't think you need to even need to use Eclipse or NetBeans for this - >> but it would help in previewing your changes step by step. Do note that >> there is a detailed developer guide available on the JTrac website if you >> need it. >> >> Thanks, >> >> Peter. >> >> 2008/6/6 Francis De Brabandere <fra...@gm...>: >> >> Are you sure about that? >>> >>> Can't he just extract the jar/war and edit the html and css files >>> (making sure all wicket:id and other wicket tags are not changed) >>> And after that reassemble the jar/war (+ release the changes as an oss >>> project) >>> >>> Not that this would be the way I would customize the project... >>> >>> 2008/6/6 Mihails Agafonovs <_m...@in...>: >>> > I'll try to guess - you want to change layout within the compiled JTrac >>> > application? You can't do that, the source code is a "must have" for >>> layout >>> > modification. >>> > If you don't like NetBeans, then you can use, for example, Eclipse or >>> smth >>> > like that. >>> > >>> > Quoting Erba Pablo-ape004 <ap...@mo...>: >>> > >>> > but is it possible witouht netbeans? >>> > >>> > >>> > ________________________________ >>> > From: j-t...@li... >>> > [mailto:j-t...@li...] On Behalf Of >>> Mihails >>> > Agafonovs >>> > Sent: Viernes, 06 de Junio de 2008 11:09 a.m. >>> > To: JTrac users mailing-list >>> > Subject: Re: [jtrac-users] Layout Customization >>> > If you've checked out JTrac project, you can open it with NetBeans, for >>> > example. So, in the project tree, you should go to the main > >>> > info.jtrac.wicket. Open this tree element and you'll get all the files >>> > (*.html) you can modify :). >>> > >>> > Quoting Erba Pablo-ape004 <ap...@mo...>: >>> > >>> > Thanks, what are the files that is possible to modify the layout? >>> > >>> > >>> > ________________________________ >>> > From: j-t...@li... >>> > [mailto:j-t...@li...] On Behalf Of >>> Mihails >>> > Agafonovs >>> > Sent: Viernes, 06 de Junio de 2008 08:40 a.m. >>> > To: JTrac users mailing-list >>> > Subject: Re: [jtrac-users] Layout Customization >>> > Sure, you can! Check out the code and modify the layout as you wish. >>> > >>> > Quoting Erba Pablo-ape004 <ap...@mo...>: >>> > >>> > Hi again, is possible to include a top section (with the company logo ) >>> or a >>> > botton section? >>> > >>> > thanks! pablo. >>> > >>> > >>> > Ar cieņu, Mihails >>> > >>> > >>> > Ar cieņu, Mihails >>> > >>> > >>> > Ar cieņu, Mihails >>> > >>> ------------------------------------------------------------------------- >>> > Check out the new SourceForge.net Marketplace. >>> > It's the best place to buy or sell services for >>> > just about anything Open Source. >>> > http://sourceforge.net/services/buy/index.php >>> > _______________________________________________ >>> > j-trac-users mailing list >>> > j-t...@li... >>> > https://lists.sourceforge.net/lists/listinfo/j-trac-users >>> > >>> > >>> >>> >>> >>> -- >>> http://www.somatik.be >>> Microsoft gives you windows, Linux gives you the whole house. >>> ------------------------------------------------------------------------- >>> Check out the new SourceForge.net Marketplace. >>> It's the best place to buy or sell services for >>> just about anything Open Source. >>> http://sourceforge.net/services/buy/index.php >>> _______________________________________________ >>> j-trac-users mailing list >>> j-t...@li... >>> https://lists.sourceforge.net/lists/listinfo/j-trac-users >>> >> >> >> ------------------------------------------------------------------------- >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services for >> just about anything Open Source. >> http://sourceforge.net/services/buy/index.php >> _______________________________________________ >> j-trac-users mailing list >> j-t...@li... >> https://lists.sourceforge.net/lists/listinfo/j-trac-users >> >> > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > |
From: Richard S. <ri...@id...> - 2008-06-06 17:04:03
|
In my initial playing around with JTrac, thats what I did. Unzip the war, edit a little html and replace favicon is all it took. specifically these files: BasePage.html LogoutPage.html LoginPage.html found here: jtrac\WEB-INF\classes\info\jtrac\wicket Also, one can replace favicon in the jtrac root if you wish. What i really like about this method is that it widens the potential initial users of jtrac. If rebranding is required at the source code you may eliminate less sophisticated initial users (ie, non-programmers). I would argue that one of JTrac's great values is the ease, even to non-programmers, of providing a non-branded solution. For example, one can change the branding as easily as one can change the workflow. :) I think the ridiculous ease by which JTrac can be rebranded should be noted (trumpeted?) in your instructions. My sense is splitting "customization" from the developer guide and putting it in a low-threshold section. Of course, this assumes you want less sophisticated users to use JTrac. Another issue on its own, I expect. Thanks Peter. Great product. Richard Stratford 2008/6/6 Peter Thomas <ptr...@gm...>: > Hi, > > Yes, I would say editing one file: BasePage.html should be sufficient. You > can also look at HeaderPanel.html - just unzip the file called "jtrac.war" > to get at these files. > > I don't think you need to even need to use Eclipse or NetBeans for this - > but it would help in previewing your changes step by step. Do note that > there is a detailed developer guide available on the JTrac website if you > need it. > > Thanks, > > Peter. > > 2008/6/6 Francis De Brabandere <fra...@gm...>: > > Are you sure about that? >> >> Can't he just extract the jar/war and edit the html and css files >> (making sure all wicket:id and other wicket tags are not changed) >> And after that reassemble the jar/war (+ release the changes as an oss >> project) >> >> Not that this would be the way I would customize the project... >> >> 2008/6/6 Mihails Agafonovs <_m...@in...>: >> > I'll try to guess - you want to change layout within the compiled JTrac >> > application? You can't do that, the source code is a "must have" for >> layout >> > modification. >> > If you don't like NetBeans, then you can use, for example, Eclipse or >> smth >> > like that. >> > >> > Quoting Erba Pablo-ape004 <ap...@mo...>: >> > >> > but is it possible witouht netbeans? >> > >> > >> > ________________________________ >> > From: j-t...@li... >> > [mailto:j-t...@li...] On Behalf Of >> Mihails >> > Agafonovs >> > Sent: Viernes, 06 de Junio de 2008 11:09 a.m. >> > To: JTrac users mailing-list >> > Subject: Re: [jtrac-users] Layout Customization >> > If you've checked out JTrac project, you can open it with NetBeans, for >> > example. So, in the project tree, you should go to the main > >> > info.jtrac.wicket. Open this tree element and you'll get all the files >> > (*.html) you can modify :). >> > >> > Quoting Erba Pablo-ape004 <ap...@mo...>: >> > >> > Thanks, what are the files that is possible to modify the layout? >> > >> > >> > ________________________________ >> > From: j-t...@li... >> > [mailto:j-t...@li...] On Behalf Of >> Mihails >> > Agafonovs >> > Sent: Viernes, 06 de Junio de 2008 08:40 a.m. >> > To: JTrac users mailing-list >> > Subject: Re: [jtrac-users] Layout Customization >> > Sure, you can! Check out the code and modify the layout as you wish. >> > >> > Quoting Erba Pablo-ape004 <ap...@mo...>: >> > >> > Hi again, is possible to include a top section (with the company logo ) >> or a >> > botton section? >> > >> > thanks! pablo. >> > >> > >> > Ar cieņu, Mihails >> > >> > >> > Ar cieņu, Mihails >> > >> > >> > Ar cieņu, Mihails >> > >> ------------------------------------------------------------------------- >> > Check out the new SourceForge.net Marketplace. >> > It's the best place to buy or sell services for >> > just about anything Open Source. >> > http://sourceforge.net/services/buy/index.php >> > _______________________________________________ >> > j-trac-users mailing list >> > j-t...@li... >> > https://lists.sourceforge.net/lists/listinfo/j-trac-users >> > >> > >> >> >> >> -- >> http://www.somatik.be >> Microsoft gives you windows, Linux gives you the whole house. >> ------------------------------------------------------------------------- >> Check out the new SourceForge.net Marketplace. >> It's the best place to buy or sell services for >> just about anything Open Source. >> http://sourceforge.net/services/buy/index.php >> _______________________________________________ >> j-trac-users mailing list >> j-t...@li... >> https://lists.sourceforge.net/lists/listinfo/j-trac-users >> > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > |
From: Peter T. <ptr...@gm...> - 2008-06-06 16:19:51
|
Hi, Yes, I would say editing one file: BasePage.html should be sufficient. You can also look at HeaderPanel.html - just unzip the file called "jtrac.war" to get at these files. I don't think you need to even need to use Eclipse or NetBeans for this - but it would help in previewing your changes step by step. Do note that there is a detailed developer guide available on the JTrac website if you need it. Thanks, Peter. 2008/6/6 Francis De Brabandere <fra...@gm...>: > Are you sure about that? > > Can't he just extract the jar/war and edit the html and css files > (making sure all wicket:id and other wicket tags are not changed) > And after that reassemble the jar/war (+ release the changes as an oss > project) > > Not that this would be the way I would customize the project... > > 2008/6/6 Mihails Agafonovs <_m...@in...>: > > I'll try to guess - you want to change layout within the compiled JTrac > > application? You can't do that, the source code is a "must have" for > layout > > modification. > > If you don't like NetBeans, then you can use, for example, Eclipse or > smth > > like that. > > > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > > > but is it possible witouht netbeans? > > > > > > ________________________________ > > From: j-t...@li... > > [mailto:j-t...@li...] On Behalf Of Mihails > > Agafonovs > > Sent: Viernes, 06 de Junio de 2008 11:09 a.m. > > To: JTrac users mailing-list > > Subject: Re: [jtrac-users] Layout Customization > > If you've checked out JTrac project, you can open it with NetBeans, for > > example. So, in the project tree, you should go to the main > > > info.jtrac.wicket. Open this tree element and you'll get all the files > > (*.html) you can modify :). > > > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > > > Thanks, what are the files that is possible to modify the layout? > > > > > > ________________________________ > > From: j-t...@li... > > [mailto:j-t...@li...] On Behalf Of Mihails > > Agafonovs > > Sent: Viernes, 06 de Junio de 2008 08:40 a.m. > > To: JTrac users mailing-list > > Subject: Re: [jtrac-users] Layout Customization > > Sure, you can! Check out the code and modify the layout as you wish. > > > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > > > Hi again, is possible to include a top section (with the company logo ) > or a > > botton section? > > > > thanks! pablo. > > > > > > Ar cieņu, Mihails > > > > > > Ar cieņu, Mihails > > > > > > Ar cieņu, Mihails > > ------------------------------------------------------------------------- > > Check out the new SourceForge.net Marketplace. > > It's the best place to buy or sell services for > > just about anything Open Source. > > http://sourceforge.net/services/buy/index.php > > _______________________________________________ > > j-trac-users mailing list > > j-t...@li... > > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > > > > > > > -- > http://www.somatik.be > Microsoft gives you windows, Linux gives you the whole house. > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > |
From: Francis De B. <fra...@gm...> - 2008-06-06 16:06:49
|
Are you sure about that? Can't he just extract the jar/war and edit the html and css files (making sure all wicket:id and other wicket tags are not changed) And after that reassemble the jar/war (+ release the changes as an oss project) Not that this would be the way I would customize the project... 2008/6/6 Mihails Agafonovs <_m...@in...>: > I'll try to guess - you want to change layout within the compiled JTrac > application? You can't do that, the source code is a "must have" for layout > modification. > If you don't like NetBeans, then you can use, for example, Eclipse or smth > like that. > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > but is it possible witouht netbeans? > > > ________________________________ > From: j-t...@li... > [mailto:j-t...@li...] On Behalf Of Mihails > Agafonovs > Sent: Viernes, 06 de Junio de 2008 11:09 a.m. > To: JTrac users mailing-list > Subject: Re: [jtrac-users] Layout Customization > If you've checked out JTrac project, you can open it with NetBeans, for > example. So, in the project tree, you should go to the main > > info.jtrac.wicket. Open this tree element and you'll get all the files > (*.html) you can modify :). > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > Thanks, what are the files that is possible to modify the layout? > > > ________________________________ > From: j-t...@li... > [mailto:j-t...@li...] On Behalf Of Mihails > Agafonovs > Sent: Viernes, 06 de Junio de 2008 08:40 a.m. > To: JTrac users mailing-list > Subject: Re: [jtrac-users] Layout Customization > Sure, you can! Check out the code and modify the layout as you wish. > > Quoting Erba Pablo-ape004 <ap...@mo...>: > > Hi again, is possible to include a top section (with the company logo ) or a > botton section? > > thanks! pablo. > > > Ar cieņu, Mihails > > > Ar cieņu, Mihails > > > Ar cieņu, Mihails > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > j-trac-users mailing list > j-t...@li... > https://lists.sourceforge.net/lists/listinfo/j-trac-users > > -- http://www.somatik.be Microsoft gives you windows, Linux gives you the whole house. |
From: Mihails A. <_m...@in...> - 2008-06-06 15:29:38
|
I'll try to guess - you want to change layout within the compiled JTrac application? You can't do that, the source code is a "must have" for layout modification. If you don't like NetBeans, then you can use, for example, Eclipse or smth like that. Quoting Erba Pablo-ape004 : /**/ /**/ /**/ but is it possible witouht netbeans? ------------------------- From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 11:09 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization If you've checked out JTrac project, you can open it with NetBeans, for example. So, in the project tree, you should go to the main > info.jtrac.wicket. Open this tree element and you'll get all the files (*.html) you can modify :). Quoting Erba Pablo-ape004 : Thanks, what are the files that is possible to modify the layout? ------------------------- From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 08:40 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization Sure, you can! Check out the code and modify the layout as you wish. Quoting Erba Pablo-ape004 : Hi again, is possible to include a top section (with the company logo ) or a botton section? thanks! pablo. Ar cieņu, Mihails Ar cieņu, Mihails Ar cieņu, Mihails Links: ------ [1] mailto:ap...@mo... |
From: Erba Pablo-a. <ap...@mo...> - 2008-06-06 14:59:42
|
but is it possible witouht netbeans? ________________________________ From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 11:09 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization If you've checked out JTrac project, you can open it with NetBeans, for example. So, in the project tree, you should go to the main > info.jtrac.wicket. Open this tree element and you'll get all the files (*.html) you can modify :). Quoting Erba Pablo-ape004 <ap...@mo...>: Thanks, what are the files that is possible to modify the layout? ________________________________ From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 08:40 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization Sure, you can! Check out the code and modify the layout as you wish. Quoting Erba Pablo-ape004 <ap...@mo... <invalid-url://> >: Hi again, is possible to include a top section (with the company logo ) or a botton section? thanks! pablo. Ar cieņu, Mihails Ar cieņu, Mihails |
From: Mihails A. <_m...@in...> - 2008-06-06 14:09:09
|
If you've checked out JTrac project, you can open it with NetBeans, for example. So, in the project tree, you should go to the main > info.jtrac.wicket. Open this tree element and you'll get all the files (*.html) you can modify :). Quoting Erba Pablo-ape004 : /**/ /**/ Thanks, what are the files that is possible to modify the layout? ------------------------- From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 08:40 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization Sure, you can! Check out the code and modify the layout as you wish. Quoting Erba Pablo-ape004 : Hi again, is possible to include a top section (with the company logo ) or a botton section? thanks! pablo. Ar cieņu, Mihails Ar cieņu, Mihails Links: ------ [1] mailto:ap...@mo... |
From: Erba Pablo-a. <ap...@mo...> - 2008-06-06 12:28:44
|
Thanks, what are the files that is possible to modify the layout? ________________________________ From: j-t...@li... [mailto:j-t...@li...] On Behalf Of Mihails Agafonovs Sent: Viernes, 06 de Junio de 2008 08:40 a.m. To: JTrac users mailing-list Subject: Re: [jtrac-users] Layout Customization Sure, you can! Check out the code and modify the layout as you wish. Quoting Erba Pablo-ape004 <ap...@mo...>: Hi again, is possible to include a top section (with the company logo ) or a botton section? thanks! pablo. Ar cieņu, Mihails |