SMI 0.9.9t (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SMI 0.9.9t (Default branch)
# 1  
Old 03-07-2009
SMI 0.9.9t (Default branch)

ImageSMI (Services Maintenance Interventions) is acomplete free solution to manage services andtechnical support to customers with frontofficeand backoffice modules. It can manage contracts,asset tracking, repair orders, working time,rentals, tasks, subcontractors, and has many otherfunctionalities.License: GNU General Public License (GPL)Changes:
Work orders for subcontractors can now be "free" (i.e. not attached to a repair sheet). Customers can be grouped under a single account to allow just one code/password to follow multiple accounts. Times entered can be indexed depending on the hour of work (useful for works made out of normal working hours in a contract). Some Internet Explorer bugs were corrected.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Mojo::Asset(3pm)					User Contributed Perl Documentation					  Mojo::Asset(3pm)

NAME
Mojo::Asset - HTTP 1.1 content storage base class SYNOPSIS
use Mojo::Base 'Mojo::Asset'; DESCRIPTION
Mojo::Asset is an abstract base class for HTTP 1.1 content storage. ATTRIBUTES
Mojo::Asset implements the following attributes. "end_range" my $end = $asset->end_range; $asset = $asset->end_range(8); Pretend file ends earlier. "start_range" my $start = $asset->start_range; $asset = $asset->start_range(0); Pretend file starts later. METHODS
Mojo::Asset inherits all methods from Mojo::EventEmitter and implements the following new ones. "add_chunk" $asset = $asset->add_chunk('foo bar baz'); Add chunk of data to asset, meant to be overloaded in a subclass. "contains" my $position = $asset->contains('bar'); Check if asset contains a specific string, meant to be overloaded in a subclass. "get_chunk" my $chunk = $asset->get_chunk($offset); Get chunk of data starting from a specific position, meant to be overloaded in a subclass. "is_file" my $false = $asset->is_file; False. "move_to" $asset = $asset->move_to('/home/sri/foo.txt'); Move asset data into a specific file, meant to be overloaded in a subclass. "size" my $size = $asset->size; Size of asset data in bytes, meant to be overloaded in a subclass. "slurp" my $string = $asset->slurp; Read all asset data at once. Meant to be overloaded in a subclass. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Asset(3pm)