idpack plus 7.5
Sponsored Links
Sponsored Links
idpack plus 7.5
No.
Title
Category
Price
License
Expand All
Getopt::Plus is a Perl module with options wrapper with standard options, help system and more.
FILE_SIZE_HUMAN
Map from file size in bytes to human name, as hashref, keys being name (full name, lowercase, no trailing s) and abbrev (one/two-letter abbreviation).
Option Types
Permissable values to the type field of an option specifier.
OPT_FLOAT
OPT_INT
OPT_STRING
OPT_FDLEVEL
OPT_BOOLEAN
Error Codes
ERR_OK
Not an error at all. Hence the name.
ERR_ABNORMAL
Not so much an error as a non-erroneous circumstance worthy of signalling, e.g., grep finding no matches.
ERR_UTILITY
Again, not really an error, rather a utility function being called --- e.g., the --help or --version. This gets an error code because it is almost certainly an error to call from batch scripts.
ERR_USAGE
The program was called wrong.
ERR_IO_READ
Some problem reading from disk or network (system read).
ERR_IO_WRITE
Some problem writing to disk or network (system write).
ERR_DB_READ
Some problem reading from db or similar (application read).
ERR_DB_WRITE
Some problem writing to db or similar (application write).
ERR_EXTERNAL
Some problem with an external application.
ERR_INTERNAL
An internal logic error (the sort of thing that should never happen, but has been caught by an internal assertion or sanity check).
ERR_INPUT
Some problem with the input file (which was read fine, but contains bad data).
FILE_SIZE_HUMAN
Map from file size in bytes to human name, as hashref, keys being name (full name, lowercase, no trailing s) and abbrev (one/two-letter abbreviation).
Option Types
Permissable values to the type field of an option specifier.
OPT_FLOAT
OPT_INT
OPT_STRING
OPT_FDLEVEL
OPT_BOOLEAN
Error Codes
ERR_OK
Not an error at all. Hence the name.
ERR_ABNORMAL
Not so much an error as a non-erroneous circumstance worthy of signalling, e.g., grep finding no matches.
ERR_UTILITY
Again, not really an error, rather a utility function being called --- e.g., the --help or --version. This gets an error code because it is almost certainly an error to call from batch scripts.
ERR_USAGE
The program was called wrong.
ERR_IO_READ
Some problem reading from disk or network (system read).
ERR_IO_WRITE
Some problem writing to disk or network (system write).
ERR_DB_READ
Some problem reading from db or similar (application read).
ERR_DB_WRITE
Some problem writing to db or similar (application write).
ERR_EXTERNAL
Some problem with an external application.
ERR_INTERNAL
An internal logic error (the sort of thing that should never happen, but has been caught by an internal assertion or sanity check).
ERR_INPUT
Some problem with the input file (which was read fine, but contains bad data).
edonkey plus is a free program peer to peer (P2P) for the peer to peer network Edonkey 2000, Overnet etc.
Basic aMule Tips
· NEVER run aMule as root.
· If you are behind a firewall or router, be sure that the ports have been opened. The default ports are 4662 (TCP). 4665 (UDP) and 4672 (UDP). If these are blocked, you will receive a "LowID" which results in fewer available sources for the files you are downloading.
· Obtain an appropriate server.met: e.g., if you are a dialup, using a large server list is not appropiate.
· Set your temp and shared directories in Preferences->Directories
· To recursively select a certain directory, right-click over it.
· You should *NOT* share
· Your temp download directory!
· Your /etc directory
· Probably not your /var, /lib, /boot, or /usr directory
· Certainly make sure that any really confidential files (password files, private SSH keys, credit card numbers :) are *not* shared. So generally do not share your entire home directory, although you might want to share some files or directories in it.
· Remember that you get certain download priveledges with those clients (aMule, eMule, etc users) to whom you upload files, in the form of reduced queue waits.
· Please note that compilation with optimizations is supported. However, if you pull a Gentoo, we will probably just tell you to recompile aMule and/or your system with sane compiler-flags before we will attempt to address the problem.
Basic aMule Tips
· NEVER run aMule as root.
· If you are behind a firewall or router, be sure that the ports have been opened. The default ports are 4662 (TCP). 4665 (UDP) and 4672 (UDP). If these are blocked, you will receive a "LowID" which results in fewer available sources for the files you are downloading.
· Obtain an appropriate server.met: e.g., if you are a dialup, using a large server list is not appropiate.
· Set your temp and shared directories in Preferences->Directories
· To recursively select a certain directory, right-click over it.
· You should *NOT* share
· Your temp download directory!
· Your /etc directory
· Probably not your /var, /lib, /boot, or /usr directory
· Certainly make sure that any really confidential files (password files, private SSH keys, credit card numbers :) are *not* shared. So generally do not share your entire home directory, although you might want to share some files or directories in it.
· Remember that you get certain download priveledges with those clients (aMule, eMule, etc users) to whom you upload files, in the form of reduced queue waits.
· Please note that compilation with optimizations is supported. However, if you pull a Gentoo, we will probably just tell you to recompile aMule and/or your system with sane compiler-flags before we will attempt to address the problem.
translate plus is a facelift, update, and re-code of the Translate theme from Suslik. This version utilises a new technique for coding input boxes for Superkaramba, which was written (again) by Suslik.
This new technique allows for a transparent input box, which allows for a much nicer looking theme
This new technique allows for a transparent input box, which allows for a much nicer looking theme
Term::TtyRec::Plus is a Perl module to read a ttyrec.
SYNOPSIS
Term::TtyRec::Plus is a module that lets you read ttyrec files. The related module, Term::TtyRec is designed more for simple interactions. Term::TtyRec::Plus gives you more information and, using a callback, lets you munge the data block and timestamp. It will do all the subtle work of making sure timing is kept consistent, and of rebuilding each frame header.
use Term::TtyRec::Plus;
my $ttyrec = Term::TtyRec::Plus->new();
while ($frame_ref = $ttyrec->next_frame())
{
# do stuff with $frame_ref, e.g.
$total_time += $frame_ref->{diff};
}
CONSTRUCTOR AND STARTUP
new()
Creates and returns a new Term::TtyRec::Plus object.
my $ttyrec = Term::TtyRec::Plus->new();
Parameters
Here are the parameters that > recognizes.
infile
The input filename. A value of "-", which is the default, or undef, means STDIN.
filehandle
The input filehandle. By default this is undef; if you have already opened the ttyrec then you can pass its filehandle to the constructor. If both filehandle and infile are defined, filehandle is used.
time_threshold
The maximum difference between two frames, in seconds. If undef, which is the default, there is no enforced maximum. The second most common value would be 10, which some ttyrec utilities (such as timettyrec) use.
frame_filter
A callback, run for each frame before returning the frame to the user of Term::TtyRec::Plus. This callback receives three arguments: the frame text, the timestamp, and the timestamp of the previous frame. All three arguments are passed as scalar references. The previous frames timestamp is undef for the first frame. The return value is not currently looked at. If you modify the timestamp, the module will make sure that change is noted and respected in further frame timestamps. Modifications to the previous frames timestamp are currently ignored.
sub halve_frame_time_and_stumblify
{
my ($data_ref, $time_ref, $prev_ref) = @_;
$$time_ref = $$prev_ref + ($$time_ref - $$prev_ref) / 2
if defined $$prev_ref;
$$data_ref =~ s/Eidolos/Stumbly/g;
}
State
In addition to passing arguments, you can modify Term::TtyRec::Pluss initial state, if you want to. This could be useful if you are chaining multiple ttyrecs together; you could pass a different initial frame. Support for such chaining might be added in a future version.
frame
The initial frame number. Default 0.
prev_timestamp
The previous frames timestamp. Default undef.
accum_diff
The accumulated difference of all frames seen so far; see the section on diffed_timestamp in next_frame()s return value. Default 0.
relative_time
The time passed since the first frame. Default 0.
SYNOPSIS
Term::TtyRec::Plus is a module that lets you read ttyrec files. The related module, Term::TtyRec is designed more for simple interactions. Term::TtyRec::Plus gives you more information and, using a callback, lets you munge the data block and timestamp. It will do all the subtle work of making sure timing is kept consistent, and of rebuilding each frame header.
use Term::TtyRec::Plus;
my $ttyrec = Term::TtyRec::Plus->new();
while ($frame_ref = $ttyrec->next_frame())
{
# do stuff with $frame_ref, e.g.
$total_time += $frame_ref->{diff};
}
CONSTRUCTOR AND STARTUP
new()
Creates and returns a new Term::TtyRec::Plus object.
my $ttyrec = Term::TtyRec::Plus->new();
Parameters
Here are the parameters that > recognizes.
infile
The input filename. A value of "-", which is the default, or undef, means STDIN.
filehandle
The input filehandle. By default this is undef; if you have already opened the ttyrec then you can pass its filehandle to the constructor. If both filehandle and infile are defined, filehandle is used.
time_threshold
The maximum difference between two frames, in seconds. If undef, which is the default, there is no enforced maximum. The second most common value would be 10, which some ttyrec utilities (such as timettyrec) use.
frame_filter
A callback, run for each frame before returning the frame to the user of Term::TtyRec::Plus. This callback receives three arguments: the frame text, the timestamp, and the timestamp of the previous frame. All three arguments are passed as scalar references. The previous frames timestamp is undef for the first frame. The return value is not currently looked at. If you modify the timestamp, the module will make sure that change is noted and respected in further frame timestamps. Modifications to the previous frames timestamp are currently ignored.
sub halve_frame_time_and_stumblify
{
my ($data_ref, $time_ref, $prev_ref) = @_;
$$time_ref = $$prev_ref + ($$time_ref - $$prev_ref) / 2
if defined $$prev_ref;
$$data_ref =~ s/Eidolos/Stumbly/g;
}
State
In addition to passing arguments, you can modify Term::TtyRec::Pluss initial state, if you want to. This could be useful if you are chaining multiple ttyrecs together; you could pass a different initial frame. Support for such chaining might be added in a future version.
frame
The initial frame number. Default 0.
prev_timestamp
The previous frames timestamp. Default undef.
accum_diff
The accumulated difference of all frames seen so far; see the section on diffed_timestamp in next_frame()s return value. Default 0.
relative_time
The time passed since the first frame. Default 0.
fBuilder Plus is a Web-based utility for building and configuring your iptables/ipchains-based Linux firewall.
It performs all actions in real-time and includes a Firewall Creation Wizard, edit, insert, and delete capabilities for firewall rules, rule shifting, support for DHCP clients, DMZ creation through firewall wizard, NAT capabilities, support for IP aliases, custom protocols, user defined chains, limit matches, automatic log rule creation, state checking, log reporting, email alerts, export capabilities, and an enhanced firewall log parsing utility.
Our fBuilder products are also great for administering existing firewalls. When started, fBuilder will detect your running firewall and allow you to save it to a file. From that point, you can modify your firewall with the expert add utility or by using the edit/insert capabilities of fBuilder Plus.
Here are some key features of "fBuilder Plus":
· All fBuilder Lite features
· Support for 2.4 and 2.6** Kernels (**New in 2.4.14)
· Edit/Insert/Delete capabilities for all firewall rules which are accessed through the rule listing console.
· This allows you to make dynamic changes to rules or insert new rules without having to restart your entire firewall.
· After clicking on a rule, you will be brought to a screen much like the expert add utility. However, the fields will already be populated with the values of the current rule.
· File Fingerprints for Intrusion Detection
· NAT capabilities
· Language Independent - Can be translated to any language
· Support for custom protocols
· Support for User Defined Chains
· Support for Limit matches
· State Checking
· View Active Connections
· DMZ Creation with Firewall Wizard
· Support for IP Aliases
· Automatic creation of Log Rules
· Ability to view loaded modules
· Log Reports and Alerts via email
· Better support for DHCP users
· Rule shifting
· Shift rules to optimize the performance of your firewall
· Auto network and NIC discovery
· Redesigned scripts
· Uses variables for common addresses and ports
· New shell function for retreiving addresses from ifconfig
· Ability to export your firewall into an rc.firewall script which can be used at boot time to start your firewall automatically.
· Enhanced logging options and viewer
· Integrated Documentation
Whats New in This Release:
· 2.6 kernels are now fully supported.
It performs all actions in real-time and includes a Firewall Creation Wizard, edit, insert, and delete capabilities for firewall rules, rule shifting, support for DHCP clients, DMZ creation through firewall wizard, NAT capabilities, support for IP aliases, custom protocols, user defined chains, limit matches, automatic log rule creation, state checking, log reporting, email alerts, export capabilities, and an enhanced firewall log parsing utility.
Our fBuilder products are also great for administering existing firewalls. When started, fBuilder will detect your running firewall and allow you to save it to a file. From that point, you can modify your firewall with the expert add utility or by using the edit/insert capabilities of fBuilder Plus.
Here are some key features of "fBuilder Plus":
· All fBuilder Lite features
· Support for 2.4 and 2.6** Kernels (**New in 2.4.14)
· Edit/Insert/Delete capabilities for all firewall rules which are accessed through the rule listing console.
· This allows you to make dynamic changes to rules or insert new rules without having to restart your entire firewall.
· After clicking on a rule, you will be brought to a screen much like the expert add utility. However, the fields will already be populated with the values of the current rule.
· File Fingerprints for Intrusion Detection
· NAT capabilities
· Language Independent - Can be translated to any language
· Support for custom protocols
· Support for User Defined Chains
· Support for Limit matches
· State Checking
· View Active Connections
· DMZ Creation with Firewall Wizard
· Support for IP Aliases
· Automatic creation of Log Rules
· Ability to view loaded modules
· Log Reports and Alerts via email
· Better support for DHCP users
· Rule shifting
· Shift rules to optimize the performance of your firewall
· Auto network and NIC discovery
· Redesigned scripts
· Uses variables for common addresses and ports
· New shell function for retreiving addresses from ifconfig
· Ability to export your firewall into an rc.firewall script which can be used at boot time to start your firewall automatically.
· Enhanced logging options and viewer
· Integrated Documentation
Whats New in This Release:
· 2.6 kernels are now fully supported.
Quanta Plus is a highly stable and feature rich web development environment. Quantas vision has always been to start with the best architectural foundations, design for efficient and natural use and enable maximal user extensibility.
We recognize that we dont have the resources to do everything we would like to so our target is to make it easy for you to help make this the best community based desktop application anywhere. Pretty much everything in Quanta is designed so you can extend it.
Even the way it handles XML DTDs is based on XML files you can edit. You can even import DTDs, write scripts to manage editor contents, visually create dialogs for your scripts and assign script actions to nearly any file operation in a project. You can even look at and communicate with a wide range of what happens inside Quanta using DCOP.
Quanta is based on KDE so this means it is network transparent from any dialog or project. It can use not only FTP but other KDE KIO slaves from file dialogs or in project settings. For instance if you want secure access try the fish KIO slave that uses SSH.
Just enter fish://[user]@domain in any dialog or select fish in your project settings. Here on this site you will find information on using Kommander to visually build dialogs you can extend Quanta with. These applications talk to each other using an IPC (Inter Process Communication) called DCOP (DEsktop Communication Protocol).
Of course I realize this can sound like alphabet soup techno-babble to some web developers, but heres what it means. When you are using Quanta and realize you would like to do something and you want to ask "Can I do this?" you can expect the answer will not only be yes, but it will probably be even cooler than you hoped for.
Not included on this site are other tools you can use with Quanta for revision control and reviewing and merging changes in files. Those applications are Cervisia and Kompare, and if they are not installed and you install them Quanta will use them.
We would like to think that there are rich rewards to be found here for those willing to explore new ways of doing things, or perhaps in some cases old ways that are just new to you.
We recognize that we dont have the resources to do everything we would like to so our target is to make it easy for you to help make this the best community based desktop application anywhere. Pretty much everything in Quanta is designed so you can extend it.
Even the way it handles XML DTDs is based on XML files you can edit. You can even import DTDs, write scripts to manage editor contents, visually create dialogs for your scripts and assign script actions to nearly any file operation in a project. You can even look at and communicate with a wide range of what happens inside Quanta using DCOP.
Quanta is based on KDE so this means it is network transparent from any dialog or project. It can use not only FTP but other KDE KIO slaves from file dialogs or in project settings. For instance if you want secure access try the fish KIO slave that uses SSH.
Just enter fish://[user]@domain in any dialog or select fish in your project settings. Here on this site you will find information on using Kommander to visually build dialogs you can extend Quanta with. These applications talk to each other using an IPC (Inter Process Communication) called DCOP (DEsktop Communication Protocol).
Of course I realize this can sound like alphabet soup techno-babble to some web developers, but heres what it means. When you are using Quanta and realize you would like to do something and you want to ask "Can I do this?" you can expect the answer will not only be yes, but it will probably be even cooler than you hoped for.
Not included on this site are other tools you can use with Quanta for revision control and reviewing and merging changes in files. Those applications are Cervisia and Kompare, and if they are not installed and you install them Quanta will use them.
We would like to think that there are rich rewards to be found here for those willing to explore new ways of doing things, or perhaps in some cases old ways that are just new to you.
Nicotine-Plus is a fork of Nicotine, the Python/GTK+ 2 client for the Soulseek P2P Network. Nicotine-Pluss features include remote uploads, separate shares sent to Buddies, GUI improvements, and a tray icon.
Whats New in This Release:
GENERAL CHANGES
· Support for Spell Checking in chat added (libsexy and python-sexy required)
· Other users Interests are now shown in the User Info tab, with expanders
· Send Message added to trayicon
· Popup Menus in Private, Chatrooms, and User Browse reorganized
· The user-entry boxes are now buddy-list combobox entries
· Users with PyGTK >= 2.10 will use the gtk.StatusIcon instead of the old trayicon.so module.
· Added a filemanager popup item to the self-browse menu; configurable under Settings->Advanced->Events
· Gstreamer-Python support for sound effects added
· Added Soulseek testing server (port 2242) to the server combobox.
· Changed the URL Catchers syntax. The ampersand "&" is no longer needed at the end of URL Handlers. The handler entry is now a combobox and includes a bunch of webbrowser commands.
· Userlist Columns are hidable and hidden status is saved.
TRANSFERS
· Added a "Group by users" check box
· Added Expand/Collapse all toggle button to transfers
· Added a popup dialog to the "Clear Queued" transfers buttons
PRIVATE CHAT
· Added gallows patch for including your username in the private chat log. (ticket #161)
· Direct private messages (currently only supported by Nicotine+ >= 1.2.7.1)
SEARCH
· Search now has combo boxes, per-room searching and per-user searching.
· Added Wishlist and changed remembered search tabs to only display when new search results arrive
· Switch to newly started search tab (ticket #157)
USERINFO
· gallows added userinfo image zooming via the scrollwheel (ticket #160)
SETTINGS
· Changed Audio Player Syntax it now uses "$" as the filename
· Exit dialog can be disabled in Settings->UI
· When a config option is detected as unset, print it in the log window.
· Move Icon theme and trayicon settings to a seperate frame
· Move sound effect and audio player settings to a seperate frame
· Reopen Settings dialog, if a setting is not set.
NETWORKING
· On Win32, hyriands multithreaded socket selector is used. This will allow a larger number of sockets to be used, thus increasing stability.
· Added Server Message 57 (User Interests)
· Send rn with userinfo description instead of just n
BUGFIXES
· Uploads to other Nicotine+ users work better
· Userinfo Description does not scroll to the bottom of the window
· Fixed a few bugs with the trayicon
· Fixed server reconnection not actually trying to reconnect (and giving up on the first try)
TRANSLATIONS
· Lithuanian translation updated
· Euskare translation updated
Whats New in This Release:
GENERAL CHANGES
· Support for Spell Checking in chat added (libsexy and python-sexy required)
· Other users Interests are now shown in the User Info tab, with expanders
· Send Message added to trayicon
· Popup Menus in Private, Chatrooms, and User Browse reorganized
· The user-entry boxes are now buddy-list combobox entries
· Users with PyGTK >= 2.10 will use the gtk.StatusIcon instead of the old trayicon.so module.
· Added a filemanager popup item to the self-browse menu; configurable under Settings->Advanced->Events
· Gstreamer-Python support for sound effects added
· Added Soulseek testing server (port 2242) to the server combobox.
· Changed the URL Catchers syntax. The ampersand "&" is no longer needed at the end of URL Handlers. The handler entry is now a combobox and includes a bunch of webbrowser commands.
· Userlist Columns are hidable and hidden status is saved.
TRANSFERS
· Added a "Group by users" check box
· Added Expand/Collapse all toggle button to transfers
· Added a popup dialog to the "Clear Queued" transfers buttons
PRIVATE CHAT
· Added gallows patch for including your username in the private chat log. (ticket #161)
· Direct private messages (currently only supported by Nicotine+ >= 1.2.7.1)
SEARCH
· Search now has combo boxes, per-room searching and per-user searching.
· Added Wishlist and changed remembered search tabs to only display when new search results arrive
· Switch to newly started search tab (ticket #157)
USERINFO
· gallows added userinfo image zooming via the scrollwheel (ticket #160)
SETTINGS
· Changed Audio Player Syntax it now uses "$" as the filename
· Exit dialog can be disabled in Settings->UI
· When a config option is detected as unset, print it in the log window.
· Move Icon theme and trayicon settings to a seperate frame
· Move sound effect and audio player settings to a seperate frame
· Reopen Settings dialog, if a setting is not set.
NETWORKING
· On Win32, hyriands multithreaded socket selector is used. This will allow a larger number of sockets to be used, thus increasing stability.
· Added Server Message 57 (User Interests)
· Send rn with userinfo description instead of just n
BUGFIXES
· Uploads to other Nicotine+ users work better
· Userinfo Description does not scroll to the bottom of the window
· Fixed a few bugs with the trayicon
· Fixed server reconnection not actually trying to reconnect (and giving up on the first try)
TRANSLATIONS
· Lithuanian translation updated
· Euskare translation updated
8
Internet -> Firefox-Extensions
MPL Mozilla Public License
Hide show
Adblock Plus Filter Uploader is a Firefox extension that uploads the filters from your Adblock Plus installation to a FTP server.
This extension requires Adblock Plus! https://addons.mozilla.org/mozilla/1865/ This just uploads the filters you have in Adblock Plus to a FTP server!
This will only be useful for people who actively modify their filters and either want to share them with others or synchronize the filters between different computers.
This extension requires Adblock Plus! https://addons.mozilla.org/mozilla/1865/ This just uploads the filters you have in Adblock Plus to a FTP server!
This will only be useful for people who actively modify their filters and either want to share them with others or synchronize the filters between different computers.
9
Internet -> Firefox-Extensions
MPL Mozilla Public License
Hide show
Adblock Plus is a Firefox extension that blocks ads and banners.
Ever been annoyed by all those ads and banners on the internet that often take longer to download than everything else on the page? Install Adblock Plus now and get rid of them. Right-click on a banner and choose "Adblock" from the context menu — the banner wont be downloaded again. Or open Adblock Plus sidebar to see all elements of the page and block the banners. You can use filters with wildcards or even regular expressions to block complete banner factories.
Here are some key features of "Adblock Plus":
· Filter subscriptions - download filter lists maintained by somebody else automatically, will be processed in addition to own filters
· Dynamic list of blockable elements - updated in real-time, shows the tab you have open right now
· Hit counter - shows how often a certain filter was used
· Disable filters and subscriptions individually
· Automatic daily backups of the filter list - just in case
· Element hiding - hide ads that cant be blocked
· Support for 25 languages
Ever been annoyed by all those ads and banners on the internet that often take longer to download than everything else on the page? Install Adblock Plus now and get rid of them. Right-click on a banner and choose "Adblock" from the context menu — the banner wont be downloaded again. Or open Adblock Plus sidebar to see all elements of the page and block the banners. You can use filters with wildcards or even regular expressions to block complete banner factories.
Here are some key features of "Adblock Plus":
· Filter subscriptions - download filter lists maintained by somebody else automatically, will be processed in addition to own filters
· Dynamic list of blockable elements - updated in real-time, shows the tab you have open right now
· Hit counter - shows how often a certain filter was used
· Disable filters and subscriptions individually
· Automatic daily backups of the filter list - just in case
· Element hiding - hide ads that cant be blocked
· Support for 25 languages
10
Internet -> Firefox-Extensions
MPL Mozilla Public License
Hide show
Adblock Plus: Element Hiding Helper is an extension meant for creating element hiding rules easier.
Fight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
Fight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
11
Database -> Administrative-frontents
GPL GNU General Public License
Hide show
YASQL project is an open source Oracle command line interface. It features a much kinder user interface than SQL*Plus (sqlplus).
This is meant to be a complete replacement for SQL*Plus when dealing with ad hoc queries and general database interfacing.
Here are some key features of "Yet Another SQL Plus Replacement":
· full ReadLine support for command history and tab completion
· alternate output methods
· table
· list
· CSV
· redirection and piping of query results
· query editing
· scripting
· easy administrative data dictionary commands.
Whats New in This Release:
· Fixed the DECIMAL problem with describe command.
· Added sql mode with i (patch by Ed Avis).
· Added redirectors (>, >>, |) to describe.
· Added show user command.
· Added show uid command.
· Added new makefile targets: clean, check. (patch by Ed Avis)
· Added "and owner = ?" to some show targets (patch by anonymous).
· Added command_complete_list feature and config option.
· Added disconnect command
· Added command completion: select, update, insert, delete, execute, etc.
· Added table.column name completion.
· Added feature to run tty-less (patch by Michael Kroell).
· Added a workaround for SunOSs alarm() bug (patch by Ed Avis).
· Fixed some minor issues in parser code.
This is meant to be a complete replacement for SQL*Plus when dealing with ad hoc queries and general database interfacing.
Here are some key features of "Yet Another SQL Plus Replacement":
· full ReadLine support for command history and tab completion
· alternate output methods
· table
· list
· CSV
· redirection and piping of query results
· query editing
· scripting
· easy administrative data dictionary commands.
Whats New in This Release:
· Fixed the DECIMAL problem with describe command.
· Added sql mode with i (patch by Ed Avis).
· Added redirectors (>, >>, |) to describe.
· Added show user command.
· Added show uid command.
· Added new makefile targets: clean, check. (patch by Ed Avis)
· Added "and owner = ?" to some show targets (patch by anonymous).
· Added command_complete_list feature and config option.
· Added disconnect command
· Added command completion: select, update, insert, delete, execute, etc.
· Added table.column name completion.
· Added feature to run tty-less (patch by Michael Kroell).
· Added a workaround for SunOSs alarm() bug (patch by Ed Avis).
· Fixed some minor issues in parser code.
ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.
ANTLR provides excellent support for tree construction, tree walking, and translation. There are currently about 5,000 ANTLR source downloads a month.
Whats New in This Release:
Java CHANGES
· moved consume(); consumeUntil(...) to recover() method you can override in parsers only. New method signature: public void recover(BitSet tokenSet) throws TokenStreamException;
· CommonASTWithHiddenTokens fixed tree builders copy hidden tokens
· ASTFactory; added overloaded method public void setASTNodeClass(Class c);
· default charVocabulary is 0..127 for ASCII range. ~n, for example, gave really wacky results since charVocabulary had no defined range.
· BaseAST.equals() didnt work when node text was null.
· LLkParser.consume now throws TokenStreamException as Parser.consume does.
C++ changes:
· Added TokenStreamRewriteEngine C++ port + example.
· Fixes for sign extension problems that sneaked in 2.7.4.
· Fixes for some quoting bugs in C++ codegeneration.
· Fixes for some wrong extensions in generated docbook and HTML files (for -html/-docbook commandline options).
· Made codegenerator more unicode friendly.
· Tweaks for preliminary UTF8 support. Includes an example that is capable of parsing UTF8 input (more proof of concept than what is to be). (Using a custom InputBuffer and CharScanner). *Feedback on this is appreciated.*
· Fixed codegeneration bug (a..z!) would trigger generation of invalid C++ code.
· Added missing warning for redefinition of AST types for nodes. (Thanks to Sergey Bogdanov)
· Bugfix for AST factory initialization code.
· Fixed default argument mangling for generated rule methods.
· Fixed sign extension problem in error messages in support lib (triggered by MSVC)
· Fixed type generated for saveIndex and _begin variables. Thanks to Brad Schick for the patch.
· getFilename/Line/Column methods added to TokenStreamRecognitionException (thanks to Heinz Beckers)
· Added lexer states to the flex lexer example. It now seems to parse the same set of java as the other antlr java parsers.
· Small tweaks to include files.
· Doc tweaks.
· Revised configure/makefiles by Wolfgang Haefelinger.
C# Changes
Changes for C# support (by Anthony Oguntimehin, Kunle Odutola & Micheal Jordan):
· Factored out IToken and IHiddenStreamToken interfaces.
· ASTPair now supports a protocol for reusing instances. Generated C# code creates far fewer ASTPair instances.
· The values of LA(1) and LA(2) are now cached in lexers
· ASTArray creation/usage replaced with C# variable length parameter lists. ASTArray remains for backwards compatibility only.
· Several bugfixes in antlr.debug to better support ParseView-style tools [Suggested by Eric Taucher.]
· Updated the C# code generator to generate code that uses use cached LA(x) values, reuses ASTPair instances, and uses the new IToken and IHiddenStreamToken interfaces
· Re-organised the ANTLR runtime library for the .NET platform. Library is now packages as two assemblies:
· antlr.runtime.dll - required, core library types and functionality
· antlr.astframe.dll - optional, types and functionality for displaying astframes
· The upshot of all this is that projects that dont need the ASTFrame functionality arent forced to load the System.Drawing and System.Windows.Forms assemblies that it depends on.
· C# VS.NET solution and project files & names have been updated to 2.7.5. Also new project file for the astframe assembly.
· Updated the NAnt build file(s) to support building the new two-assembly runtime.
· Incorporated latest fixes for the java grammar into the C# java example project
· Updated runtime documentation to accomodate the new two-assembly C# runtime.
ANTLR provides excellent support for tree construction, tree walking, and translation. There are currently about 5,000 ANTLR source downloads a month.
Whats New in This Release:
Java CHANGES
· moved consume(); consumeUntil(...) to recover() method you can override in parsers only. New method signature: public void recover(BitSet tokenSet) throws TokenStreamException;
· CommonASTWithHiddenTokens fixed tree builders copy hidden tokens
· ASTFactory; added overloaded method public void setASTNodeClass(Class c);
· default charVocabulary is 0..127 for ASCII range. ~n, for example, gave really wacky results since charVocabulary had no defined range.
· BaseAST.equals() didnt work when node text was null.
· LLkParser.consume now throws TokenStreamException as Parser.consume does.
C++ changes:
· Added TokenStreamRewriteEngine C++ port + example.
· Fixes for sign extension problems that sneaked in 2.7.4.
· Fixes for some quoting bugs in C++ codegeneration.
· Fixes for some wrong extensions in generated docbook and HTML files (for -html/-docbook commandline options).
· Made codegenerator more unicode friendly.
· Tweaks for preliminary UTF8 support. Includes an example that is capable of parsing UTF8 input (more proof of concept than what is to be). (Using a custom InputBuffer and CharScanner). *Feedback on this is appreciated.*
· Fixed codegeneration bug (a..z!) would trigger generation of invalid C++ code.
· Added missing warning for redefinition of AST types for nodes. (Thanks to Sergey Bogdanov)
· Bugfix for AST factory initialization code.
· Fixed default argument mangling for generated rule methods.
· Fixed sign extension problem in error messages in support lib (triggered by MSVC)
· Fixed type generated for saveIndex and _begin variables. Thanks to Brad Schick for the patch.
· getFilename/Line/Column methods added to TokenStreamRecognitionException (thanks to Heinz Beckers)
· Added lexer states to the flex lexer example. It now seems to parse the same set of java as the other antlr java parsers.
· Small tweaks to include files.
· Doc tweaks.
· Revised configure/makefiles by Wolfgang Haefelinger.
C# Changes
Changes for C# support (by Anthony Oguntimehin, Kunle Odutola & Micheal Jordan):
· Factored out IToken and IHiddenStreamToken interfaces.
· ASTPair now supports a protocol for reusing instances. Generated C# code creates far fewer ASTPair instances.
· The values of LA(1) and LA(2) are now cached in lexers
· ASTArray creation/usage replaced with C# variable length parameter lists. ASTArray remains for backwards compatibility only.
· Several bugfixes in antlr.debug to better support ParseView-style tools [Suggested by Eric Taucher.]
· Updated the C# code generator to generate code that uses use cached LA(x) values, reuses ASTPair instances, and uses the new IToken and IHiddenStreamToken interfaces
· Re-organised the ANTLR runtime library for the .NET platform. Library is now packages as two assemblies:
· antlr.runtime.dll - required, core library types and functionality
· antlr.astframe.dll - optional, types and functionality for displaying astframes
· The upshot of all this is that projects that dont need the ASTFrame functionality arent forced to load the System.Drawing and System.Windows.Forms assemblies that it depends on.
· C# VS.NET solution and project files & names have been updated to 2.7.5. Also new project file for the astframe assembly.
· Updated the NAnt build file(s) to support building the new two-assembly runtime.
· Incorporated latest fixes for the java grammar into the C# java example project
· Updated runtime documentation to accomodate the new two-assembly C# runtime.
AWFFull is a Web server log analysis program, forked from Webalizer. AWFFull project adds a number of new features and improvements, such as extended frontpage history, resizable graphs, and a few more pie charts.
Webalizer is a great weblog analysis program but hasnt been going anywhere in recent years. AWFFull takes that base and starts to fix the niggles and annoyances and hopefully become a useful enhancement.
As a base, weblizer has a stated goal of producing web server analysis. AWFFull on the other hand, will gradually focus more on the business intelligence contained within those logs - and not specifically limited just to web server logs.
I have an interest in whole of site statistics, and that is rarely contained solely in webserver log files. If youre keen to see where I would like to take awffull, check out the TODO file.
Whats New in 3.7.5 Stable Release:
· The missing Page counts from the All Sites report was added.
· The Brazilian Portugese translation was added.
· A German/Webalizer specific history_regen script was added.
Whats New in 3.8.1 Beta 2 Development Release:
· Major performance improvements were made to the use of Groups.
· Lots of fixes and cross verification were done to the numbers counted and generated.
· The current directory configuration file being parsed is now removed.
Webalizer is a great weblog analysis program but hasnt been going anywhere in recent years. AWFFull takes that base and starts to fix the niggles and annoyances and hopefully become a useful enhancement.
As a base, weblizer has a stated goal of producing web server analysis. AWFFull on the other hand, will gradually focus more on the business intelligence contained within those logs - and not specifically limited just to web server logs.
I have an interest in whole of site statistics, and that is rarely contained solely in webserver log files. If youre keen to see where I would like to take awffull, check out the TODO file.
Whats New in 3.7.5 Stable Release:
· The missing Page counts from the All Sites report was added.
· The Brazilian Portugese translation was added.
· A German/Webalizer specific history_regen script was added.
Whats New in 3.8.1 Beta 2 Development Release:
· Major performance improvements were made to the use of Groups.
· Lots of fixes and cross verification were done to the numbers counted and generated.
· The current directory configuration file being parsed is now removed.
YaKuake is Yet Another Kuake KDE terminal emulator.
Here are some key features of "YaKuake 2.7":
· mouse wheel tabs navigation
· multiple launches bug patched
· tabs increasing number bug solved
· sessions start as login shells
· paste ability (shift+inser by default)
· great improvement in session creation (no more ugly symbols at start)
· dcop client added :
· the id of the current session is contained in the shell variable $DCOP_YAKUAKE_SESSION
· see DCOPInterface for functionalities
Multitabbed konsole can be simulated by using screen which is a great software I encourage you to test as soon as possible since its functionalties are greater than you think...
Whats New in 2.7.5 Stable Release:
· Further translations have been added.
· Yakuake no longer spawns login shells in new sessions.
· A keyboard shortcut to rename the selected session has been added.
· The default keyboard shortcuts and their names are now consistent with Konsole.
· A bug that led to the tab bar not updating after a slotSelectSession DCOP call was issued has been fixed.
· A bug that could lead to the slotRenameSession DCOP call failing to set a session label after an older session had been closed has been fixed.
· Upon attempting to set an all-whitespace session label, the label will now fall back to its prior setting rather than a generic default label.
· Yakuake will now display a warning before quitting the application with multiple tabs open.
Whats New in 2.8 Beta 1 Development Release:
· Added a proper config dialog. Scale and position settings are previewed in real-time as the controls are moved.
· Added a Skins page to the config dialog, allowing to list, choose, install and remove (given the necessary write permissions) skins. The skin format has been slightly augmented to allow skins to ship a preview icon for the list. Skins can be switched at runtime without a restart.
· The Plastik skin by Daniel suslik D. has been added to the base package.
· Added support for splitting a session into multiple terminals. Horizontal and vertical splits can be added and removed at will, as well as resized and collapsed. To add a split at the active terminals position, use the keyboard shortcuts or the session tab context menu. To open a session preconfigred with a certain split layout click and hold the New Session button on the tab bar, then choose from the list, or set up keyboard shortcuts for the preconfigured session types in the shortcut dialog.
· The main menu has been redesigned to conform more to established KDE practices in layout and naming. Several items have been added corresponding to new Yakuake features.
· Added a fullscreen mode.
· Improved support for Xinerama multi-head setups.
· Added a first-run dialog to allow changing the open/close shortcut before it is needed. Note: First-time users of this Yakuake version will be greeted by this dialog as well.
· Added an About dialog.
· The startup notification popup can now be disabled in the config dialog.
· Activating the open/close shortcut will now bring the Yakuake window to the foreground and focus it if it was already open but unfocussed, at popular request.
· Opening dialogs from Yakuake will no longer cause the window to retract.
· Tabs can now be moved. Added corresponding keyboard shortcuts.
· Tabs now have context menus containing several relevant actions, such as moving and closing them.
· Double-clicking the tab-bar will now open a new session, consistent with Konsole and other KDE applications.
· Renaming a tab using the in-line edit feature now requires a double-click (rather than a single-click) on the tab, consistent with established KDE behavior.
· The in-line tab renaming control can now be cancelled with ESC.
· Fixed the interaction model of the tab bar and the buttons to allow cancelling activations by releasing the mouse button outside of them.
· Added various new keyboard shortcuts corresponding to new Yakuake features and improved consistency with Konsole in existing shortcuts (e.g. added the alternate new session shortcut from Konsole).
· Added keyboard shortcuts to switch to session 1 through 12.
· Added keyboard shortcuts to adjust the width and height of the window.
· Added an action and shortcut to paste the X11 selection buffer.
· Added an action to quit Yakuake.
· Made the quit warning with multiple open sessions behave consistently with Konsole.
· Greatly expanded DCOP interface. Added various new calls corresponding to new Yakuake features. Made it easier to get information about the applications state out of it, e.g. the title text of a session or sub-terminal. Fixed bugs that caused related calls to reply with incorrect information.
· Added Whats This help and tooltips to interface elements.
· Optimized the title bar to avoid unnecessary repaints.
· Fixed crashes when using the slotRunCommandInSession DCOP call due to lack of bounds-checking. Fixed a similar problem with slotRenameSession.
· Bugs that caused the background updating of translucent parts of the Yakuake window to stop have been fixed.
· Adding a translucent session while the window is closed should no longer result in a corrupted terminal background when opening the Yakuake window.
· Yakuake will now fall back to the default skin on startup if the skin stored in the settings cannot be found, rather than crash.
· Fixed a crash when loading non-translucent button images from skins.
· Bugs that caused the quick access options in the menu to come out of sync with the actual settings have been fixed.
· Fixed " - " postfix showing after the session title text when using skins without their own postfix.
· Fixed a crash when a terminal in a tab other than the currently selected tab exits.
· Ported preferences handling to KDEs KConfigXT framework. Aside from cleaner code, this improves over the old preferences handling by avoiding unnecessary disk activity (and thus spurious hard drive spin-ups on laptop computers and other battery-bound devices).
· Disabled startup notifications (i.e. KDEs bouncing cursor) for Yakuake.
· Updated the installation colation of the .desktop menu file to conform to modern XDG standards.
Here are some key features of "YaKuake 2.7":
· mouse wheel tabs navigation
· multiple launches bug patched
· tabs increasing number bug solved
· sessions start as login shells
· paste ability (shift+inser by default)
· great improvement in session creation (no more ugly symbols at start)
· dcop client added :
· the id of the current session is contained in the shell variable $DCOP_YAKUAKE_SESSION
· see DCOPInterface for functionalities
Multitabbed konsole can be simulated by using screen which is a great software I encourage you to test as soon as possible since its functionalties are greater than you think...
Whats New in 2.7.5 Stable Release:
· Further translations have been added.
· Yakuake no longer spawns login shells in new sessions.
· A keyboard shortcut to rename the selected session has been added.
· The default keyboard shortcuts and their names are now consistent with Konsole.
· A bug that led to the tab bar not updating after a slotSelectSession DCOP call was issued has been fixed.
· A bug that could lead to the slotRenameSession DCOP call failing to set a session label after an older session had been closed has been fixed.
· Upon attempting to set an all-whitespace session label, the label will now fall back to its prior setting rather than a generic default label.
· Yakuake will now display a warning before quitting the application with multiple tabs open.
Whats New in 2.8 Beta 1 Development Release:
· Added a proper config dialog. Scale and position settings are previewed in real-time as the controls are moved.
· Added a Skins page to the config dialog, allowing to list, choose, install and remove (given the necessary write permissions) skins. The skin format has been slightly augmented to allow skins to ship a preview icon for the list. Skins can be switched at runtime without a restart.
· The Plastik skin by Daniel suslik D. has been added to the base package.
· Added support for splitting a session into multiple terminals. Horizontal and vertical splits can be added and removed at will, as well as resized and collapsed. To add a split at the active terminals position, use the keyboard shortcuts or the session tab context menu. To open a session preconfigred with a certain split layout click and hold the New Session button on the tab bar, then choose from the list, or set up keyboard shortcuts for the preconfigured session types in the shortcut dialog.
· The main menu has been redesigned to conform more to established KDE practices in layout and naming. Several items have been added corresponding to new Yakuake features.
· Added a fullscreen mode.
· Improved support for Xinerama multi-head setups.
· Added a first-run dialog to allow changing the open/close shortcut before it is needed. Note: First-time users of this Yakuake version will be greeted by this dialog as well.
· Added an About dialog.
· The startup notification popup can now be disabled in the config dialog.
· Activating the open/close shortcut will now bring the Yakuake window to the foreground and focus it if it was already open but unfocussed, at popular request.
· Opening dialogs from Yakuake will no longer cause the window to retract.
· Tabs can now be moved. Added corresponding keyboard shortcuts.
· Tabs now have context menus containing several relevant actions, such as moving and closing them.
· Double-clicking the tab-bar will now open a new session, consistent with Konsole and other KDE applications.
· Renaming a tab using the in-line edit feature now requires a double-click (rather than a single-click) on the tab, consistent with established KDE behavior.
· The in-line tab renaming control can now be cancelled with ESC.
· Fixed the interaction model of the tab bar and the buttons to allow cancelling activations by releasing the mouse button outside of them.
· Added various new keyboard shortcuts corresponding to new Yakuake features and improved consistency with Konsole in existing shortcuts (e.g. added the alternate new session shortcut from Konsole).
· Added keyboard shortcuts to switch to session 1 through 12.
· Added keyboard shortcuts to adjust the width and height of the window.
· Added an action and shortcut to paste the X11 selection buffer.
· Added an action to quit Yakuake.
· Made the quit warning with multiple open sessions behave consistently with Konsole.
· Greatly expanded DCOP interface. Added various new calls corresponding to new Yakuake features. Made it easier to get information about the applications state out of it, e.g. the title text of a session or sub-terminal. Fixed bugs that caused related calls to reply with incorrect information.
· Added Whats This help and tooltips to interface elements.
· Optimized the title bar to avoid unnecessary repaints.
· Fixed crashes when using the slotRunCommandInSession DCOP call due to lack of bounds-checking. Fixed a similar problem with slotRenameSession.
· Bugs that caused the background updating of translucent parts of the Yakuake window to stop have been fixed.
· Adding a translucent session while the window is closed should no longer result in a corrupted terminal background when opening the Yakuake window.
· Yakuake will now fall back to the default skin on startup if the skin stored in the settings cannot be found, rather than crash.
· Fixed a crash when loading non-translucent button images from skins.
· Bugs that caused the quick access options in the menu to come out of sync with the actual settings have been fixed.
· Fixed " - " postfix showing after the session title text when using skins without their own postfix.
· Fixed a crash when a terminal in a tab other than the currently selected tab exits.
· Ported preferences handling to KDEs KConfigXT framework. Aside from cleaner code, this improves over the old preferences handling by avoiding unnecessary disk activity (and thus spurious hard drive spin-ups on laptop computers and other battery-bound devices).
· Disabled startup notifications (i.e. KDEs bouncing cursor) for Yakuake.
· Updated the installation colation of the .desktop menu file to conform to modern XDG standards.
15
System -> Linux-Distributions
USD290.00
Free for noncommerc
Hide show
Astaro Security Linux 7.5 Beta offers you a wonderful and extremely useful product which is an award-winning, unique network security solution in an integrated and easy-to-use and manage package. Astaro Security Linux includes a combination of the following security applications:
- A Firewall with stateful packet inspection and application proxies guards Internet communications traffic in and out of the organization.
- A Virtual Private Network (VPN) gateway assures secure communications with remote offices, road warriors, and telecommuters.
- Anti-Virus defends computers from both email and web-bourne viruses.
- Intrusion Protection detects and stops hostile probes and application-based attacks.
- Spam Filtering eliminates the productivity drain of opening and deleting unsolicited emails.
- Surf Protection (Content Filtering) and Spyware Protection improve productivity by blocking inappropriate web activities, provide full protection from user tracking threats and violation of privacy.
Major Features:
- Protects all types of networks Windows, Linux, Unix and others.
- Delivers comprehensive features at low cost maximizing your ROI (return on investment).
- Highly effective. Has won numerous industry awards. Beat Cisco and Checkpoint in InfoWorld magazine product review, Beat IBM and Computer Associates in Linux World for Best Security Application.
- Integrated management platform features an intuitive browser-based interface and one-step updates for rapid deployment and easy management.
- Can be installed in under 15 minutes or purchased pre-installed on security appliances.
- Can start with firewall, VPN and spam protection and add other security applications as needed, seamlessly.
- Runs as a dedicated application server on top of a hardened operating system, which relieves operating system management headaches.
- Runs on systems ranging from small devices up to large multi-processor systems utilizing gigabytes of memory.
- Redundant systems can be configured to provide high availability and automatic failover in case of hardware or network failures.
- Load balancing improves performance - traffic shaping can set priorities by network, service and protocol.
- Logging, automatic backup, and diagnostic tools support high reliability.
- Free online evaluation workshop to get you started.
Enhancements:
- Major New Things:
- Intrusion Protection Performance
- Uses new version of the IPS engine
- Scales massively when used with Multi-Core CPU/Appliances
- Real-Time Bandwidth Monitor
- New Interface utilization bars on Dashboard (setup scale via QOS)
- Click for detailed overview as to "whats happening in my network right now"
- Import/Export Widget
- Gives the ability to work with manual lists for many features/fields
- Useful to import a large blacklist (for example) into the URL Blacklist
- Can been seen in many user-input boxes in Web, Mail and more. (Green Up/Down Arrows)
- Clone Objects
- Easily duplicate existing objects for quick re-use.
- Supported in most places for many objects (Definitions, Services, Certain Profiles/Actions)
- Extended Network Security Reporting
- Added Detailed Packet Filter/Firewall Reports
- Added Detailed IM/P2P Reports
- Reputation Support for Web Security
- Allows use of the trustedsource.org reputation for Web Filtering
- Documentation coming, for now visit their site/FAQ for more info on reputations
- DHCP Improvements
- Automatically map a current lease to a static assignment
- Limit DHCP leases to those with static assignments only
- Configurable DHCP lease time
- Servers retain configuration when enabled/disabled
- Multicast Routing Daemon
- PIM-SM Routing support
- More documentation on this implementation to come. Experiment with it and if it solves your needs.
- Other New Things:
- Windows SSL VPN Upgraded - New Client which supports X64 and many other options (download again via the UserPortal)
- Improved HTTP Caching - Increases hit/usage rates and makes the cache more effective.
- Quarantine/UserPortal Usability - Adds navigation to the bottom (supplementing the existing controls at the top), large amounts (250-1000) of displayed items per page, and sorting by subject line.
- Default Definition for "Internet" - Allows to specify "Internet" as an object which will exclude internal network(s) to aid policy creation (0.0.0.0/0 on Gateway interface)
- Customizable Shortcuts - Change the default Ctrl assignments to fit your preference
- Improved Definition/Services Sidebar - Mouseover now instantly shows full name and extended info to aid identifying desired object for drag n drop.
- User List shows static IPs - if assigned/configured (no need to edit in order to view)
- Live Log Negation - use to filter live logs to not show lines that match "-" entries i.e. -test to remove lines containing "test"
- Console/SSH Logins Trigger a notification - provides admin the needed insight when accessed.
- Instant Email Backup - Button for every created backup file which allows it to be sent immediately via email to configured addresses
- Custom text for notifications - Allows easier identification of which installation is sending the message. Especially useful if managing multiple sites using notifiers.
- Test NTP Sync - Button to immediately poll the configured NTP server
- Automatic Backup before Up2Date install
- Configurable Default for Lists - Allows for the amount of items per page (Packet Filter Rules, or anywhere there is a number amounts drop down) to have a larger default view
- Cluster/HA Serial Number View - Information on connected units made easier
- Schedule Firmware Installation - When an Up2Date for Firmware is available, you can schedule it to auto-install at a certain time (not a recurring setting)
- WebAdmin Network Section Split - Now two sections; "Network" and "Network Services" for usability.
- Search Boxes Retain Data - No need to re-enter query when returning from a drill down/result click.
- System Restart Reason - Allows logging of "why was system restarted" in the notification
- Group Tool tips for Members - Easily discern Network/Service Group members without having to edit in order to view
- Reporting Exclusions - Used to remove unwanted entries from various reports (such as Google-analytics from Web Security tables
- Log Flag for NAT Rules - Similar to packet filter, tells you which NAT rule was matched as part of traffic handling
- Masquerading for Additional IP Addresses - Allows the use of Masquerading (vs. just SNAT) for additional IPs bound to an interface
- Support for Multiple Authentication Servers - The authentication server section has been redesigned to support fallback/failover in an easier format, with many usability improvements
- SNMP MIB - Downloadable via the SNMP section of WebAdmin
- Up2date Status Reworked - Clarifies the current status of a Firmware Up2date to avoid confusion regarding the availability, download progress etc...of an issued Up2date.
- Inline/Snap Report Links - Directly moves the Admin to the relevant details report when browsing the embedded daily reports located throughout WebAdmin
- Global POP3 Sender Blacklist - Quarantined as "other" in the QM/EUP
- Dashboard RSS Feed - Provides visibility to select Astaro-issued items via WebAdmin
- Other magic features, enhancements, and usability improvements
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above idpack plus 7.5 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed
Featured Software
Want to place your software product here?
Please contact us for consideration.
Contact WareSeeker.com
Sponsored Links
Related Information
Top Popular Software
Editor's Picks Software