easy with jasperreports
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 56
JasperReports 2.0.0
JasperReports is a Java reporting library. more>>
JasperReports is a powerful open source Java reporting tool that has the ability to deliver rich content onto the screen, to the printer or into PDF, HTML, XLS, CSV and XML files.
It is entirely written in Java and can be used in a variety of Java enabled applications, including J2EE or Web applications, to generate dynamic content.
JasperReports is main purpose is to help creating page oriented, ready to print documents in a simple and flexible manner.
Main features:
- Report Design
- Header Sections
- Footer Sections
- Columns
- Groups
- Calculations
- Text format
- Images
Enhancements:
- This version introduces support for external style templates, a new report section for better control over empty reports, an enhanced XLS exporter, and various bugfixes and improvements.
<<lessIt is entirely written in Java and can be used in a variety of Java enabled applications, including J2EE or Web applications, to generate dynamic content.
JasperReports is main purpose is to help creating page oriented, ready to print documents in a simple and flexible manner.
Main features:
- Report Design
- Header Sections
- Footer Sections
- Columns
- Groups
- Calculations
- Text format
- Images
Enhancements:
- This version introduces support for external style templates, a new report section for better control over empty reports, an enhanced XLS exporter, and various bugfixes and improvements.
Download (1.3MB)
Added: 2007-08-14 License: LGPL (GNU Lesser General Public License) Price:
640 downloads
iReport Designer for JasperReports 2.0.0
iReport is a visual reporting tool based on JasperReports and written in pure Java. more>>
iReport project is a powerful, intuitive and easy to use visual report builder/designer for JasperReports written in 100% pure java.
This tool allows users to visually edit complex reports with charts, images, subreports,.... iReport is integrated with JFreeChart, one of the most diffused OpenSource chart library for java.
The data to print can be retrieved through several ways including multiple JDBC connections, TableModels, JavaBeans, XML, etc...
Enhancements:
- Full support for JasperReports 1.3.4.
- A new XML field mapping tool.
- A new document structure outline.
- Improved refactoring capabilities.
- An improved report query dialog.
- An improved UI with sortable tables.
- Several bugfixes.
<<lessThis tool allows users to visually edit complex reports with charts, images, subreports,.... iReport is integrated with JFreeChart, one of the most diffused OpenSource chart library for java.
The data to print can be retrieved through several ways including multiple JDBC connections, TableModels, JavaBeans, XML, etc...
Enhancements:
- Full support for JasperReports 1.3.4.
- A new XML field mapping tool.
- A new document structure outline.
- Improved refactoring capabilities.
- An improved report query dialog.
- An improved UI with sortable tables.
- Several bugfixes.
Download (33.2MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
669 downloads
SWTJasperViewer 1.1.1
SWTJasperViewer is a JasperReports viewer component for SWT/JFace based applications and Eclipse plug-ins. more>>
SWTJasperViewer is a JasperReports viewer component for SWT/JFace based applications and Eclipse plug-ins. The component is designed with reusability in mind so it can suit as many projects as possible.
SWTJasperViewer is developed as part of the JasperAssistant report designer where its used for report preview.
SWTJasperViewer component is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
Main features:
- "What you see is what you get" visual report designer.
- Complete integration with Eclipse IDE environment.
- An integrated report compiler.
- Report preview support
- Report Export wizard
- Support for compiled report files (*.jasper)
- Drag-and-drop interface.
- Unlimited Undo/Redo support.
- Cut/Copy/Paste support.
- Properties View.
- Outline View.
- Problems/Tasks View.
- Intuitive Context Menus.
- A dedicated toolbar for text objects.
- Zoom support.
- A customizable palette.
- A comprehensive set of align and resize actions.
- Intuitive Expression Editor.
- Integrated user documentation.
- Field Wizard.
- Grid and Snap To Grid support.
- Rulers, Guides and Snap to Guides support.
- Extensible shortcuts support.
- Full support for JasperReports data sources.
<<lessSWTJasperViewer is developed as part of the JasperAssistant report designer where its used for report preview.
SWTJasperViewer component is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
Main features:
- "What you see is what you get" visual report designer.
- Complete integration with Eclipse IDE environment.
- An integrated report compiler.
- Report preview support
- Report Export wizard
- Support for compiled report files (*.jasper)
- Drag-and-drop interface.
- Unlimited Undo/Redo support.
- Cut/Copy/Paste support.
- Properties View.
- Outline View.
- Problems/Tasks View.
- Intuitive Context Menus.
- A dedicated toolbar for text objects.
- Zoom support.
- A customizable palette.
- A comprehensive set of align and resize actions.
- Intuitive Expression Editor.
- Integrated user documentation.
- Field Wizard.
- Grid and Snap To Grid support.
- Rulers, Guides and Snap to Guides support.
- Extensible shortcuts support.
- Full support for JasperReports data sources.
Download (MB)
Added: 2007-07-06 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
Configuration with no services supported
Configuration with no services supported script is for a single host firewall configuration with no services supported. more>>
Configuration with no services supported script is for a single host firewall configuration with no services supported by the firewall machine itself.
Sample:
# USER CONFIGURABLE SECTION
# The name and location of the ipchains utility.
IPTABLES=iptables
# The path to the ipchains executable.
PATH="/usr/local/sbin"
# Our internal network address space and its supporting network device.
OURNET="10.5.0.0/24"
OURBCAST="10.5.0.255"
OURDEV="eth0"
# The outside address and the network device that supports it.
ANYADDR="0/0"
ANYDEV="ppp0"
# The TCP services we wish to allow to pass - "" empty means all ports
# note: comma separated
TCPIN="ssh,ftp,ftp-data"
TCPOUT="smtp,www,ssh,telnet,ftp,ftp-data,irc,http"
# The UDP services we wish to allow to pass - "" empty means all ports
# note: comma separated
UDPIN="domain"
UDPOUT="domain"
# The ICMP services we wish to allow to pass - "" empty means all types
# ref: /usr/include/netinet/ip_icmp.h for type numbers
# note: comma separated
ICMPIN="0,3,11"
ICMPOUT="8,3,11"
# Logging; uncomment the following line to enable logging of datagrams
# that are blocked by the firewall.
# LOGGING=1
# END USER CONFIGURABLE SECTION
####################################
# Flush the Input table rules
echo -n Flushing forward... && {
$IPTABLES -F FORWARD
} && echo done
# We want to deny incoming access by default.
# echo -n Denying incoming access... && {
# $IPTABLES -P FORWARD drop
# } && echo done
# Drop all datagrams destined for this host received from outside.
echo -n Dropping incoming datagrams... && {
$IPTABLES -A INPUT -i $ANYDEV -j DROP
} && echo done
# SPOOFING
# We should not accept any datagrams with a source address matching ours
# from the outside, so we deny them.
echo -n Preventing spoofing... && {
$IPTABLES -A FORWARD -s $OURNET -i $ANYDEV -j DROP
} && echo done
# SMURF
# Disallow ICMP to our broadcast address to prevent "Smurf" style attack.
echo -n Preventing SMURFs... && {
$IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET -j DROP
} && echo done
# We should accept fragments, in iptables we must do this explicitly.
echo -n Accepting fragments... && {
$IPTABLES -A FORWARD -f -j ACCEPT
} && echo done
# TCP
# We will accept all TCP datagrams belonging to an existing connection
# (i.e. having the ACK bit set) for the TCP ports were allowing through.
# This should catch more than 95 % of all valid TCP packets.
echo -n Accepting valid incoming tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -d $OURNET --dports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
echo -n Accepting valid outgoing tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -s $OURNET --sports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
# TCP - INCOMING CONNECTIONS
# We will accept connection requests from the outside only on the
# allowed TCP ports.
echo -n Accepting incoming tcp connections on allowed ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $ANYDEV -d $OURNET --dports $TCPIN --syn -j ACCEPT
} && echo done
# TCP - OUTGOING CONNECTIONS
# We will accept all outgoing tcp connection requests on the allowed TCP ports.
echo -n Accepting outgoing traffic on allowed tcp ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $OURDEV -d $ANYADDR --dports $TCPOUT --syn -j ACCEPT
} && echo done
# UDP - INCOMING
# allow UDP datagrams in on the allowed ports and back.
echo -n Allowing UDP datagrams in on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -d $OURNET --dports $UDPIN -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -s $OURNET --sports $UDPIN -j ACCEPT
} && echo done
# UDP - OUTGOING
# We will allow UDP datagrams out to the allowed ports and back.
echo -n Allowing UDP datagrams out on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -d $ANYADDR --dports $UDPOUT -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -s $ANYADDR --sports $UDPOUT -j ACCEPT
} && echo done
# ICMP - INCOMING
# We will allow ICMP datagrams in of the allowed types.
# echo -n Allowing ICMP datagrams in of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET --icmp-type $ICMPIN -j ACCEPT
# } && echo done
# ICMP - OUTGOING
# We will allow ICMP datagrams out of the allowed types.
# echo -n Allowing ICMP datagrams out of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $OURDEV -d $ANYADDR --icmp-type $ICMPOUT -j ACCEPT
# } && echo done
# DEFAULT and LOGGING
# All remaining datagrams fall through to the default
# rule and are dropped. They will be logged if youve
# configured the LOGGING variable above.
#
# DoS
# enabling Syn-flood protection
echo -n Enabling Syn-flood protection... && {
iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling Furtive port scanner protection
echo -n Enabling Furtive port scanner protection... && {
iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling ping of death protection
echo -n Enabling ping of death protection... && {
iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
} && echo done
if [ "$LOGGING" ]
then
# Log barred TCP
$IPTABLES -A FORWARD -m tcp -p tcp -j LOG
# Log barred UDP
$IPTABLES -A FORWARD -m udp -p udp -j LOG
# Log barred ICMP
$IPTABLES -A FORWARD -m udp -p icmp -j LOG
fi
#
# end.
<<lessSample:
# USER CONFIGURABLE SECTION
# The name and location of the ipchains utility.
IPTABLES=iptables
# The path to the ipchains executable.
PATH="/usr/local/sbin"
# Our internal network address space and its supporting network device.
OURNET="10.5.0.0/24"
OURBCAST="10.5.0.255"
OURDEV="eth0"
# The outside address and the network device that supports it.
ANYADDR="0/0"
ANYDEV="ppp0"
# The TCP services we wish to allow to pass - "" empty means all ports
# note: comma separated
TCPIN="ssh,ftp,ftp-data"
TCPOUT="smtp,www,ssh,telnet,ftp,ftp-data,irc,http"
# The UDP services we wish to allow to pass - "" empty means all ports
# note: comma separated
UDPIN="domain"
UDPOUT="domain"
# The ICMP services we wish to allow to pass - "" empty means all types
# ref: /usr/include/netinet/ip_icmp.h for type numbers
# note: comma separated
ICMPIN="0,3,11"
ICMPOUT="8,3,11"
# Logging; uncomment the following line to enable logging of datagrams
# that are blocked by the firewall.
# LOGGING=1
# END USER CONFIGURABLE SECTION
####################################
# Flush the Input table rules
echo -n Flushing forward... && {
$IPTABLES -F FORWARD
} && echo done
# We want to deny incoming access by default.
# echo -n Denying incoming access... && {
# $IPTABLES -P FORWARD drop
# } && echo done
# Drop all datagrams destined for this host received from outside.
echo -n Dropping incoming datagrams... && {
$IPTABLES -A INPUT -i $ANYDEV -j DROP
} && echo done
# SPOOFING
# We should not accept any datagrams with a source address matching ours
# from the outside, so we deny them.
echo -n Preventing spoofing... && {
$IPTABLES -A FORWARD -s $OURNET -i $ANYDEV -j DROP
} && echo done
# SMURF
# Disallow ICMP to our broadcast address to prevent "Smurf" style attack.
echo -n Preventing SMURFs... && {
$IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET -j DROP
} && echo done
# We should accept fragments, in iptables we must do this explicitly.
echo -n Accepting fragments... && {
$IPTABLES -A FORWARD -f -j ACCEPT
} && echo done
# TCP
# We will accept all TCP datagrams belonging to an existing connection
# (i.e. having the ACK bit set) for the TCP ports were allowing through.
# This should catch more than 95 % of all valid TCP packets.
echo -n Accepting valid incoming tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -d $OURNET --dports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
echo -n Accepting valid outgoing tcp datagrams on existing connections... && {
$IPTABLES -A FORWARD -m multiport -p tcp -s $OURNET --sports $TCPIN ! --tcp-flags SYN,ACK ACK -j ACCEPT
} && echo done
# TCP - INCOMING CONNECTIONS
# We will accept connection requests from the outside only on the
# allowed TCP ports.
echo -n Accepting incoming tcp connections on allowed ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $ANYDEV -d $OURNET --dports $TCPIN --syn -j ACCEPT
} && echo done
# TCP - OUTGOING CONNECTIONS
# We will accept all outgoing tcp connection requests on the allowed TCP ports.
echo -n Accepting outgoing traffic on allowed tcp ports... && {
$IPTABLES -A FORWARD -m multiport -p tcp -i $OURDEV -d $ANYADDR --dports $TCPOUT --syn -j ACCEPT
} && echo done
# UDP - INCOMING
# allow UDP datagrams in on the allowed ports and back.
echo -n Allowing UDP datagrams in on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -d $OURNET --dports $UDPIN -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $ANYDEV -s $OURNET --sports $UDPIN -j ACCEPT
} && echo done
# UDP - OUTGOING
# We will allow UDP datagrams out to the allowed ports and back.
echo -n Allowing UDP datagrams out on the allowed ports and back... && {
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -d $ANYADDR --dports $UDPOUT -j ACCEPT
$IPTABLES -A FORWARD -m multiport -p udp -i $OURDEV -s $ANYADDR --sports $UDPOUT -j ACCEPT
} && echo done
# ICMP - INCOMING
# We will allow ICMP datagrams in of the allowed types.
# echo -n Allowing ICMP datagrams in of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $ANYDEV -d $OURNET --icmp-type $ICMPIN -j ACCEPT
# } && echo done
# ICMP - OUTGOING
# We will allow ICMP datagrams out of the allowed types.
# echo -n Allowing ICMP datagrams out of the allowed types... && {
# $IPTABLES -A FORWARD -p icmp -i $OURDEV -d $ANYADDR --icmp-type $ICMPOUT -j ACCEPT
# } && echo done
# DEFAULT and LOGGING
# All remaining datagrams fall through to the default
# rule and are dropped. They will be logged if youve
# configured the LOGGING variable above.
#
# DoS
# enabling Syn-flood protection
echo -n Enabling Syn-flood protection... && {
iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling Furtive port scanner protection
echo -n Enabling Furtive port scanner protection... && {
iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
} && echo done
# Enabling ping of death protection
echo -n Enabling ping of death protection... && {
iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
} && echo done
if [ "$LOGGING" ]
then
# Log barred TCP
$IPTABLES -A FORWARD -m tcp -p tcp -j LOG
# Log barred UDP
$IPTABLES -A FORWARD -m udp -p udp -j LOG
# Log barred ICMP
$IPTABLES -A FORWARD -m udp -p icmp -j LOG
fi
#
# end.
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
982 downloads
Send with Kopete 0.11
Send with Kopete is a servicemenu for sending files with Kopete application. more>>
Send with Kopete is a servicemenu for sending files with Kopete application. It shows a dialog containing all contacts in Kopete which are able to receive files and after selecting one of them, the file is sent to that contact.
Ive tested it only with jabber protocol (the only one I can use for sending files). Servicemenu was tested with KDE 3.5.4 and Kopete 0.12.2.
Although the script used by this servicemenu is very simple, Im sure there are some bugs, so feedback is very welcome.
Installation:
After decompressing the archive, you should put the swk.sh script somwhere in your PATH directory and eventually change its owner and acces permissions to be executable. The other file, send_with_kopete.desktop, should be placed in your servicemenus directory (in my case it is ~/.kde/share/apps/konqueror/servicemenus).
Enhancements:
- Fixed bug in script, which caused wrong handling of files containing spaces
<<lessIve tested it only with jabber protocol (the only one I can use for sending files). Servicemenu was tested with KDE 3.5.4 and Kopete 0.12.2.
Although the script used by this servicemenu is very simple, Im sure there are some bugs, so feedback is very welcome.
Installation:
After decompressing the archive, you should put the swk.sh script somwhere in your PATH directory and eventually change its owner and acces permissions to be executable. The other file, send_with_kopete.desktop, should be placed in your servicemenus directory (in my case it is ~/.kde/share/apps/konqueror/servicemenus).
Enhancements:
- Fixed bug in script, which caused wrong handling of files containing spaces
Download (MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1116 downloads
Antivirus Scan with F-Prot 0.5
Antivirus Scan with F-Prot is a simple servicemenu for konqueror that allows to scan single or multiple files and folders. more>>
Antivirus Scan with F-Prot is a simple servicemenu for konqueror that allows to scan single or multiple files and folders using the F-Prot Antivirus. Antivirus Scan with F-Prot shows the result of the scanning in a textbox using kdialog. It can also show the progress of the scanning in a terminal.
I hope you may find it useful.
Comments or/and translations are welcome.
TO INSTALL: extract the content of the tarball and copy the file f-prot_virus_scan.desktop into ~/.kde/share/apps/konqueror/servicemenus (just for your user) or in /usr/share/apps/konqueror/servicemenus, /opt/kde/share/apps/konqueror/servicemenus... etc, depending on your distro, to make it system-wide.
This is only the service-menu, you need to have F-Prot antivirus installed on your system.
Enhancements:
- Added Danish translation by Kefeus
<<lessI hope you may find it useful.
Comments or/and translations are welcome.
TO INSTALL: extract the content of the tarball and copy the file f-prot_virus_scan.desktop into ~/.kde/share/apps/konqueror/servicemenus (just for your user) or in /usr/share/apps/konqueror/servicemenus, /opt/kde/share/apps/konqueror/servicemenus... etc, depending on your distro, to make it system-wide.
This is only the service-menu, you need to have F-Prot antivirus installed on your system.
Enhancements:
- Added Danish translation by Kefeus
Download (MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1187 downloads
Riding With Robots 0.1
Riding With Robots is a SuperKaramba theme to ride along with the armada of robotic space probes now exploring the Solar System. more>>
Riding With Robots is a SuperKaramba theme to ride along with the armada of robotic space probes now exploring the Solar System.
Its a Linux implementation of the Riding With Robots Dashboard widget that has been popular on Mac OS X. It brings the latest downlink from RidingWithRobots.org right to your desktop, automatically checking for updates every few hours.
Double-clicking the widget will launch Firefox and bring you to the site for more information.
This 0.1 version has only been tested on SUSE Linux 10 in KDE. Im very open to suggestions for improvement.
<<lessIts a Linux implementation of the Riding With Robots Dashboard widget that has been popular on Mac OS X. It brings the latest downlink from RidingWithRobots.org right to your desktop, automatically checking for updates every few hours.
Double-clicking the widget will launch Firefox and bring you to the site for more information.
This 0.1 version has only been tested on SUSE Linux 10 in KDE. Im very open to suggestions for improvement.
Download (0.016MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1275 downloads
Easy Shape 0.1
Easy Shape is a web-based frontend written in HTML/PHP for managing and graphing traffic/bandwidth flows under Linux. more>> <<less
Download (0.015MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1498 downloads
DBsight 1.4.5 (Bundled with App Server)
DBSight is a J2EE search platform for rapidly developing search engines on any relational database. more>>
DBSight is a J2EE search platform for rapidly developing search engines on any relational database, for both beginners and experts. Its scalable, easy to create, and fast to search.
It features a built-in database crawler following user-defined SQL, incremental indexing, user-controllable result ranking, the ability to return results with highlights (like Google), and categorized result counts (like Amazon).
The project can easily integrate with a non-Java environment with XML/JSON. There is a UI for all operations, so no Java coding is necessary.
Main features:
- Adjust Ranking by combination of relevance and fields like product price, score, comments cout, etc
- Summarized and highlighted results
- Amazon-like Results counted for each category, and sub-category
- Order results by the field you choose
- Recent searches history
- RSS feed for latest match
- Spelling check
- Pagination of the results
- Automatic results clustering
- Multi-Server mode for Server Clustering
Enhancements:
- booleanOperator was added to dynamically change the boolean logic operators AND or OR.
- The server-wide free index size was increased to 100GB.
- The Filter class was exposed for customization.
- CommaSemicolonAnalyzer was added for the Keywords type.
- An ignored minimum wildcard word length was fixed, and was introduced in 1.4.1.
- jQuery is used to view the indexing log.
<<lessIt features a built-in database crawler following user-defined SQL, incremental indexing, user-controllable result ranking, the ability to return results with highlights (like Google), and categorized result counts (like Amazon).
The project can easily integrate with a non-Java environment with XML/JSON. There is a UI for all operations, so no Java coding is necessary.
Main features:
- Adjust Ranking by combination of relevance and fields like product price, score, comments cout, etc
- Summarized and highlighted results
- Amazon-like Results counted for each category, and sub-category
- Order results by the field you choose
- Recent searches history
- RSS feed for latest match
- Spelling check
- Pagination of the results
- Automatic results clustering
- Multi-Server mode for Server Clustering
Enhancements:
- booleanOperator was added to dynamically change the boolean logic operators AND or OR.
- The server-wide free index size was increased to 100GB.
- The Filter class was exposed for customization.
- CommaSemicolonAnalyzer was added for the Keywords type.
- An ignored minimum wildcard word length was fixed, and was introduced in 1.4.1.
- jQuery is used to view the indexing log.
Download (18.7MB)
Added: 2007-08-06 License: Free for non-commercial use Price:
809 downloads
Install rpm with smart 0.2
Install rpm with smart package is a service menu used to click on a rpm file and call smart-pm to install it. more>>
Install rpm with smart package is a service menu used to click on a rpm file and call smart-pm to install it. Its designed for Ekaaty Linux but must run on every KDE.
Installation:
Copy desktop fiiles to your KDE directory:
cp smart-install.desktop .kde/share/apps/konqueror/servicemenus/
cp smart-rpm-install.desktop .kde/share/applnk/
Give read permissions to these files:
chmod 644 .kde/share/apps/konqueror/servicemenus/smart-install.desktop
chmod 644 .kde/share/applnk/smart-rpm-install.desktop
Enhancements:
- Use xdg-su for better desktop integration
- More compatible with other RPM distros
<<lessInstallation:
Copy desktop fiiles to your KDE directory:
cp smart-install.desktop .kde/share/apps/konqueror/servicemenus/
cp smart-rpm-install.desktop .kde/share/applnk/
Give read permissions to these files:
chmod 644 .kde/share/apps/konqueror/servicemenus/smart-install.desktop
chmod 644 .kde/share/applnk/smart-rpm-install.desktop
Enhancements:
- Use xdg-su for better desktop integration
- More compatible with other RPM distros
Download (MB)
Added: 2007-02-24 License: GPL (GNU General Public License) Price:
975 downloads
easy TreeManager 0.1.0
easy TreeManager provides a bookmark manager for group of users. more>>
easy TreeManager provides a bookmark manager for group of users.
easy TreeManager is a kind of onsite bookmark manager for a group of users. Once logged in, you can access all links managed in the navigation tree.
These links can be organized by using folders and by ordering them.
The Administrator can add, delete and edit links and assign these rights to other users, too.
<<lesseasy TreeManager is a kind of onsite bookmark manager for a group of users. Once logged in, you can access all links managed in the navigation tree.
These links can be organized by using folders and by ordering them.
The Administrator can add, delete and edit links and assign these rights to other users, too.
Download (1.7MB)
Added: 2007-02-01 License: MPL (Mozilla Public License) Price:
996 downloads
Americas Army v2.8.0 (Coalition) with Dedicated Server for Linux
Americas Army is one of the five most popular action games played online. more>>
Americas Army is one of the five most popular action games played online. It provides players with the most authentic military experience available, from exploring the development of Soldiers in individual and collective training to their deployment in simulated missions in the War on Terror.
Americas Army: Special Forces is the follow-up to Americas Army: Operations, which was released on July 4, 2002.
In Americas Army: Special Forces, players attempt to earn Green Beret status by completing individual and collective training missions drawn from the Special Forces Assignment and Selection (SFAS) process.
Players who complete the SFAS process have the opportunity to take on elite Special Forces roles and are qualified to play in multiplayer missions with units ranging from the elite 82d Airborne Division to the 75th Ranger Regiment.
Includes the complete game Americas Army: Operations.
Main features:
- Authentic U.S. Army experience Realistic depiction of the values, units, equipment and career opportunities that make the Army the worlds premier land force continually updated to incorporate new occupations, units, technologies and adventures.
- Realistic roles Including Weapons Specialist (18B), Intelligence (18F), Engineer (18C), Communications (18E) and Combat Medic (18D).
- Challenging Green Beret training Complete training missions drawn from the SFAS process at Fort Bragg. Successfully complete SFAS and advance to Special Forces Qualification Course (Q-Course) missions to explore new Special Forces roles.
- Intense Special Forces action Intense Special Forces action Experience multiplayer missions in simulated combat environments. Take part in missions that span the capabilities of a Special Forces detachment, including unconventional warfare, direct action, surveillance and reconnaissance and Combat Search and Rescue.
- Detailed Special Forces equipment and military hardware Building on the equipment available in Americas Army: Operations, Americas Army: Special Forces adds the M4 Carbine featuring the Picatinny rail mod system for attaching laser-aiming devices and sighting systems; the MP5SD6 Remington 870 shotgun for forced entry; the AT4, a shoulder-fired anti-tank rocket and the BDM, a shoulder-fired bunker demolition munition.
- Accurate Soldier behavior Players are bound by the laws of land warfare, Army values (honor, duty and integrity) and realistic rules of engagement as they navigate challenges in teamwork-based multiplayer force vs. force operations. Mission accomplishment standings are evaluated based on team effort and adherence to a set of values and norms of conduct.
<<lessAmericas Army: Special Forces is the follow-up to Americas Army: Operations, which was released on July 4, 2002.
In Americas Army: Special Forces, players attempt to earn Green Beret status by completing individual and collective training missions drawn from the Special Forces Assignment and Selection (SFAS) process.
Players who complete the SFAS process have the opportunity to take on elite Special Forces roles and are qualified to play in multiplayer missions with units ranging from the elite 82d Airborne Division to the 75th Ranger Regiment.
Includes the complete game Americas Army: Operations.
Main features:
- Authentic U.S. Army experience Realistic depiction of the values, units, equipment and career opportunities that make the Army the worlds premier land force continually updated to incorporate new occupations, units, technologies and adventures.
- Realistic roles Including Weapons Specialist (18B), Intelligence (18F), Engineer (18C), Communications (18E) and Combat Medic (18D).
- Challenging Green Beret training Complete training missions drawn from the SFAS process at Fort Bragg. Successfully complete SFAS and advance to Special Forces Qualification Course (Q-Course) missions to explore new Special Forces roles.
- Intense Special Forces action Intense Special Forces action Experience multiplayer missions in simulated combat environments. Take part in missions that span the capabilities of a Special Forces detachment, including unconventional warfare, direct action, surveillance and reconnaissance and Combat Search and Rescue.
- Detailed Special Forces equipment and military hardware Building on the equipment available in Americas Army: Operations, Americas Army: Special Forces adds the M4 Carbine featuring the Picatinny rail mod system for attaching laser-aiming devices and sighting systems; the MP5SD6 Remington 870 shotgun for forced entry; the AT4, a shoulder-fired anti-tank rocket and the BDM, a shoulder-fired bunker demolition munition.
- Accurate Soldier behavior Players are bound by the laws of land warfare, Army values (honor, duty and integrity) and realistic rules of engagement as they navigate challenges in teamwork-based multiplayer force vs. force operations. Mission accomplishment standings are evaluated based on team effort and adherence to a set of values and norms of conduct.
Download (2100MB)
Added: 2007-01-08 License: Freeware Price:
1019 downloads
Edit with gvim - with GVIM serverlist 070306
Edit with gvim - with GVIM serverlist is a Edit with gvim context menu in Konqueror. more>>
Edit with gvim - with GVIM serverlist is a "Edit with gvim" context menu in Konqueror. Has support for gvims serverlist. This lets you open a file into any already running gvim instance.
This is something I saw in Windows Explorer when I was using gvim there. After using it I couldnt believe I actually got around without it. Really good stuff. Since Konqueror is so incredibly-fantastic I was SURE it could do it as well. And it does!
How it works:
You run the ruby script which daemonizes itself. The daemon checks how many gvim instances there are running. It writes the serverlist info to a temporary file in /tmp in the format of a regular service menu. When done, it copies that to ~/.kde/share/apps/konqueror/servicemenus/gvim_servers.desktop
Then removes the temporary file and sleeps for 10 seconds. When it wakes up the cycle repeats, etc, etc.
Cons:
1. needs the RUBY interpreter
2. runs as a daemon
3. 10 second delay between updates (you can change this)
INSTALL:
Text based setup: run as root ./setup.py
GUI bases setup: run as root ./gui-setup.py
See ./setup.py --help for more options
<<lessThis is something I saw in Windows Explorer when I was using gvim there. After using it I couldnt believe I actually got around without it. Really good stuff. Since Konqueror is so incredibly-fantastic I was SURE it could do it as well. And it does!
How it works:
You run the ruby script which daemonizes itself. The daemon checks how many gvim instances there are running. It writes the serverlist info to a temporary file in /tmp in the format of a regular service menu. When done, it copies that to ~/.kde/share/apps/konqueror/servicemenus/gvim_servers.desktop
Then removes the temporary file and sleeps for 10 seconds. When it wakes up the cycle repeats, etc, etc.
Cons:
1. needs the RUBY interpreter
2. runs as a daemon
3. 10 second delay between updates (you can change this)
INSTALL:
Text based setup: run as root ./setup.py
GUI bases setup: run as root ./gui-setup.py
See ./setup.py --help for more options
Download (0.002MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
970 downloads
SSH with Keys HOWTO 0.08
SSH with Keys HOWTO is a document which shows how to use SSH with keys, passphrases, and ssh-agent. more>>
SSH with Keys HOWTO is a document which shows how to use SSH with keys, passphrases, and ssh-agent.
For those of you who have been using SSH for a while, you will probably understand its advantages over the previous telnet style applications such as telnet and remote shell.
Although SSH with keys has always been there, not many people know what it is about, and how you can utilize its strenghts to make your life as a system administrator a bit more easy.
<<lessFor those of you who have been using SSH for a while, you will probably understand its advantages over the previous telnet style applications such as telnet and remote shell.
Although SSH with keys has always been there, not many people know what it is about, and how you can utilize its strenghts to make your life as a system administrator a bit more easy.
Download (MB)
Added: 2006-10-04 License: (FDL) GNU Free Documentation License Price:
1117 downloads
easy emailsManager 0.0.1
easy emailsManager (eEM) is a Web-based multi-user application for managing email. more>>
easy emailsManager (eEM) is a Web-based multi-user application for managing email.
easy emailsManager can manage multiple email accounts with different protocols (IMAP, POP3, NNTP) and share selected email with other users (of your own group, for example).
Main features:
- User, Group and Permission Management
- Emails Management
- German and English
- Editable Navigation tree
- Mandators (experimental)
- Extensible by plugins (experimental)
<<lesseasy emailsManager can manage multiple email accounts with different protocols (IMAP, POP3, NNTP) and share selected email with other users (of your own group, for example).
Main features:
- User, Group and Permission Management
- Emails Management
- German and English
- Editable Navigation tree
- Mandators (experimental)
- Extensible by plugins (experimental)
Download (2.5MB)
Added: 2006-03-10 License: MPL (Mozilla Public License) Price:
1325 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above easy with jasperreports 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