e2 elements 1.2.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News e2 elements 1.2.0 (Default branch)
# 1  
Old 08-26-2008
e2 elements 1.2.0 (Default branch)

e2 elements is a flexible and modular applicationdevelopment framework optimized for embeddedsystems. Through a component-based architectureand the strict separation of implementation andinterface, the framework encourages reuse andimproves backwards compatibility. It is portableover a wide range of environments, but with lowmemory footprint and an emphasis on simplicity. Itis particularly well-suited for constrainedenvironments like uCLinux. Dynamic loading ofcomponents and statically-linked applications arepossible. License: GNU Lesser General Public License (LGPL)Changes:
In addition to many bugfixes, the framework hasbeen streamlined and cleaned up. Furthermore, thecore API has been extended to allow instantiatingcomponents by interface, multiple module map filescan be loaded, and debugging output has beenimproved.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl : to get the no. of elements from DataDumper

Hello Folks, I have a DataDumper variable and the output of the dataDumper is printed in the below manner. print Dumper \%mnemonics; VAR1 = { 'SYS-7-CLI_SCHEDULER_LOG_STORED' => , 'CRYPTO-6-IKMP_MODE_FAILURE' => , 'AAAA-4-SERVUNDEF' => , ... (1 Reply)
Discussion started by: scriptscript
1 Replies

2. Shell Programming and Scripting

Grouping array elements - possible?

I have a script which takes backup of some configuration files on my server. It does that by using an array which contains the complete path to the files to backup. It copys the files to a pre defined dir. Each "program" has it's own folder, ex. apache.conf is being copied to /predefined... (7 Replies)
Discussion started by: dnn
7 Replies

3. Shell Programming and Scripting

Removing elements from an array

Hi I have two arrays : @arcb= (450,625,720,645); @arca=(625,645); I need to remove the elements of @arca from elements of @arcb so that the content of @arcb will be (450,720). Can anyone sugget me how to perform this operation? The code I have used is this : my @arcb=... (3 Replies)
Discussion started by: rkrish
3 Replies

4. UNIX for Dummies Questions & Answers

printing array elements

Is there a way to print multiple array elements without iterating through the array using bash? Can you do something like... echo ${array}and get all those separate elements from the array? (2 Replies)
Discussion started by: jrymer
2 Replies

5. Shell Programming and Scripting

Get number of elements in a list

Hi all I would like to know the number of elements in a list. $list=`ls xyz*` I want to get the number of files xyz* in the folder. Anybody please help!!! (5 Replies)
Discussion started by: VidyaVenugopal
5 Replies

6. IP Networking

testing network elements

for testing network elements which of the below is TRUE a)Thorough understanding of RFC s/ IETF standards is enough. b)One has to know design specifications along with standards and specification. c)Understanding customer requirements is required for acceptance test only and not for... (0 Replies)
Discussion started by: venkatadilip
0 Replies

7. UNIX for Dummies Questions & Answers

Deleting Array Elements

Hi, I am writing a BASH shell script. I have an array that will contain IN ANY ORDER the following elements: DAY 8D MO NS. I would like to erase the element DAY, but since the order of the elements in the array are random, I will not know which element # DAY is (ie it's not as simple as... (3 Replies)
Discussion started by: msb65
3 Replies

8. Shell Programming and Scripting

How to extract elements using Awk

Hi, I have this typical extraction problem in AWK. I have 3 input files.. i) First one is somehow like an oracle of:- foo 12,23,24 bla 11,34 car 35 ii)Second file is basically detailing the score for each of the second field of first file. Besides, for the first column, it is the... (3 Replies)
Discussion started by: ahjiefreak
3 Replies

9. Shell Programming and Scripting

just want certail elements

I just want to be able to take every 6 value out of an arrays can someone tell me what i'm doing wrong? the data looks like 1500680,Treverbyn,397,1,2136,4420 and i want the 2 element treverbyn out of every row #hour0.pl my $url = 'http://en19.tribalwars.net/map/tribe.txt'; use... (1 Reply)
Discussion started by: frenchface
1 Replies
Login or Register to Ask a Question
HTML::Widget::Element::Block(3pm)			User Contributed Perl Documentation			 HTML::Widget::Element::Block(3pm)

NAME
HTML::Widget::Element::Block - Block Level Element SYNOPSIS
my $e = $widget->element( 'Block', 'div' ); $e->value('bar'); DESCRIPTION
Block Level Element. Base class for HTML::Widget::Element::Fieldset METHODS
new Returns a new Block element. Not usually required, use $widget->element() or $block->element() to create a new Block element within an existing widget or element. type Default value is div, to create a <div> container. Can be changed to create a tag of any type. element Add a new element, nested within this Block. See "element" in HTML::Widget for full documentation. push_content Add previously-created elements to the end of this block's elements. unshift_content Add previously-created elements to the start of this block's elements. block_container Creates a new block container object of type $self->block_container_class. Defaults to HTML::Widget::BlockContainer. block_container_class Sets the class to be used by $self->block_container. Can be called as a class or instance method. containerize Containerize the block and all its contained elements for later rendering. Uses HTML::Widget::BlockContainer by default, but this can be over-ridden on a class or instance basis via block_container_class. get_elements my @elements = $self->get_elements; my @elements = $self->get_elements( type => 'Textfield' ); my @elements = $self->get_elements( name => 'username' ); Returns a list of all elements added to the widget. If a 'type' argument is given, only returns the elements of that type. If a 'name' argument is given, only returns the elements with that name. get_element my $element = $self->get_element; my $element = $self->get_element( type => 'Textfield' ); my $element = $self->get_element( name => 'username' ); Similar to get_elements(), but only returns the first element in the list. Accepts the same arguments as get_elements(). find_elements Similar to get_elements(), and has the same alternate forms, but performs a recursive search through itself and child elements. SEE ALSO
HTML::Widget::Element AUTHOR
Michael Gray, "mjg@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2007-03-01 HTML::Widget::Element::Block(3pm)