Ports Search

Results 5,7915,800 of 5,824 for /net/.(0.005 seconds)
devel/HTML_Select_Common-1.2.0 (Score: 0.009935555)
Some small PEAR classes to handle common <select> lists
Provides <select> lists for: o Country o UK counties o US States o FR Departments
devel/HTML_Template_Sigma-1.3.0 (Score: 0.009935555)
PEAR template API
HTML_Template_Sigma implements Integrated Templates API designed by Ulf Wendel. Features: * Nested blocks. Nesting is controlled by the engine. * Ability to include files from within template: <!-- INCLUDE --> * Automatic removal of empty blocks and unknown variables (methods to manually tweak/override this are also available) * Methods for runtime addition and replacement of blocks in templates * Ability to insert simple function calls into templates: func_uppercase('Hello world!') and to define callback functions for these * 'Compiled' templates: the engine has to parse a template file using regular expressions to find all the blocks and variable placeholders. This is a very "expensive" operation and is an overkill to do on every page request: templates seldom change on production websites. Thus this feature: an internal representation of the template structure is saved into a file and this file gets loaded instead of the source one on subsequent requests (unless the source changes) * PHPUnit-based tests to define correct behaviour * Usage examples for most of the features are available, look in the docs/ directory
finance/jgnash-2.21.0 (Score: 0.009935555)
Free personal finance manager
jGnash is a free (no strings attached!) personal finance manager with many of the same features as commercially-available software. It was created in order to make tracking your personal finances easy, but also provides the functionality required by advanced users.
games/sxsame-3.02 (Score: 0.009935555)
Tile-removing puzzle game for the X Window system
sxsame -- a game of removing tiles,for X Window system Goal of this game is removing more tiles as you can and get much score. You can remove two or more tiles with same color,neibouring vertical or horizontal.
net-mgmt/ng_ipacct-20150304 (Score: 0.009935555)
Netgraph IP accounting
The ng_ipacct is Netgraph IP accounting node intended to gather IP traffic informations. IP accounting is collected in both simple and extended modes. Output format is similar to the one used in Cisco IOS (command "show ip accounting"). In simple mode output format is: ip_from ip_to packets bytes and in verbose mode: ip_from s_port ip_to d_port proto packets bytes Also, effective user ID of relevant process and timestamp can be saved. CPU overhead is minimal because ng_ipacct works at kernel level.
sysutils/dt-17.07 (Score: 0.009935555)
Data Test Program - disk/tape error diagnostic tool
dt is a generic data test program used to verify proper operation of peripherals, file systems, device drivers, or any data stream supported by the operating system. In its simplest mode of operation, dt writes and then verifies its default data pattern, then displays performance statistics and other test parameters before exiting. Since verification of data is performed, dt can be thought of as a generic diagnostic tool. dt has been used to successfully test disks, tapes, serial lines, parallel lines, pipes, and memory mapped files. In fact, dt can be used for any device that allows the standard open, read, write, and close system calls. Special support is necessary for some devices, such as serial lines, for setting up the speed, parity, data bits, etc.
www/asterisk-stat-2.0.1 (Score: 0.009935555)
ASTERISK call detail records analyzer
Asterisk-Stat is providing different reports & Graph to allow the Asterisk-admin to analyse quickly and easily the traffic on their Asterisk server. All the graphic & reports are based over the CDR database.
archivers/unshield-0.6 (Score: 0.008901961)
Extract data from InstallShield CAB files
An installer created by the InstallShield software stores the files it will install inside of InstallShield Cabinet Files. It would thus be desirable to be able to extract the Microsoft Cabinet Files from the InstallShield Cabinet Files in order to be able to install the applications without access to Microsoft Windows. - Use a well known open source license (MIT) - Work on both little-endian and big-endian systems - Separate the implementation in a tool and a library - Support InstallShield versions 5 and later - Be able to list contents of InstallShield Cabinet Files - Be able to extract files from InstallShield Cabinet Files SVN: https://synce.svn.sourceforge.net/svnroot/synce/trunk/unshield/ http://www.synce.org/moin/ComponentOverview
databases/spatialite-tools-4.3.0 (Score: 0.008901961)
Collection of CLI tools supporting SpatiaLite
spatialite-tools is a collection of open source Command Line Interface (CLI) tools supporting SpatiaLite. * spatialite: a complete CLI front-end, more or less equivalent to the well known sqlite3 front-end, but fully supporting SpatiaLite * spatialite_tool: a tool supporting import/export of Shapefiles and DBF-files * shp_doctor: a diagnostic tool to check anomalous shapefiles * exif_loader: an import tool for EXIF or EXIF-GPS (JPEG) pictures * spatialite_network: a tool creating a VirtualNetwork (supporting shortest path / routing SQL queries) * spatialite_gml: a tool importing GML files * spatialite_convert: a tool converting DB-files from different versions of SpatiaLite * spatialite_dxf: an tool importing DXF files * OSM-tools: spatialite_osm_raw, spatialite_osm_filter, spatialite_osm_map, spatialite_osm_net, spatialite_osm_overpass: tools supporting OpenStreetMap datasets * XML-tools: spatialite_xml_load, spatialite_xml_collapse, spatialite_xml_print, spatialite_xml_validator: tools supporting XML files processing
devel/App-Cache-0.37 (Score: 0.008901961)
Easy application-level caching
The App::Cache module lets an application cache data locally. There are a few times an application would need to cache data: when it is retrieving information from the network or when it has to complete a large calculation. For example, the Parse::BACKPAN::Packages module downloads a file off the net and parses it, creating a data structure. Only then can it actually provide any useful information for the programmer. Parse::BACKPAN::Packages uses App::Cache to cache both the file download and data structures, providing much faster use when the data is cached. This module stores data in the home directory of the user, in a dot directory. For example, the Parse::BACKPAN::Packages cache is actually stored underneath "~/.parse_backpan_packages/cache/". This is so that permissions are not a problem - it is a per-user, per-application cache.