Unix and Linux Discussions Tagged with beginner |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
9,725 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,082 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
49,035 |
Solaris |
|
|
|
1 |
5,162 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,298 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
3,864 |
Programming |
|
|
|
1 |
2,844 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,636 |
Shell Programming and Scripting |
|
|
|
2 |
1,574 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,995 |
Programming |
|
|
|
3 |
2,910 |
Shell Programming and Scripting |
|
|
|
2 |
5,589 |
Shell Programming and Scripting |
|
|
|
2 |
3,228 |
AIX |
|
|
|
6 |
3,568 |
UNIX Desktop Questions & Answers |
|
|
|
2 |
4,080 |
Programming |
|
|
|
1 |
3,005 |
Programming |
|
|
|
4 |
2,534 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,960 |
Linux |
|
|
|
2 |
10,857 |
Shell Programming and Scripting |
|
|
|
3 |
3,647 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,203 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,464 |
Solaris |
|
|
|
0 |
7,020 |
Shell Programming and Scripting |
|
|
|
3 |
2,619 |
Shell Programming and Scripting |
|
|
|
14 |
20,172 |
UNIX Desktop Questions & Answers |
|
|
|
0 |
3,624 |
Oracle Updates (RSS) |
|
|
|
7 |
4,834 |
Shell Programming and Scripting |
|
|
|
0 |
1,549 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,158 |
Shell Programming and Scripting |
|
|
|
2 |
2,947 |
Shell Programming and Scripting |
|
|
|
5 |
2,201 |
Shell Programming and Scripting |
|
|
|
2 |
5,566 |
Programming |
|
|
|
3 |
3,331 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
29,245 |
Programming |
|
|
|
1 |
3,154 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,099 |
Programming |
|
|
|
4 |
3,719 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
16,726 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,359 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,407 |
UNIX for Dummies Questions & Answers |
Config::Model::CursesUI(3pm) User Contributed Perl Documentation Config::Model::CursesUI(3pm)
NAME
Config::Model::CursesUI - Curses interface to edit config data
SYNOPSIS
use Config::Model ;
use Config::Model::CursesUI ;
my $model = Config::Model -> new ;
my $inst = $model->instance (root_class_name => 'XXX',
instance_name => 'yyy');
# create dialog
my $dialog = Config::Model::CursesUI-> new
(
experience => 'beginner', # or 'advanced'
) ;
# start never returns
$dialog->start($model) ;
DESCRIPTION
This class provides a Curses::UI interface to configuration data managed by Config::Model.
IMPORTANT: Once the CursesUI object is created, STDOUT and STDERR are managed by the Curses interface, so all print and warn will not work
as expected.
CONSTRUCTOR
The constructor accepts the following parameters:
experience
Specifies the experience level of the user (default: "beginner"). The experience can be "master advanced beginner".
load
Subroutine ref containing the code to load the configuration data from the configuration files. This may overrides loading mechanism
specified in the model with Config::Model::AutoRead. This sub is called without any arguments.
store
Subroutine ref containing the code to store the configuration data in the configuration files. This may overrides writing mechanism
specified in the model with Config::Model::AutoRead. This sub is called without any arguments.
AUTHOR
Dominique Dumont, (ddumont at cpan dot org)
LICENSE
Copyright (c) 2007-2009,2011 Dominique Dumont.
This file is part of Config-Model.
Config-Model is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser Public License as
published by the Free Software Foundation; either version 2.1 of
the License, or (at your option) any later version.
Config-Model is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser Public License for more details.
You should have received a copy of the GNU Lesser Public License
along with Config-Model; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
SEE ALSO
Config::Model, Config::Model::ObjTreeScanner, Curses::UI, Curses
perl v5.10.1 2011-03-04 Config::Model::CursesUI(3pm)