I am able to see the turbine_permission table now. Happy to see that it has the permission listed there. But, I am wondering if changing the names will do any good as they are not displayed in alphabetical order anyway. Also, order of display is not based on permission_id. Any further suggestions? I'd guess that it is something to do with the array $action that retrieves data from this table.
PERMISSION_ID PERMISSION_NAME OBJECTDATA ------------- --------------- ---------- 1 view (null) 2 customize (null) 3 maximize (null) 4 minimize (null) 5 print (null) 6 info (null) 7 close (null) 7 row(s) in 0 ms _________________________ Manish Kumar Project Manager Infosys Technologies Ltd. Tel: (408) 853-2346 Bldg - J, San Jose. _________________________ -----Original Message----- From: Dmitry Sklyut [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 10:43 AM To: 'Jetspeed Users List' Subject: RE: How to configure order of action buttons? Jetspeed comes bundled with hssql.jar (Hypersonic SQL). Take a look in there. I think there is a managment console to it. I just don't remember where exactly it is bundled. But that is just a location of the permissions available in the system. These are the options that you see when you login as admin in the permission portlet. Dmitry -----Original Message----- From: Manish Kumar [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 1:37 PM To: 'Jetspeed Users List' Subject: RE: How to configure order of action buttons? Hi Dmitry, Frankly speaking, I don't even have a DB setup. I have got lots of files (mostly *.VM and *.XREG). I scanned my file folders for "TURBINE_PERMISSION" and all I got is create-oracle-db.sql. So, is there something that I am missing? It would be great is you can give me some more detail Hi Stuart, As per your recommendation, do I need to create a new CSS file? Will appreciate if you can let me know what exactly I have to do? Thanks for your help, Manish. -----Original Message----- From: Dmitry Sklyut [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 9:29 AM To: 'Jetspeed Users List' Subject: RE: How to configure order of action buttons? All of the possible actions are specified in the TURBINE_PERMISSION table. Each one of those things has an image with the same name. So you can change the name of the action to someting like "zclose" and change the name of the image to zclose.gif. That is one way. The other would be to put one more if check in that line to check for the "close" and print it last. Dmitry -----Original Message----- From: Manish Kumar [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 12:26 PM To: 'Jetspeed Users List' Subject: RE: How to configure order of action buttons? Yes, I figured out that this is the code piece which is placing the action icons. My question is how to change the order of elements in the array $actions. -----Original Message----- From: Dmitry Sklyut [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 6:59 AM To: 'Jetspeed Users List' Subject: RE: How to configure order of action buttons? look in templates/vm/controls/html/jetspeed.vm #foreach ( $action in $actions ) <a href="${action.Link}" title="${action.Name}" ><img src="${skin.getImage($action.Name,"images/${action.Name}.gif")}" alt="${action.Alt}" border="0"></a> #end -----Original Message----- From: Manish Kumar [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 2:50 AM To: [EMAIL PROTECTED] Subject: How to configure order of action buttons? Pls let me know how can I configure the sequence (left to right) in which action buttons appear on the title bar of a given portlet. Is it possible? I am trying to put the close button in the right most space. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
