PDA

View Full Version : Templates


Django
02-07-2000, 02:05 AM
Most of my installs are very similar and use the same INI variables over and over. I'd like to ability to create a new project and then import a file containing INI variables and then import another file (or template) of shell operations that I commonly use.

So a feature where I could export/import just a part of a setup script would be very useful.

Django

Ted
02-08-2000, 12:52 AM
One way to do this is to create a project with all of your common commands and then simply load it in before working on a new project. It is then essentially a template.

Django
02-08-2000, 02:02 AM
That's what I'm doing now. Another way would be to let Runtime support configurations add any type of install element like INI variables or custom screens. That would serve the same purpose.

Django