AVR Eclipse Plugin 2.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News AVR Eclipse Plugin 2.3 (Default branch)
# 1  
Old 12-03-2008
AVR Eclipse Plugin 2.3 (Default branch)

Image The AVR Eclipse Plugin is a multi-platform plugin for the powerful Eclipse IDE, and supports the development of applications for the Atmel AVR series of 8-bit embedded microcontrollers. It integrates the avr-gcc toolchain in Eclipse, and has many features to make life for the AVR developer easier. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

issue with installing ADT plugin to eclipse

Hi all, I have installed android SDK in my ubuntu machine and tried to install ADT plugin to eclipse by following the instructions given in the official website. Since I was unable to add the site: dl-ssl.google.com/android/eclipse to that install software dialog box in eclipse, I manually... (0 Replies)
Discussion started by: saranya43
0 Replies

2. Programming

Eclipse plugin to create class diagrams

Hi Guys, I wonder if anyone is aware of a eclipse plugin that I can use to create class diagrams. Thanks!!. (1 Reply)
Discussion started by: arizah
1 Replies
Login or Register to Ask a Question
Mojolicious::Plugin::I18N(3pm)				User Contributed Perl Documentation			    Mojolicious::Plugin::I18N(3pm)

NAME
Mojolicious::Plugin::I18N - Internationalization plugin SYNOPSIS
# Mojolicious $self->plugin('I18N'); % languages 'de'; %=l 'hello' # Mojolicious::Lite plugin I18N => {namespace => 'MyApp::I18N'}; %=l 'hello' # Lexicon package MyApp::I18N::de; use Mojo::Base 'MyApp::I18N'; our %Lexicon = (hello => 'hallo'); 1; DESCRIPTION
Mojolicious::Plugin::I18N adds Locale::Maketext support to Mojolicious. All you have to do besides using this plugin is to add as many lexicon classes as you need. Languages can usually be detected automatically from the "Accept-Languages" request header. This plugin can save a lot of typing, since it will generate the following code by default. # $self->plugin('I18N'); package MyApp::I18N; use base 'Locale::Maketext'; package MyApp::I18N::en; use base 'MyApp::I18N'; our %Lexicon = (_AUTO => 1); 1; Namespace and default language of generated code are affected by their respective options. The default lexicon class will only be generated if it doesn't already exist. The code of this plugin is a good example for learning to build new plugins, you're welcome to fork it. OPTIONS
Mojolicious::Plugin::I18N supports the following options. "default" # Mojolicious::Lite plugin I18N => {default => 'en'}; Default language, defaults to "en". "namespace" # Mojolicious::Lite plugin I18N => {namespace => 'MyApp::I18N'}; Lexicon namespace, defaults to the application class followed by "::I18N". HELPERS
Mojolicious::Plugin::I18N implements the following helpers. "l" %=l 'hello' $self->l('hello'); Translate sentence. "languages" % languages 'de'; $self->languages('de'); Change languages. METHODS
Mojolicious::Plugin::I18N inherits all methods from Mojolicious::Plugin and implements the following new ones. "register" $plugin->register($app, $conf); Register plugin hooks and helpers in Mojolicious application. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojolicious::Plugin::I18N(3pm)