Main > Free Download Search >

Free context dependent software for linux

context dependent

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 806
conTEXT 2k

conTEXT 2k


conTEXT is an amaroK script that looks for text or html files in the playing directory and inserts them in a new manageable box. more>>
conTEXT is an amaroK script that looks for text or html files in the playing directory and inserts them in a new manageable box into the context browser.
I hope you dont expect too much of a script thats named almost like a tab in amaroK but there already are some ideas to extend its functionality...
Usage:
Scrolling: Left-click an arrow to speed up. Right-click to jump a page up/down. You can also use standard konqueror controls: Shift+ArrowKeys for scrolling, Alt+Mousewheel for horizontal scrolling, Ctrl+Mousewheel for zooming.
Drag the lower box border to resize the box, drag the box header to change its position.
Enhancements:
- fixed fast scrolling for new khtml versions; fixed playlouder.com; fixed rollingstone display; fixed plattentests.de referenzen
<<less
Download (0.057MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
1496 downloads
Tk::ContextHelp 0.10

Tk::ContextHelp 0.10


Tk::ContextHelp is a context-sensitive help with perl/Tk. more>>
Tk::ContextHelp is a context-sensitive help with perl/Tk.

SYNOPSIS

use Tk::ContextHelp;

$ch = $top->ContextHelp;
$ch->attach($widget, -msg => ...);

$ch->HelpButton($top)->pack;

$ch2 = $top->ContextHelp(-podfile => "perlfaq");
$ch2->attach($widget2, -pod => description);

ContextHelp provides a context-sensitive help system. By activating the help system (either by clicking on a HelpButton or calling the activate method, the cursor changes to a left pointer with a question mark and the user may click on any widget in the window to get a help message or jump to the corresponding pod entry.

<<less
Download (0.010MB)
Added: 2006-10-28 License: Perl Artistic License Price:
1091 downloads
App::Context 0.964

App::Context 0.964


App::Context is an application framework for web applications, command-line programs, server programs, and web services. more>>
App::Context is an application framework for web applications, command-line programs, server programs, and web services.

This is the App-Context distribution.

For more information, see the web pages at

http://www.officevision.com/pub/App-Context

The mailing list is described at

http://p5ee.perl.org/mailinglist/

http://lists.perl.org/showlist.cgi?name=p5ee

HOW DO I INSTALL IT?

To install this module, cd to the directory that contains this README file and type the following:

perl Makefile.PL
make
make test
make install
<<less
Download (0.12MB)
Added: 2006-09-05 License: Perl Artistic License Price:
1144 downloads
PRECC eXtended 2.58

PRECC eXtended 2.58


PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. more>>
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. The generated code is ANSI C and ANSI C++; the code will compile and run native under either C or C++.
Specification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
<<less
Download (0.33MB)
Added: 2007-06-27 License: LGPL (GNU Lesser General Public License) Price:
849 downloads
Inspect Context 0.3

Inspect Context 0.3


Inspect Context is an extension which provides an open Dom Inspector at this node from Inspect on context menu. more>>
Inspect Context is an extension which provides an open Dom Inspector at this node from Inspect on context menu.

Open Dom Inspector at this node from Inspect on context menu. Dom Inspector must already be installed.

Handy for checking both page for web developers and chrome for extension developers.

<<less
Download (0.001MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
938 downloads
Perl6::Contexts 0.4

Perl6::Contexts 0.4


Perl6::Contexts - array and hash variables turn into references to themselves when used in non-numeric scalar context. more>>
Perl6::Contexts - array and hash variables turn into references to themselves when used in non-numeric scalar context or as function arguments.

SYNOPSIS

my @foo = ( 1 .. 20 );
my $foo = @foo; # same as: my $foo = @foo;
my $foo = 0 + @foo; # unchanged - length of @foo
$obj->some_method(10, 20, @foo); # same as: $obj->some_method(10, 20, @foo);
some_function(10, 20, @foo); # same as: some_function(10, 20, @foo);

Perl6::Contexts makes Perl 5 behave more like Perl 6 with regard to the array and hash variables as used as arguments to operators, method calls, and functions.

This module doesnt add new syntax -- it merely changes the meaning of existing syntax. Using this module to make Perl 5 more like Perl 6 wont go very far towards writing Perl 5 that will run under Perl 6 but it will help you get used to some of the changes.

To run legacy Perl 5 along side Perl 6, check out PONIE or Inline::Pugs.

<<less
Download (0.017MB)
Added: 2007-08-14 License: Perl Artistic License Price:
801 downloads
Contextual::Return 0.1.0

Contextual::Return 0.1.0


Contextual::Return is a Perl module to create context-senstive return values. more>>
Contextual::Return is a Perl module to create context-senstive return values.

SYNOPSIS

use Contextual::Return;
use Carp;

sub foo {
return
SCALAR { thirty-twelve }
BOOL { 1 }
NUM { 7*6 }
STR { forty-two }

LIST { 1,2,3 }

HASHREF { {name => foo, value => 99} }
ARRAYREF { [3,2,1] }

GLOBREF { *STDOUT }
CODEREF { croak "Dont use this result as code!"; }
;
}

# and later...

if (my $foo = foo()) {
for my $count (1..$foo) {
print "$count: $foo is:n"
. " array: @{$foo}n"
. " hash: $foo->{name} => $foo->{value}n"
;
}
print {$foo} $foo->();
}

Usually, when you need to create a subroutine that returns different values in different contexts (list, scalar, or void), you write something like:

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data,
# depending on call context...
if (wantarray()) {
return @server_data{ qw(name uptime load users) };
}
if (defined wantarray()) {
return $server_data{load};
}
if (!defined wantarray()) {
carp Useless use of get_server_status() in void context;
return;
}
else {
croak q{Bad context! No biscuit!};
}
}

That works okay, but the code could certainly be more readable. In its simplest usage, this module makes that code more readable by providing three subroutines--LIST(), SCALAR(), VOID()--that are true only when the current subroutine is called in the corresponding context:

use Contextual::Return;

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data
# depending on call context...
if (LIST) { return @server_data{ qw(name uptime load users) } }
if (SCALAR) { return $server_data{load} }
if (VOID) { print "$server_data{load}n" }
else { croak q{Bad context! No biscuit!} }
}

Contextual returns

Those three subroutines can also be used in another way: as labels on a series of contextual return blocks (collectively known as a context sequence). When a context sequence is returned, it automatically selects the appropriate contextual return block for the calling context. So the previous example could be written even more cleanly as:

use Contextual::Return;

sub get_server_status {
my ($server_ID) = @_;

# Acquire server data somehow...
my %server_data = _ascertain_server_status($server_ID);

# Return different components of that data
# depending on call context...
return (
LIST { return @server_data{ qw(name uptime load users) } }
SCALAR { return $server_data{load} }
VOID { print "$server_data{load}n" }
DEFAULT { croak q{Bad context! No biscuit!} }
);
}

The context sequence automatically selects the appropriate block for each call context.

<<less
Download (0.022MB)
Added: 2007-01-18 License: Perl Artistic License Price:
1009 downloads
Context Style Switcher 1.0.6

Context Style Switcher 1.0.6


Context Style Switcher allows you to change Page Style via context menu. more>>
Context Style Switcher allows you to change Page Style via context menu.

<<less
Download (0.002MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
DocBook to LaTeX/ConTeXt Publishing 0.2.6

DocBook to LaTeX/ConTeXt Publishing 0.2.6


DocBook to LaTeX/ConTeXt Publishing project is splitted in two instances working on the same principles. more>>
DocBook to LaTeX/ConTeXt Publishing project is splitted in two instances working on the same principles. Both instances are intended to produce DVI, PostScript, PDF documents from DocBook SGML or XML sources, by converting first to a high level set of TeX macros.

Even if close, each instance is provided as an independent package and works alone. The available instances are:

dblatex

Publishing is done by using LaTeX.

dbcontext

Publishing is done by using ConTeXt.
<<less
Download (0.64MB)
Added: 2007-06-26 License: LGPL (GNU Lesser General Public License) Price:
854 downloads
CoverPrint 1.4

CoverPrint 1.4


CoverPrint prints the current amaroK playlist to a CD cover using easily customizable SVG templates. more>>
CoverPrint prints the current amaroK playlist to a CD cover using easily customizable SVG templates.

Usage:

Run the script. No configuring is necessary. Rightclick in the playlist window and select Print CD Cover from the CoverPrint context menu.

<<less
Download (0.015MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
932 downloads
coComment! 2.0

coComment! 2.0


coComment! is a Firefox extension that allows you to activate coComment! from the right-click context menu. more>>
coComment! is a Firefox extension that allows you to activate coComment! from the right-click context menu and reduces your onscreen movement time so that you dont have to move all the way from the comment text box to the Bookmarks and then back to the Submit button.

<<less
Download (0.010MB)
Added: 2007-05-04 License: MPL (Mozilla Public License) Price:
903 downloads
Light Speed! 1

Light Speed! 1


Light Speed! project is an interactive relativistic simulator. more>>
Light Speed! project is an interactive relativistic simulator.
Light Speed! is an OpenGL-based program which illustrates the effects of special relativity on the appearance of moving objects.
When an object accelerates past a few million meters per second, these effects begin to grow noticeable, becoming more and more pronounced as the speed of light is approached.
These relativistic effects are viewpoint-dependent, and include shifts in length, object hue, brightness and shape.
Main features:
- Real-time interactive viewing
- 3D object importer
- Snapshot exporter
- Special Relativity Scene (SRS) exporter
- Reference geometry
- Independent toggles for the four relativistic effects
- Numerical camera location + target readout and input
- Switchable background color
<<less
Download (0.008MB)
Added: 2006-10-16 License: LGPL (GNU Lesser General Public License) Price:
1112 downloads
SourceEditor 0.2

SourceEditor 0.2


SourceEditor allows you to view and Edit source of HTML element. more>>
SourceEditor allows you to view and Edit source of HTML element.

View and Edit source of HTML element.

Use the button on status bar to activate/desactivate and the double click or the context menu to edit source of the selected element

<<less
Download (0.014MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
930 downloads
CDcover XMMS Plugin 0.2

CDcover XMMS Plugin 0.2


CDcover XMMS Plugin displays a graphic dependent on the currently played song. more>>
CDcover XMMS Plugin displays a graphic dependent on the currently played song.
Normal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
<<less
Download (0.23MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1291 downloads
Amarok Video Player 0.1

Amarok Video Player 0.1


Amarok Video Player adds a PlayVideo/Play menu item to the context menu which runs KMPlayer. more>>
I like using Amarok for managing my podcasts but I wasnt able to play my video podcasts.

Amarok Video Player adds a PlayVideo/Play menu item to the context menu which runs KMPlayer.

Edit the script to change KMplayer to another video player.

<<less
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1271 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5