Main > Free Download Search >

Free portmaster 2 software for linux

portmaster 2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6435
RAS::PortMaster 1.16

RAS::PortMaster 1.16


RAS::PortMaster.pm is a Perl Interface to Livingston PortMaster 2. more>>
RAS::PortMaster.pm is a Perl Interface to Livingston PortMaster 2.

SYNOPSIS

RAS::PortMaster is a PERL 5 module for interfacing with a Livingston PortMaster remote access server. Using this module, one can very easily construct programs to find a particular user in a bank of PMs, disconnect users, get usage statistics, or execute arbitrary commands on a PM.

<<less
Download (0.006MB)
Added: 2007-04-18 License: Public Domain Price:
920 downloads
SportStat 0.2.2

SportStat 0.2.2


SportStat is a web based application for the recording and analysis of sports statistics. more>>
SportStat is a web based application for the recording and analysis of sports statistics.
SportStat project was designed to be used by high school teams and athletic departments. Because of this, it is (and unless plans change, will remain) home team centered.
This means that while the program can track your results against other teams, it will not track other teams against each other.
Enhancements:
- The init code was reorganized.
- Better filtering was added in phpMyEdit.
- A better install system was added for the example data.
- Custom queries can be logged.
- Formatting of the reports was improved.
- Numerous bugfixes were made.
<<less
Download (0.054MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1395 downloads
Pieforms 0.2.2

Pieforms 0.2.2


Pieforms project provides a simple, unified way to create, validate and process forms. more>>
Pieforms project provides a simple, unified way to create, validate and process forms all with a common look and feel, with support for pluggable elements, renderers and validation rules.

Huh? What does all that mean?

In simple terms, Pieforms provides a library for building HTML forms. So rather than writing all that HTML yourself for building forms, handling the validation and processing of them in whatever messy, inconsistent way youre doing it currently, you simply define a big hash in your script that describes your form. Pieforms does all of the legwork involved with building the form HTML from this hash (using elements and renderers), and also handles the validation of input using rules. In the general case, after youve defined you form, all you need to do is write a callback function that gets called when the form has been submitted with the data valid according to the rules.

Sounds interesting! Show me an example...

Okay, so youre writing a simple form that has a standard < input type="text" > and a textarea on it, with a submit button. Youd write a script similar to the following:

require_once(pieform.php);
$form = array(
name => myform,
method => get,
elements => array(
text => array(
type => text,
title => Text Element,
description => A little text box for you
rules => array(
required => true
)
),
textarea => array(
type => textarea,
title => Textarea,
defaultvalue => Some default text for the textarea,
rows => 7,
cols => 50
),
submit => array(
type => submit,
value => Submit form!
)
)
);

echo pieform($form);

function myform_submit($values) {
echo "Your submitted values:< br >";
foreach ($values as $key => $value) {
echo "$key: $value< br> ";
}
}

You see how easy that is? You didnt have to write any HTML - in fact, the entire definition is in PHP, which means if you make mistakes theyll show up as parse errors, rather than HTML validity errors (which are generally less often checked for). You only called one function to have everything done for you. And you can write a function to handle submission, full well knowing that the text element will always have a value that isnt the empty string.

After that, the submnit function is almost academic. You just save whatever you want to the database or whatever, and then the last thing you should do is redirect the user somewhere, perhaps to the same page or perhaps elsewhere.

For AJAX forms, all you have to do is add ajaxpost => true in the $form array, and then make your submit function output JSON in the form {error: [false or true], message: some message}, and then exit. Pieforms includes an implementation of json_encode for your convenience.

Okay, that looks easy! What else can it do?

The best part is that the elements, renderers and rules for your forms are pluggable. For example, you could write a wysiwyg element which behaves like the textarea one, but also includes javascript necessary to turn the textarea into a full WYSIWYG editor. Or you could write an element with two select boxes, arrows to move items left and right, and AJAX searching of the boxes. The possibilities are limitless! You can also write your own rules for reuse later (and change how elements respond to those rules if necessary), and write your own renderers (which handle the HTML surrounding the elements), so you can do things like add a little help icon next to each element with a link to a page explaining how the element works.

<<less
Download (MB)
Added: 2007-04-09 License: GPL (GNU General Public License) Price:
929 downloads
GnoTime 2.2.2

GnoTime 2.2.2


GnoTime provides a to-do list organizer and project timer. more>>
GnoTime provides a to-do list organizer and project timer.
GnoTime is a to-do list tracker and project timer with a built-in invoice generator. It allows users to keep track of how much time they have spent working on particular tasks, maintain a diary of that work, and create invoices with task-specific billing fees and rates.
Main features:
- Multiple To-Do Lists that can be sorted by the priority/importance of the tasks in the list. The to-do items can be organized into categories, arranged in a hierarchical way. This makes it easy to maintain both business and personal items in the list, or handle many different projects, while keeping them separate from each other.
- A pair of Diary/Journal areas that can be used to keep long and detailed notes and diary entries. The project description area allows a multi-paragraph description or status to be typed in. The diary area allows day-to-day notes to be associated with a set of timestamps, so that one has a record of what one did on any given day.
- A Running Timer, with time totals, for each project/task. One starts the timer by clicking on a task: it will measure the amount of time that you are in front of the computer. If it detects that the keyboard/mouse are idle, it will stop the clock. If the clock stays stopped too long, it will nag you to start it up again. You can view time totals by day, week, month or year.
- A Billing Status dialog for each diary entry. You can mark any given diary entry as bill-able/non-bill-able, paid or pending, and set the billing rate. Each project can also be marked up with a set of project-planning information: planed start, end and due dates, hours to finish, percent-complete. This is in addition to assigning an urgency/importance to each project, as well as a status (completed/in-progress not-started/canceled).
- A half-dozen different HTML Reports that can slice and dice your lists. Theres a Journal report that shows all of the diary entries for one given project. Theres an Invoice report that summarizes the time spent on each entry, and computes a dollar amount for it. Theres a Status Report that prints the title of each project, together with the paragraph-long descriptions of each. Theres a ToDo report, which prints only the project title, the importance/urgency, and the completed/in-progress/not-started status. The Daily report summarizes the total time spent on a day-by-day basis, and lists each of the projects that were worked on in a given day. Each of these reports can be customized. And, because theyre HTML, you can even publish them as web pages. (Yes, Ive thought of using GnoTime as a weblog management/publishing tool).
Enhancements:
- Build against QOF version 0.6.0, if available.
- Fix issue where yelp doesnt display an entry for gnotime when browsing because it doesnt recognize the entry
- Fix sourceforge bug [ 799077 ] projects blanked when first time user tries to sort
- fix broken leap-year calculation, leading to bugs sourceforge bugs [ 983408 ] and [ 1114205 ]
- Fix crash due to hoverhelp timer popping after a report window is closed.
- Change activity report to display date/time in two distinct html table columns (prettier alignment)
- Bug fix: sourceforge bug report fixed [ 877193 ] toolbar wont go to/stay in text-only mode
- Bug fix: editing time brings up wrong report
- fedora .spec file is out of date and rpm cannot build rpm
- Fix bug involving copy of old gnotime files to a new machine on which gnotime has never been run before.
- Fix sourceforge bug [ 1276458 ] "Empty" appears in diary entry
- Apply sourceforge patch 1176719 Extensible fix for gtkhtml3 building
- Apply 1171394 Adds separate timeout for "No Project" dialog
- Apply sourceforge patch 085911 Add "-" value for status field
- Apply sourceforge patch 074658 Add wordwrapping to diary entry boxes
- Apply sourceforge patch 1074458 Fix a crash when invoking help
- Apply sourceforge patch 1038701 Fix to Activity item in popup menu
- Apply sourceforge patch 1027582 Build system update for qof inclusion
- Fix idle time so that it works with Linux 2.6 kernel /proc/interrupts
- use %e to see the estimated sizing of a project in the logfiles
- Apply new pt_BR translation from Goedson Teixeira Paixao
- Fix for Debian Bug #250776, change widget visibility in the edit interval dialog
<<less
Download (1.3MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
983 downloads
Ignorance 2.2

Ignorance 2.2


Ignorance is a flexible, powerful content filtering plugin for Gaim. more>>
Ignorance is a content filtering plugin for Gaim. If you love Gaim for chat, but find yourself missing the filtering features of clients like zinc, then Ignorance is for you!

<<less
Download (0.22MB)
Added: 2005-10-21 License: GPL (GNU General Public License) Price:
1463 downloads
mojoPortal 2.2.2.8

mojoPortal 2.2.2.8


mojoPortal project is an Object Oriented web site framework. more>>
mojoPortal project is an Object Oriented web site framework written in C# that runs under ASP.NET on Windows or under mono on GNU/Linux or Mac OS X.
Main features:
- Runs under Windows/IIS or mono/Apache with most GNU/Linux distributions or Mac OS X
- Works with MS SQL Server, MySQL, or PostgreSQL databases
- Host multiple sites on 1 installation and db with host names
- Content Management with support for work flow and approval/publishing process
- Enter content with the FCKeditor HTML WYSIWYG
- Blogs
- Forums
- Image Gallery
- RSS Feed Aggregator
- Event Calendar
- Contact Form
- File Manager - use with caution, provides direct access to the server file system.
- Shared Files module - looks and acts like the File Manager module but stores and manages files in a safe way on the server. Folders are really database items as are the friendly file names. Files are stored securely in a special folder and named using guid strings and a .config extension. This prevents them from being requested or served with a normal http request. Authorized users can download because the module serves them using Response.WriteFile. The module also supports versioning of files.
- User Profile Page
- Member List Page
- Bread Crumbs
- Custom Skinning based on Paul Wilsons MasterPages with support for user selectable skins and individual skins per page
- Dynamic HTML Cross Browser Menu using Scott Mitchells skmMenu
- Localization - all labels and image alt text comes from a configuration file
- Configurable Whether to Encrypt Passwords
- Configurable Whether Registration requires e-mail confirmation
- Configure use of SSL for the whole Site or per Page
- Send Password Feature (when not using encryption)
- Url Re-writing for mapping friendly Urls to site pages
- Site Search with Role based filtering
- Error logging and optional debug logging
mojoPortal is being developed/managed by Joe Audette, MCSD, MCDBA, MCSE, I named it after my dog Mojo.
Enhancements:
- mojoPortal 2.x now works on Mono, so mojoPortal 1.x is being retired.
- New features include multi-site support based on folders or host names.
- The editor provider model has support for both FCKeditor and TinyMCE.
- This release has improved markup semantics and CSS organization.
<<less
Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
861 downloads
OTRS 2.2.2

OTRS 2.2.2


OTRS is a Ticket Request System with many features. more>> <<less
Download (12.4MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
813 downloads
PowerPhlogger 2.2.5

PowerPhlogger 2.2.5


PowerPhlogger is a counter hosting and website statistics tool. more>>
PowerPhlogger is a counter hosting and website statistics tool. It lets you offer counter service to others from your site. PowerPhlogger is built on PHP and requires a the MySQL database server.
Your members dont need any PHP-support on their webserver. They just pass the required data through JavaScript to PPhlogger that is hosted on your server.
Currently development of Phlogger3, the future version of PowerPhlogger, is still going on and its source has not yet been opened to public.
This future version will be based on the Sourdough framework and will support various different database systems as backend. It will be a whole rewrite of the existing PowerPhlogger code.
Main features:
Logging:
- user sign-up page that allows users to create accounts
- logs host/ip (proxy & real IP !!), referer, agent, time&date, resolution&color, online-time, pageimpressions
- traceroutes by above.net
- stores IP-adress+cookie to avoid multiple hits by the same user (you can set a timeout)
- multiple page count - include PPhlogger on ALL your pages throughout your whole site
- mail-notice - PPhlogger sends you an email every xx hits
- phlogview - view all data and get a mySQL-dump for backup purposes (incl. logs-by-date search)
- optional: download-count
- Top X referers, Top keywords (single-word or full-string mode)
- Top X domains, Top territories
- Top resolution, Top color
- browser/OS stats
- Calendar - shows your daily/monthly unique hits or pageimpressions
- Visitors per day / per hour graph
- enable/disable your own hits (set a cookie)
- show/hide referers in logs
- (re)set your page hits
- delete entries in your logfile
- demo-mode to make stats avail. to public
- generate a pic to make hits visible on your page (requires GD-library!) - user may choose his own TTF-font, bg/fg-color, font-size >>> unlimited styles!!
- CSS-editor: user may create his own StyleSheet or choose a default style (phloggstyle / phpeestyle / sahara / cartesia / lila / metal)
- timezone support - user may choose his own GMT-time
- multi-language support with localization files
- average online-time
- supports unlimited alternate URLs
- visitor-path - shows the path were the visitor browsed through your site
- Admin page includes:
- set up new useraccounts and notifies the new user (incl. attachment)
- delete useraccounts, clean-up unconfirmed or expired useraccounts , edit useraccounts
- shows all user-configurations
- mailing-list feature
- plug-ins: FTP-diskspace, multiple file upload
- shows your system status (checks for ports on your server)
- show last X customers that entered Phlogview
- CSS-editor
<<less
Download (0.67MB)
Added: 2005-12-28 License: GPL (GNU General Public License) Price:
1398 downloads
Smartmenu 0.2.2

Smartmenu 0.2.2


Smartmenu is a menuing application for Lirc. more>>
Smartmenu is a menuing application for Lirc. Its purpose is to make use of an infra-red remote controller with a Linux box as easy and smart as possible.
It handles displaying and browsing menus in a way that is usable for typical user of a remote controller.
Such a user must be able to use the menus when he is a few meters away from the monitor or even with monitor turned off.
Enhancements:
- This release provided better control of lirc key repeating.
<<less
Download (0.036MB)
Added: 2005-11-10 License: GPL (GNU General Public License) Price:
808 downloads
easyNotes 0.2.2

easyNotes 0.2.2


easyNotes project is a Web-based multi-user notes management application. more>>
easyNotes project is a Web-based multi-user notes management application.
easyNotes is a Web application for managing notes within a large group of different users.
Main features:
General features
- Multiuser notes management
- simulated row level locking
- Organisation of notes with folders
- Access management
- User / Group management
- Rights management (depending on the great software phpGACL)
- Multiple skins / themes
- English / German
- for Mozilla / Firebird / IE
- PHPUnit Testing
Notes management
- Create new notes
- Search notes
- Filter notes by owner and / or group
Enhancements:
- There are some bugfixes.
- An initial plugin (calendar) has been added to show how easyApplications can be customized according to your needs.
<<less
Download (2.7MB)
Added: 2007-04-30 License: MPL (Mozilla Public License) Price:
909 downloads
Cafeterra 2.2.0

Cafeterra 2.2.0


Cafeterra provides a message queue-based EAI tool. more>>
Cafeterra provides a message queue-based EAI tool.
Cafeterra is a message queue-based EAI project with a Web user interface for designing, processing, and monitoring inter-application data flows.
Supported connectors are based on an RDBMS, flat files (CSV, fixed length record, XML, HL7, HTML, etc.), LDAP, and SOAP, with others planned.
The main features are message tracking and archival, joining different connectors, an internal scheduler, and raising the flow on events.
Enhancements:
- Support of POP3 and IMAP
- Support of Perl Language in addition to SQL Language for Getmsg, SendMsg, SendMsgBis, AckMsg and GlobalAck
- Evaluate Perl script during design to see if there is any syntax error
- cgi/CafImport.pm : Sort objects; config filename extension handling; remove trailing r
- cgi/Context.pm : handle correctly copying procedure
- cgi/LContainer.pm : remove some trace
- cgi/MFlow.pm : more launch options;
- cgi/Scripts.pm : validate perl scripts (eval)
- cgi/Users.pm : bug when updating user the object attributes were not upadted
- cgi/EN/translate.pm : added some translation
- cgi/FR/translate.pm : idem
- connectors/cafProto.pm : die on open file failure
- connectors/cafpSMTP.pm : bug on attachment; replay_to and fake_to attributes default values
- connectors/refQry.pm : update of datatypeid
- install/Pg/InitSqlScript.pm : Added new protocols/drivers/datatypes/attributes (Mail/POP3/IMAP)
- install/Pg/conf.pm.tpl : Version changed
- install/Pg/d_attrdef.sql : New attributes for new protocols/drivers (Mail/POP3/IMAP)
- install/Pg/d_datatype.sql : New datatypes for new drivers (POP3/IMAP)
- install/Pg/d_driver.sql : New drivers (POP3/IMAP)
- install/Pg/d_protocol.sql : New protocol (Mail)
- install/Pg/index.pl.tpl : Invalidate last value of _currsubmenu
- mains/FlowRt.pm : infinite loop for backtraking when readind dependant messages; avoid die on startsession failure
- mains/FlowTls.pm : classVars misspelling; a query can be an perl script or a sql script
- mains/SFlowRt.pm : handling perl script and sql scripts for getmsg, sendmsg, etc ... in addition to sql script; handle correctly the delins method; LogRbsMessagr enhancement
- mains/SOAPHTTPWS.pm : removed some trace text
- mains/launch.pl : more launch options
- site/help/pageshelp.pm : image reference bug
- site/help/* : translation and orthograph
- site/models/mflowl.html : launch options
- tools/cafUtils.pm : parse mime date
- tools/mydiff.sh : new directories
- DBD/CafeterraDBD.pm : creation
- connectors/cafdPOP3.pm : creation
- connectors/cafdIMAP.pm : creation
<<less
Download (0.73MB)
Added: 2007-02-19 License: LGPL (GNU Lesser General Public License) Price:
978 downloads
PyPanel 2.2

PyPanel 2.2


PyPanel is a panel/taskbar for X11 window managers. more>>
PyPanel is a lightweight panel/taskbar written in Python and C for X11 window managers. It can be easily customized to match any desktop theme or taste.
PyPanel works with WindowMaker and EWMH compliant WMs (Kahakai, Openbox, PekWM, FVWM, etc). PyPanel is distributed under the GNU General Public License v2.
Main features:
- Transparency with shading/tinting
- Panel dimensions, location and layout
- Font type and colors with Xft support
- Button events/actions
- Clock and workspace name display
- System Tray (Notification Area)
- Autohiding
<<less
Download (0.027MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1640 downloads
ModSecurity 2.1.2

ModSecurity 2.1.2


ModSecurity is an intrusion detection and prevention module for the Apache Web server. more>>
ModSecurity is an FREE and GPL lincesed software for intrusion detection and prevention engine for web applications.
Operating as an Apache Web server module, the purpose of ModSecurity is to increase web application security, protecting web applications from known and unknown attacks.
Enhancements:
- This version fixes the issue with subrequests, a problem with full-width Unicode encoding, and a few other small issues.
- It also bundles the most recent version of the Core Rules (which contains many improvements over the previous version) along with the updated documentation.
<<less
Download (0.62MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
818 downloads
Gastify 1.2.2

Gastify 1.2.2


Gastify is a client for app_notify, an asterisk extension. more>>
Gastify is a client for app_notify, an asterisk extension. Gastify project sits in the notification-area of the gnome-panel and displays a libnotify popup when a call arrives. Beside it logs all calls.
Main features:
- an libnotify popup for incoming calls
- a click on the statusicon opens a call-history
<<less
Download (0.024MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
843 downloads
Lipstik 2.2.2

Lipstik 2.2.2


Lipstik is a fast and clean style for KDE3 with many options to tune your desktop look. more>>
Lipstik is a fast and clean style for KDE3 with many options to tune your desktop look.

Just try it!

INSTALLATION:

Please read the INSTALL file.

CONFIGURATION:

You can find many options in the styles configuration panel. Go to Settings/Appearance & Themes/Style and click on the configure button.

BUGS:

Read the BUGS file; if the issue is not reported, post a comment below, Ill try to read them often.

<<less
Download (0.41MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
924 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5