[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-24 Thread thepriz
I need to fix the downloads module then because I do the same thing in there. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3849468#3849468 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3849468

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-24 Thread thepriz
I always thought it was wierd that just calling the setPackagesPerPage would take care of the persistance but I thought that it was jboss magic or somthing like that. Oh well, I am learning. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3849469#3849469 Reply

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-23 Thread thepriz
I found this in my log: | 2004-09-23 10:07:34,083 INFO [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/C:/projects/DataDistribution/DataDistribution/ddBuild/output/jboss-3.2.3/server/default/nukes/nukes-jmx.sar | 2004-09-23 10:07:34,123 ERROR

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-23 Thread thepriz
I removed the JMX module and it removed this exception but I still am not getting persistence View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3849329#3849329 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3849329

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-23 Thread thepriz
If I do this instead of calling a settter in the Kingpin Module it works: | try | { | ObjectName name = new ObjectName(nukes.modules:name=kingpin); | String att = NumberPackagesPerPage; | String type = int; | Object value = null; |

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-23 Thread thepriz
I created the jmx values in my module doing this (also setting up the jboss_services.xml file): private int packagesPerPage = 0; | | public int getPackagesPerPage() | { | return packagesPerPage; | } | | public void setPackagesPerPage(int packagesPerPage) | { |

[JBoss-dev] [Nukes Development] - Problems with persistence

2004-09-22 Thread thepriz
I am having problems with persistence. I am not sure what I am missing. In my jboss services module I have: |mbean | code=org.jboss.nukes.addons.modules.kingpin.KingpinModule | name=nukes.modules:name=kingpin | xmbean-dd= |

[JBoss-dev] [Nukes Development] - Re: Problems with persistence

2004-09-22 Thread thepriz
Here are my constructers |/** | * Default Constructor | */ |public KingpinModule() |{ | // setup the module name | this(kingpin, false); |} | |/** | * Constructor which you can set the JNDI name of the class. Using this | *

[JBoss-dev] [Nukes Development] - Re: nukes api

2004-09-21 Thread thepriz
I would suggest that as we work on different parts of the code to acctually put in the java docs in for the code. This would greatly help the learning curve for new developers. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3849021#3849021 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: Retrieve file name after upload

2004-09-20 Thread thepriz
This is great. I actually did this for the project that I was working on and didn't think about checking it in till I saw this but it is already done, oh well. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848830#3848830 Reply to the post :

[JBoss-dev] [Nukes Development] - Authentication Pattern

2004-09-15 Thread thepriz
I noticed that the Authentication Pattern is only 3 sections sec1:sec2:sec3 in postnuke this pattern was in two parts and allowed 6 sections sec1:sec2:sec3, sec4:sec:5:sec6. My question is are we only allowed 3 sec in the pattern or can the single pattern be sec1:sec2:sec3:sec4:sec:5:sec6?

[JBoss-dev] [Nukes Development] - Re: Authentication Pattern

2004-09-15 Thread thepriz
Ok, I can understand that. so we only have one :: because rules are local to the module. so we really don't need to prefix the rule with the module name as in module:datatype:typeId it could be: datatype:typeId:subtypeId or basicly any pattern we want. View the original post :

[JBoss-dev] [Nukes Development] - Re: Nukes used in Production

2004-09-14 Thread thepriz
The site will be on a private network or I would. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848162#3848162 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3848162 ---

[JBoss-dev] [Nukes Development] - Re: Release schedule for 1.1?

2004-09-14 Thread thepriz
thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848163#3848163 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3848163 --- This SF.Net email is sponsored by:

[JBoss-dev] [Nukes Development] - Re: Gallery module

2004-09-14 Thread thepriz
Idid briefly look at the different gallery modules a while back because I was interested in porting one. What I found is that some of them use a library to do some of the graphic manipulation. I would suggest that you find a java lib that can do the same things as the ones that where used for

[JBoss-dev] [Nukes Development] - User Management

2004-09-14 Thread thepriz
I was just wondering if someone was working on a user management module for nukes just like the one in Postnuke? It seems to me the only way to add users is to use the create one option on the login box. Is this true? If this is true we should think about doing this. Some sites need the

[JBoss-dev] [Nukes Development] - Email Verification

2004-09-14 Thread thepriz
In postnuke you are sent your password to the email address that you provide to authenticate yourself. Can you do this with nukes? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848200#3848200 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: User Management

2004-09-14 Thread thepriz
Which module or link can you do this with and what version of nukes was this added? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848194#3848194 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3848194

[JBoss-dev] [Nukes Development] - Re: Email Verification

2004-09-14 Thread thepriz
I will try to go through the user code and see what I can do. I have written code to send mail in php before. I will look at postnuke and see what they do. Any advice? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848241#3848241 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: Release schedule for 1.1?

2004-09-13 Thread thepriz
You know I created the download module and have not seen any bugs. I may not have been keeping up on the forums. Also can I get recognized on the nukes front page for doing the conversion. I also want to say the downloads module was not a straight conversion. I took my time and made many

[JBoss-dev] [Nukes Development] - Re: Updated downloads module

2004-09-13 Thread thepriz
Wow, I guess two pairs of eyes are better than one. Thanks for doing the ftp validation was going to get to that but never had the chance. I got really busy at work. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3848086#3848086 Reply to the post :

[JBoss-dev] [Nukes Development] - Nukes used in Production

2004-09-13 Thread thepriz
I just wanted to let you all know that in 2 weeks we will be delivering version Nukes 1.0 with a customised module for a customer. It will be used to track packages(ie paperwork) that they are working on. It will also contain the data that they collect and use. I have spent a year developing

[JBoss-dev] [Nukes Development] - Upload file filename

2004-07-07 Thread thepriz
I have been able to get the file to upload but how do I get the filename of the file that was added in the form? I have tried to trace it but I can't seem to find the final class with getParameterAsFile() function in it. View the original post :

[JBoss-dev] [Nukes Development] - Re: Hello Everyone

2004-06-29 Thread thepriz
Thanks for the quick response. I hope to have more time soon to help with new features for Nukes View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3840326#3840326 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3840326

[JBoss-dev] [Nukes Development] - Hello Everyone

2004-06-29 Thread thepriz
Sorry I have been away for awhile. Been swamped at work trying to get a product done that uses nukes as a front end. Deadline has already passed. Is there a way to upload files using nukes and jboss? View the original post :

[JBoss-dev] [Nukes Development] - Re: Upcoming Nukes 1.1

2004-05-07 Thread thepriz
Polls Module is taking me longer than expected. I have had lots of personal, family, and work things come up. I just wanted to let everyone know I was still around and will get it done at some point. You don't have to wait for me for 1.1 release. Hopfully I will have some time this weekend to

[JBoss-dev] [Nukes Development] - User Variables

2004-04-21 Thread thepriz
Is it possable yet in the CVS HEAD to save information per user? Ie. I would like to save an ID number for each user which has been assigned to them? Thanks, View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3831832#3831832 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: Upcoming Nukes 1.1

2004-04-15 Thread thepriz
I will have the polls module ready my May View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3830860#3830860 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3830860 --- This

[JBoss-dev] [Nukes Development] - Re: Velocity Implementation - where to put Velocity.jar?

2004-04-13 Thread thepriz
I think you should be able to add this as an option for people to install if they want to use it. It doesn't have to be a core feature but if someone wants the ability to use it why not have the option? View the original post :

[JBoss-dev] [Nukes Development] - Re: poll module revamp

2004-04-13 Thread thepriz
Going ok, It will be the end of the week before a beta is ready. There is less work than the downloads module but I have not been working as hard on it (needed to give my family some time). If you want you can release 1.1 and I will get this done for 1.2 or something like that. Someone was

[JBoss-dev] [Nukes Development] - Re: Basic Question for Cooper of Jae77 (or anyone)

2004-04-13 Thread thepriz
If you deloy nukes you have to redeploy all the modules you had deployed before. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3830414#3830414 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3830414

[JBoss-dev] [Nukes Development] - Re: grr - just realized something

2004-04-12 Thread thepriz
I didn't like the Post Nuke database naming conventions. When I did the downloads module I did the module from the ground up using my own naming convetions ( which was using downloadId instead of pn_id or somthing like that.) I am also redoing the polls database and renaming all the fields like

[JBoss-dev] [Nukes Development] - Re: opinion needed for news design

2004-04-09 Thread thepriz
My feeling is that the news module has not ever been officially released yet. It has been said it is under development. I don't see any problem with changing the schema at this stage because it is a module under developement. My question is how are we going to handle upgrades to nukes and

[JBoss-dev] [Nukes Development] - Re: Wrapping up for 1.1

2004-04-07 Thread thepriz
Do you want the polls module and the faq module done before a 1.1 release? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3829673#3829673 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3829673

[JBoss-dev] [Nukes Development] - Re: Oracle support for nukes

2004-04-07 Thread thepriz
I will clean up a few things today and then it should be ready. The prepare.dll is not set up for oracle. Anyone setting up an oracle database will have to do this manually at this point. That is we set up our database and I am not familliar enough with oracle to complete the prepare.dll file.

[JBoss-dev] [Nukes Development] - Re: Oracle support for nukes

2004-04-02 Thread thepriz
No sorry, I will try to get that done today if I have the files. I am home with a sick family today. I may not have the files here. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3828909#3828909 Reply to the post :

[JBoss-dev] [Nukes Development] - Next project

2004-04-01 Thread thepriz
I am going to begin another project for nukes. Here is what I am interested in helping out with: 1) refactor polls module 2) refactor faq module 3) create a gallery module 4) create a referal module (not sure what to call it exactly, this would tell you what websites people are comming from

[JBoss-dev] [Nukes Development] - Re: Next project

2004-04-01 Thread thepriz
I forgot one on my list. 6) Create a LinkRing module (this would give nukes the ability to have webring(TM) functionality. In other words, you would be able to run either one linkring or a whole collection of linkrings on your website. View the original post :

[JBoss-dev] [Nukes Development] - User information

2004-04-01 Thread thepriz
I remember a discussion that there was a a module that was under development that would allow you to store information on a user by user basis. In other words say I had a user who likes seeing 25 downloads per page and another user who likes to see only 10 downloads per page. How far along is

[JBoss-dev] [Nukes Development] - Re: Next project

2004-04-01 Thread thepriz
Ok, I guess I will start with the polls module. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3828747#3828747 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3828747 ---

[JBoss-dev] [Nukes Development] - Re: Next project

2004-04-01 Thread thepriz
thanks! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3828780#3828780 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3828780 --- This SF.Net email is sponsored by: IBM

[JBoss-dev] [Nukes Development] - Nukes Downloads Module has been added to cvs

2004-03-31 Thread thepriz
The nukes module has been added to cvs. All functionality of the postnuke downloads module has been implimented I think. If you find something that has not been implimented please let me know. I think it is production ready but I need other people to test it. I have created the mysql setup.xml

[JBoss-dev] [Nukes Development] - Re: Nukes Downloads Module has been added to cvs

2004-03-31 Thread thepriz
cooper wrote : you have to create a request on the sourceforge website. Done. I have requested to remove the downloads directory on the root level. I may get the hang of this cvs stuff someday! ;-) View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3828401#3828401

[JBoss-dev] [Nukes Development] - Downloads Module Update

2004-03-28 Thread thepriz
I will add the downloads module to CVS when I have it in the beta state. The last alpha version of the downloads module was released today. If you have been watching my test website you may have noticed I only have one more feature to add to put it in a beta state. The feature is not an easy

[JBoss-dev] [Nukes Development] - Re: Searching for Photo-Gallery-Module with rating and comme

2004-03-26 Thread thepriz
I don't think anyone has developed this module yet. I am currently working on the downloads module, but plan to work on other modules. I am planning a web links module next. I would also be interested in working on a gallery module in the future. a

[JBoss-dev] [Nukes Development] - Re: allow ant 1.6

2004-03-24 Thread thepriz
I have run into a problem with using ant 1.6: if I don't do a clean it works fine. After I do a clean I get the following error when I try to just run the build deploy in netbeans. | _buildmagic:init: | Trying to override old definition of task property |

[JBoss-dev] [Nukes Development] - Re: allow ant 1.6

2004-03-24 Thread thepriz
ant clean most works perfectly from the command line. It must be a netbeans problem. I would suggest we can check in this change because it seems to work perfectly. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3827302#3827302;View the original post/a a

[JBoss-dev] [Nukes Development] - Re: allow ant 1.6

2004-03-23 Thread thepriz
I will try it out if that is the only change to the file that we need to make. I would like to do this to because netbeans 3.6 RC1 now uses ant 1.6. So all we have to do is add property name=buildmagic.ant.baseversion.1.6 value=1.6/ to the file? Dennis Przybyla a

[JBoss-dev] [Nukes Development] - Oracle support for nukes

2004-03-23 Thread thepriz
We have converted the files to run nukes on Oracle. I am going to check them in if there are no objections. Basicly I will add an oracle directory to the nukes/resources directory with the appropriate files. I will also add an oracle.properties file in the build/etc directory. Anyone object?

[JBoss-dev] [Nukes Development] - Re: allow ant 1.6

2004-03-23 Thread thepriz
Making it look like the following worked: | !-- Make sure we have the right version of Ant -- | property name=buildmagic.ant.baseversion value=1.5/ | property name=buildmagic.ant.baseversion.1.6 value=1.6/ | | | !-- | | Add new conditions for other supported Ant

[JBoss-dev] [Nukes Development] - Nukes Search Functionality

2004-03-23 Thread thepriz
Is there any documentation on adding nukes search functionality to a module? In other words I want to be able to add results to a search on the nukes website that are found in the downloads module. What module and where in that module should I look? Thanks, a

[JBoss-dev] [Nukes Development] - Re: nukes build failed

2004-03-20 Thread thepriz
I caused this when I had Julien check my changes in. I sent him the changes in a zip file. I think the problem is that the file contains windows linefeeds. If you use cvs and do a checkout using unix linefeeds which you can do with wincvs. I am only guessing here but this seems to be the

[JBoss-dev] [Nukes Development] - Build Problems

2004-03-20 Thread thepriz
Just trying to build the latest stuff and I am getting the following error: | D:\nukes\nukes\buildbuild clean | Executing D:\nukes\nukes\build\..\tools\bin\ant.bat -logger org.apache.tools.an | t.NoBannerLogger clean | Buildfile: build.xml | | _buildmagic:init: | Trying to

[JBoss-dev] [Nukes Development] - Re: Build Problems

2004-03-20 Thread thepriz
I did a fresh checkout, this is what caused the problem. I will try again. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3826702#3826702;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3826702Reply to the post/a

[JBoss-dev] [Nukes Development] - Re: Help with using UserEJB

2004-03-14 Thread thepriz
That was the problem. This is kind of confusing, I thought that the UserEJB would have already been deployed with the core module. Why do I have to deploy it with my module? I thought the purpose of an application server was to allow resources to be used once they are deployed. Thanks, a

[JBoss-dev] [Nukes Development] - Help with using UserEJB

2004-03-13 Thread thepriz
Ok, I am trying to add a user to their rating of a download. I use the following for the interface method. /** | * @ejb.interface-method | * @ejb.relation | *name=DownloadRatings[-]User | *role-name=DownloadRatings-]User | *target-ejb=UserEJB |

[JBoss-dev] [Nukes Development] - Error in building the latest code

2004-03-11 Thread thepriz
Here is the error: | [javac] Compiling 174 source files to C:\projects\jboss\nukes\nukes\output\c | lasses | [javac] C:\projects\jboss\nukes\nukes\src\main\org\jboss\nukes\core\ejb\File | StatEJB.java:40: cannot resolve symbol | [javac] symbol : variable VMID |

[JBoss-dev] [Nukes Development] - Re: Error in building the latest code

2004-03-11 Thread thepriz
Think I figured it out. didn't do a build in the builds directory first. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3825266#3825266;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3825266Reply to the post/a

[JBoss-dev] [Nukes Development] - authid in urls

2004-03-10 Thread thepriz
Is it necessary to put the authid in a url. or is this handled in the nukes internals? I am asking because in the faq and polls modules I see it doing this but not in the bb module. Thanks, a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3825110#3825110;View the original post/a

[JBoss-dev] [Nukes Development] - Re: Logout not working

2004-03-08 Thread thepriz
I will see what I can do. I didn't see this until I was adding the security to downloads module and was trying to log on as a user instead of admin to see if it was working. I would press logout and it would say I was logged out and then it would act like I was still logged in. One of the

[JBoss-dev] [Nukes Development] - Re: news module

2004-03-08 Thread thepriz
Do you have to do the delete everytime you change the default security when you deploy your module? I am working on the downloads module and I find that the User that I added is not able to access the donwloads module form the main menu. What do I have to do to get the downloads module to

[JBoss-dev] [Nukes Development] - Re: Nukes security

2004-03-08 Thread thepriz
Well, it took me awhile but I figured it out. You have to add permission group=* level=READ pattern=module:downloads:main/ to the menu-block-service.xml file in the nukes/src/resources/services directory. Of course you will want to adjust the permissions to your needs. Also if you have already

[JBoss-dev] [Nukes Development] - Logout not working

2004-03-07 Thread thepriz
Not sure what I am doing wrong but when I hit the logout button it says that it loged me out but it contiunes to act like I am loged in. I have restarted jboss but I am still logged in. a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3824623#3824623;View the original post/a a

[JBoss-dev] [Nukes Development] - Re: Logout not working

2004-03-07 Thread thepriz
I had to clear my cookies to get logout to work? Is this a bug? Thanks, a href=http://www.jboss.org/index.html?module=bbop=viewtopicp=3824657#3824657;View the original post/a a href=http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3824657Reply to the post/a

[JBoss-dev] [Nukes Development] - Nukes security

2004-03-07 Thread thepriz
I have begun to add security to the downloads module and I found it pretty easy to add. The only problem that I have found is the downloads module does not show up in the Main Menu for just a user logged in. I actually want it to show up for an anonymous user logged in. Also. the Home link in

[JBoss-dev] [Nukes Development] - Download Alpha module is ready

2004-03-06 Thread thepriz
I have pretty much all the functionality of the downloads module done. You can take a look at it at http://dragon.przybyla.org:8080/nukes/. The only thing it really dosen't have is the security set up. So it basicly is running in administration mode. I will try to get the security added this

[JBoss-dev] [Nukes Development] - Module started but not in Main Menu

2004-03-04 Thread thepriz
My module does not get any errors when I deploy it and it seems to say it was started; however, It is not appearing in the Main Menu and the blocks that call functions in it when clicked on a message tells me that the module is not started. Any ideas? Thanks, Dennis Przybyla Software Engineer

[JBoss-dev] [Nukes Development] - Re: Module started but not in Main Menu

2004-03-04 Thread thepriz
It is not a core module it is a developed module. I did notice the problem you mentioned above last night and found this solution in a post last night. This started to happen when I added blocks to the module. The blocks seem to work but the module does not show up in the Main Menu which I have

[JBoss-dev] [Nukes Development] - Re: Module started but not in Main Menu

2004-03-04 Thread thepriz
I have found an error in the log I missed it before. Here it is: 10:23:57,468 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean ope ration 'checkIncompleteDeployments()' Cause: Incomplete Deployment listing: Packages waiting for a deployer: Incompletely deployed packages:

[JBoss-dev] [Nukes Development] - Re: Module started but not in Main Menu

2004-03-04 Thread thepriz
Well, I figured it out. But the error message was not very helpfull. It was a misspelled depend. | jboss.j2ee:service=EJB,jndiName=nukes/kingpin/Repot | should have been | jboss.j2ee:service=EJB,jndiName=nukes/kingpin/Report | a

[JBoss-dev] [Nukes Development] - Re: Nukes 1.0

2004-03-04 Thread thepriz
I am also going to target the downloads module for 1.1. It is comming along really nicely. It is taking me longer than I thought to have the beta because I went back and changed it to use templates. I am hoping to have an alpha version soon. It should contain everything but security (still have

[JBoss-dev] [Nukes Development] - AdminMessage not working

2004-03-04 Thread thepriz
I am trying to use the new dymanic block feature of AdminMessages module but the block is not appearing in the list of available of blocks. Also without any security value it does not let you open the admin page. to add messages. I have added a permissions line and this now works. Any ideas on

[JBoss-dev] [Nukes Development] - MySql setup.ddl is broken

2004-03-02 Thread thepriz
the user table changed but the insert statements didn't get updated to reflect the changes. Here is what they should be I think | INSERT INTO nuke_users VALUES (1,'admin','2003-12-11 18:57:21.074',1,'Administrator','[EMAIL PROTECTED]','[EMAIL

[JBoss-dev] [Nukes Development] - Template Changes have broken clean build

2004-03-02 Thread thepriz
It seems that the nukes-template-sar.mf file is broken in the template module. At least when trying to build in my windows environment. The only difference between 1.1 and 1.2 is the whitespace. I am developing on a windows environment and it looks like the /r/n line ending has bitten me. I

[JBoss-dev] [Nukes Development] - Re: nested templates

2004-03-01 Thread thepriz
I guess this is an issue I should post in issues. I will create a module that demonstrates the problem and post it in the bug tracking database. I think it should be possable to do more than 1 level deep nested templates and get values to appear in the text. I tried to track it down myself but

[JBoss-dev] [Nukes Development] - Re: nested templates

2004-03-01 Thread thepriz
Just to finish this off. I posted a bug report and found that I was doing it wrong. !-- BEGIN main -- !-- BEGIN mainLoop -- !-- BEGIN mainNested -- {mainLoop.mainNested.MY_VARIABLE } !-- END mainNested -- !-- END mainLoop -- !-- END main -- Notice you have to include the first nested

[JBoss-dev] [Nukes Development] - Re: nested templates

2004-02-28 Thread thepriz
Thanks, I didn't notice the prefix (displayNewToDay.TEST_NEW_DOWNLOADS_IN_CATEGORY) in the tutorial. This fixed most of the problems I was having. However, I am still having problems with the nesting. Here is a snipit of the template: | !-- BEGIN displayDetails -- | | ... | | !--

[JBoss-dev] [Nukes Development] - nested templates

2004-02-27 Thread thepriz
How deep can the nesting go? | !-- BEGIN main -- | ... | !-- BEGIN downloadListLoop -- | ... | !-- BEGIN displayNewToDay -- | nbsp;img src=modules/downloads/images/new_1.gif alt={TEXT_NEW_DOWNLOADS_IN_CATEGORY_ADDED_TODAY}br | !-- END displayNewToDay -- | !-- END

[JBoss-dev] [Nukes Development] - Re: active developer soundoff

2004-02-26 Thread thepriz
I am working on a downloads module. I am also probably going to convert the faq and poll modules to use templates. I just converted the template module to use templates and I think this needs to be checked into cvs if we want new developers to use templates. If we do I will write an issue and

[JBoss-dev] [Nukes Development] - Re: Template Module using templates

2004-02-26 Thread thepriz
Ok, I will create an issue and post it. I am going to clean it up a little first. But I should have it posted by tonight sometime. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3823170#3823170 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: How do I get involved with helping create modules?

2004-02-24 Thread thepriz
Well, no one really answered this question so I went ahead and began porting the postnuke downloads module. I should have a beta version of the module finished by the end of this week (depending on the amount of time I have to work on it). I did the port like the faq and poll modules. I have

[JBoss-dev] [Nukes Development] - Re: How do I get involved with helping create modules?

2004-02-24 Thread thepriz
I know they are already ported. I used them to learn how to create modules for nukes. If they are not well designed what improvements do they need? I don't want to use the bad design in my downloads module. Thanks, Dennis Przybyla View the original post :

[JBoss-dev] [Nukes Development] - Composite Primary Key

2004-02-24 Thread thepriz
How do I create a XDoclet tag that will generate the code for a table with a composite primary key? Thanks, Dennis Przybyla View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3822738#3822738 Reply to the post :

[JBoss-dev] [Nukes Development] - Re: Installshield, commit done

2004-02-12 Thread thepriz
View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3821349#3821349 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3821349 Why are you not letting the EJB create the tables when it is deployed?