Main > Free Download Search >

Free sporting software for linux

sporting

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 66
SportStat 0.2.2

SportStat 0.2.2


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

SmokePing 2.1.0


SmokePing is a network latency monitor similar to MRTG. more>>
SmokePing is a delux latency measurement tool. SmokePing project can measure, store and display latency, latency distribution and packet loss. SmokePing uses RRDtool to maintain a longterm datastore and to draw pretty graphs, giving up to the minute information on the state of each network connection.
SmokePing uses latency measurement plugins for seamless extendability.
SmokePing comes with a smart alarm system. Apart from simple threshold alarms, you have the option of defining latency or loss patterns and use them to trigger alarms.
This allows you to define a pattern which would generate a single alarm when the loss goes from below 1% to over 20% and stays over 20% for more than 10 minutes. The advantage of this approach is the virtual elimination of duplicate alarms which you would get with a simple threshold based system.
Alarms can be sent to a mail address or a pager and if you want you can also start an external script to handle the alarms.
Complex Alarms can be written as plug-ins.
SmokePing can also deal with machines who frequently change their IP address by allowing the remote host to call SmokePings attention to its new IP address. In such a setup SmokePing monitors also for how long the remote system could keep its IP address.
To ensure that it is not suddenly monitoring the wrong host, SmokePing further tries to fingerprint each of its Dynamic IP targets via SNMP.
SmokePing is written in Perl. It consists of a daemon process responsible for data collection and a CGI script presenting the data on the web.
The CGI script uses SpeedyCGI to achieve mod_perl like performance without the need to deploy mod_perl on your web server. SmokePing sports a plug-in architecture to easily add new latency measurement capabilities to SmokePing. SmokePing works happily on all Unix platforms.
Enhancements:
- The scoreboard has a list of hottest targets.
- Echoping V6 compatibility.
- Mail templates.
- A failover server for alert email messages.
- Many new plugins.
- Several bugfixes.
<<less
Download (0.37MB)
Added: 2007-04-29 License: GPL (GNU General Public License) Price:
922 downloads
Konversation 1.0.1

Konversation 1.0.1


Konversation is a user friendly Internet Relay Chat client. more>>
Konversation project is a user friendly Internet Relay Chat client.
Enhancements:
- A bug that caused left-to-right text contained in lines determined to be right-to-left text to appear reversed has been fixed.
- Whether a line is treated as right-to-left vs. left-to-right text is now determined by the amount of each type of character in the line, improving the user experience in chats involving bi-directional text considerably.
- The "Edit Network" dialog has been refined for clarity and ease of use.
- A warning dialog to prevent accidentally quitting Konversation has been added.
- The Auto Replace list can now be sorted.
- The /media script command now sports improved player recognition, enhanced and easier configurability, the ability to distinguish between audio and video media as well as newly added support for kdetv. New /audio and /video command aliases have been added to expose these new abilities.
- The lower boundary of the default DCC port range has been raised from 1025 to 1026 to avoid conflicts with the commonly blocked Windows RPC port 1025.
- Dismissing an OSD notification by clicking on it will now also cancel the systray notification flash.
- A new configuration file option [OSD]OSDCheckDesktopLock has been added, allowing to manually disable the screensaver check in non-KDE environments that do not support it, causing the OSD not to be displayed.
- A bug that could lead to the "Switch to" sub-menu in the context menus of tabs not to be updated properly upon switching tabs has been fixed.
- A bug that caused the irc setBack DCOP call not to function has been fixed.
- A bug that caused ampersands in the names of tabs not to be displayed and an immediately following character to be used as keyboard accelerator has been fixed.
- A bug that caused ignoring nicknames with [ or ] characters in them to fail has been fixed.
- Command aliases containing regular expression syntax can no longer cause built-in commands not to function.
- A bug that caused the Konversation irc:// protocol handler not to function has been fixed. Its compatibility with systems that do not use the GNU bash shell as default shell has been improved.
- A notable number of code quality improvements suggested by KDEs automated quality control service EBN have been implemented.
<<less
Download (5.6MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1116 downloads
SportsTracker 2.5.1

SportsTracker 2.5.1


SportsTracker is an application for recording sporting activities. more>>
SportsTracker is an application for people which want to record their sporting activities. SportsTracker is not bound to a specific kind of sport, the user can create categories for all sport types which are endurance related, such as cycling, running or swimming.

The main advantage is a good overview of your exercises and you can easily create diagrams and statistics for specific time ranges and sport types.

If you own a heartrate monitor with a computer interface you can organize the recorded exercise files by attaching them to the exercise entries and view them on demand. You can also import the data from the exercise files. Users of a Polar device should install PolarViewer for this feature.

All the application data is stored in XML files. So it should be easy to access it with other tools or to write importers and exporters for other applications.

<<less
Download (0.28MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
878 downloads
Snort::Rule 1.03

Snort::Rule 1.03


Snort::Rule is a Perl extension for dynamically building snort rules. more>>
Snort::Rule is a Perl extension for dynamically building snort rules.

SYNOPSIS

use Snort::Rule;
$rule = Snort::Rule->new(
-action => alert,
-proto => tcp,
-src => any,
-sport => any,
-dir => ->,
-dst => 192.188.1.1,
-dport => 44444,
);

$rule->opts(msg,Test Rule");
$rule->opts(threshold,type limit,track by_src,count 1,seconds 3600);
$rule->opts(sid,500000);

print $rule->string()."n";

OR

$rule = alert tcp $SMTP_SERVERS any -> $EXTERNAL_NET 25 (msg:"BLEEDING-EDGE POLICY SMTP US Top Secret PROPIN"; flow:to_server,established; content:"Subject|3A|"; pcre:"/(TOPsSECRET|TS)//[sw,/-]*PROPIN[sw,/-]*(?=//(25)?X[1-9])/ism"; classtype:policy-violation; sid:2002448; rev:1;);

$rule = Snort::Rule->new(-parse => $rule);
print $rule->string()."n";

This is a very simple snort rule object. It was developed to allow for scripted dynamic rule creation. Ideally you could dynamically take a list of bad hosts and build an array of snort rule objects from that list. Then write that list using the string() method to a snort rules file.

<<less
Download (0.005MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1226 downloads
Hot Potato Online 1.2.0

Hot Potato Online 1.2.0


Hot Potato Online is a fast paced arena sport game where players try to explode the opposition using a short-fused potato bomb. more>>
Hot Potato Online is a fast paced arena sport game where players try to explode the opposition using a short-fused potato bomb. Think dodgeball with a grenade!
The generated environment can be used to bounce, corner, and surprise foes.
Main features:
- Up to 4 players
- Team play
- 3 match types fully configurable
- Single player training "bot"
- 4 types of tiles (ground, solid, bounce, holes)
- Lobby and in-game "emotes"
- Last game and total results
- Potato deflection
- Overtime for first position
- Fullscreen / Window options
- In-game music and sounds
Enhancements:
- Players can join games in progress
- Button clicks can be cancelled
- Updated version system
- MSVCP71.DLL part of installation
- Fixed bug where we could not click buttons in the lobby
- Music can again be turned off (was broken since v. 1.1.0)
- Players will see a black screen while waiting for other players.
- Fixed number of "Killed-KilledBy" when playing in teams.
- Linux specific updates
- Statically linked freeglut and glpng
- Ability to change from fullscreen to window mode and vice versa,
- Fixed crash on clients when the server leaves the game,
- Cursor can be moved while loading the lobby.
<<less
Download (15.1MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
1356 downloads
RealPlayer for Linux 10

RealPlayer for Linux 10


RealPlayer for Linux Unix more>> RealPlayer is the all-in-one digital media player that lets you find anything and play everything. Now also includes an option during setup to install the Real Toolbar for Internet Explorer.
This popular streaming-media player offers improved video controls and access to 2500 radio stations.
With this version you get an improved graphic equalizer and media services, including a radio tuner and an artist and music guide. Meanwhile, the Take 5 news service can offer you daily sports updates. A new contextual video search helps you find interviews with your favorite artists. The RealPlayer music store lets you buy music files. Finally, you can use the software to transfer files to CDs and portable devices.
Features of RealPlayer 10.5 :
- Online Radio: Over 3200 stations worldwide & 60 ad-free stations for endless listening.
- Expanded Controls: Optimize sound with the 10-Band Graphic Equalizer and get the sharpest picture with advanced video controls.
- Advanced CD Burning: Rip, mix & burn CDs like a pro - fast! Encode MP3s at up to 320kbps.
- Play Everything: RealOne Player plays all major media formats including Quicktime MPEG-4, Windows Media, DVDs, & more.
- Easy, Fun & Intuitive: Browse the web, organize audio & video files, create playlists, & more!
Important Notes:
- RealPlayer may collect some presonal information. If this concerns you, please read their privacy policy here.
- This download may includes adware (and spyware) software. Adware (and spyware) software may record your surfing habits, deliver advertising, collect private information, or modify your system settings. Pay close attention to the End User License Agreement ("EULA") and installation options! We also, recommend you to run Windows Defender or other antispyware software after installation process.
<<less
Download (5.53M)
Added: 2009-04-03 License: Freeware Price: Free
203 downloads
S.C.O.U.R.G.E. 0.18

S.C.O.U.R.G.E. 0.18


S.C.O.U.R.G.E. is a 3D Rogue-like game. more>>
S.C.O.U.R.G.E. is a rogue-like game in the fine tradition of NetHack and Moria. S.C.O.U.R.G.E. project sports a graphical front-end, similar to glHack or the Falcons eye.
Main features:
- Multi-level, random, scrolling dungeons. Populated with many, fearsome vermin for yer exterminatin pleasure
- Control a group of four ex-adventurers as they try to find dignity in their new profession
- An interactive world of items, characters, spells, enemies and traps
- Multiple missions per level, so you decide which dungeons to enter
Game Controls:
f1 - Toggle fullscreen (on most systems)
left mouse click - Open/Close doors, Move group / person / item (Click not drag! Click again to drop item. However, its click-and-drag to move items from containers... confusing, I know.)
right mouse click - Get info on item
i - Inventory (Party info)
o - Options
Esc - Quit mission
1,2,3,4 - Select a player to control
0 - Toggle group/single player control
f - Cycle thru group formations
[,] - Zoom in/out
arrows - Move scene (same as moving the mouse to the edge of the screen.)
CTRL+arrows - Rotate scene (same as CTRL+moving the mouse to the edge of the screen.)
(Shift makes the above two work slower.)
-When moving items, move the mouse over a creature and click again to drop/give the item to selected creature. Selected creatures light up in blue. You can only get/move items to places you can reach. You cant reach thru walls w/o a spell.
-When trying to open doors, the door wont open (or close) if something is blocking its path.
Enhancements:
- The code has been internationalized and includes an Italian translation.
- There is also a new drag-and-drop inventory UI and messaging window.
- There are many bugfixes, UI improvements, and new artwork.
<<less
Download (2.9MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
908 downloads
Sonance 0.2.1

Sonance 0.2.1


GNOME audio player based on GStreamer and Mono. more>>
GNOME audio player based on GStreamer and Mono.

Sonance is a brand spankin new audio player based on the GStreamer media library and is developed on the Open Source Mono .NET Platform, written in C#. It uses the gst-sharp GStreamer bindings, which are currently only available via CVS.

Version 0.2 now supports shuffle/repeat modes, playlist searching, recursive directory additions, and saves the window/widget states in GConf.

Sonance may currently act as a simple drop-in XMMS/Beep replacement. It sports a basic playlist, with add/remove/clear/reorder support, and metadata support through GStreamer. Now that Sonance has a stable base, the goal is to create an entire music organization and playback platform, much like Rhythmbox and iTunes.

However, Sonance will have a much smaller footprint, and will be more versatile: you dont have to utilize a music library. Sometimes its just nice to have a standalone player that isnt dependent on any kind of database.

Sonance is multi-threaded. Playback is always smooth and fast, based on a solid, featureful GStreamer core, and adding lots of files to the playlist is no problem, because additions are done in a separate thread. Sonance is easy to use, simple, yet powerful, and its future is very bright.

<<less
Download (0.32MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
868 downloads
NATting SOHO firewall

NATting SOHO firewall


NATting SOHO firewall is a firewall script for iptables. more>>
NATting SOHO firewall is a firewall script for iptables.

# Model NATting SOHO firewall for SP article
# by Jay Beale (jay@bastille-linux.org)
#
# Warning: youre going to have to hack this for your own purposes.
#

# Assumptions:
# your internal network is 192.168.1.0/24 on eth1
# your internet IP is 10.0.0.1 on eth0
# your internal network IP on eth1 is 192.168.1.1
#
# Additonally:
# you have another internal network, a DMZ: 192.168.2.0/24 on eth2

$INTERNAL_IP = 192.168.1.1
$INTERNAL_NET = 192.168.1.0/24

$INTERNET = 10.0.0.1

$DMZ = 192.168.2.0/24

# Insert the required kernel modules
modprobe iptable_nat
modprobe ip_conntrack
modprobe ip_conntrack_ftp

# Set default policies for packets going through this firewall box

iptables -t nat -P PREROUTING DROP
iptables -t nat -P POSTROUTING DROP
iptables -P FORWARD DROP

# Set default policies for packet entering this box

iptables -P OUTPUT ALLOW
iptables -P INPUT ALLOW

# Kill spoofed packets

for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
echo 1 > $f
done

# Anything coming from our internal network should have only our addresses!
iptables -A FORWARD -i eth1 -s ! $INTERNAL_NET -j DROP

# Anything coming from the Internet should have a real Internet address
iptables -A FORWARD -i eth0 -s 192.168.0.0/16 -j DROP
iptables -A FORWARD -i eth0 -s 172.16.0.0/12 -j DROP
iptables -A FORWARD -i eth0 -s 10.0.0.0/8 -j DROP

# Note:There are more "reserved" networks, but these are the classical ones.

# Block outgoing network filesharing protocols that arent designed
# to leave the LAN

# SMB / Windows filesharing
iptables -A FORWARD -p tcp --sport 137:139 -j DROP
iptables -A FORWARD -p udp --sport 137:139 -j DROP
# NFS Mount Service (TCP/UDP 635)
iptables -A FORWARD -p tcp --sport 635 -j DROP
iptables -A FORWARD -p udp --sport 635 -j DROP
# NFS (TCP/UDP 2049)
iptables -A FORWARD -p tcp --sport 2049 -j DROP
iptables -A FORWARD -p udp --sport 2049 -j DROP
# Portmapper (TCP/UDP 111)
iptables -A FORWARD -p tcp --sport 111 -j DROP
iptables -A FORWARD -p udp --sport 111 -j DROP

# Block incoming syslog, lpr, rsh, rexec...
iptables -A FORWARD -i eth0 -p udp --dport syslog -j DROP
iptables -A FORWARD -i eth0 -p tcp --dport 515 -j DROP
iptables -A FORWARD -i eth0 -p tcp --dport 514 -j DROP
iptables -A FORWARD -i eth0 -p tcp --dport 512 -j DROP

###
# Transparently proxy all web-surfing through Squid box

$SQUID = 192.168.1.2:8080
$SQUIDSSL = 192.168.1.2:443
iptables -t nat -A PREROUTING -i eth1 -tcp --dport 80 -j DNAT --to $SQUID
iptables -t nat -A PREROUTING -i eth1 -tcp --dport 443 -j DNAT --to $SQUIDSSL

# Transparently forward all outgoing mail to a relay host

$SMTP = 192.168.1.3
iptables -t nat -A PREROUTING -i eth1 -tcp --dport 25 -j DNAT --to $SMTP

# Transparently redirect web connections from outside to the DMZ web
# server

$DMZ_WEB = 192.168.2.2
iptables -t nat -A PREROUTING -i eth0 -d 192.168.1.1 -dport 80 -j DNAT --to $DMZ_WEB

# Source NAT to get Internet traffic through
iptables -t nat -A POSTROUTING -o eth1 -j SNAT --to $INTERNET


# Activate the forwarding!
echo 1 >/proc/sys/net/ipv4/ip_forward
<<less
Download (MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
987 downloads
ProStockMaster for Linux 1.5.5

ProStockMaster for Linux 1.5.5


ProStockMaster helps thousands photographers in keywording, preparing, uploading and selling their photos through the leading microstock sites: iStockPhoto,ShutterStock,DreamsTime,123rf,BigStockPhoto,CanStockPhoto,Fotolia,Stockxpert and Alamy more>>

ProStockMaster for Linux 1.5.5 is designed as a professional program that can allow to automate the tedious tasks of tagging, managing and uploading stock photos to online stock agencies, freeing you up to spend more time doing what you love shooting pictures.

In addition, ProStockMaster helps tens thousands of amateurs and professionals involved in stock photography in keywording, preparing, uploading and selling their images the leading stock photo agencies: iStockPhoto, ShutterStock, DreamsTime, 123rf, BigStockPhoto, CanStockPhoto, Fotolia, Stockxpert and Alamy

ProStockMaster is available on Windows (Vista, XP, 2000, Me, 2003, 98, 95), Mac Os X and Linux platforms.

Major Benefits:

  1. Upload all your images to all leading stock photography agencies just in one click! You can upload selected images or a complete image folder!
  2. Automate IPTC and Adobe XMP keywording (tagging)! Enter a word or a phrase in your native language and get tens of automatically generated English keywords relevant for your image. All this just in one button click!
  3. Get your stock statistics directly at your fingertips! All earnings summarized just in one window for every stock agency you work with
  4. View EXIF data inserted by your camera: aperture & shutter, program mode, ISO, focal length, flash mode, metering mode and much more
  5. Translate meta-data for all images in the selected folder to another language. All teh images will be copied to another folder and their meta-data will be translated on-the-fly
  6. Fast search in images on your computer for any keyword either in the image title, description or in the keywords fields
  7. Copy keywords, title and description (IPTC) from one image to another, making keywording of similar images extremely fast and easy. For instance, if youve shoot a sport event and then have selected 12 images for editing and upload, 95% of keywords in these images shall probably be the same. ProStockMaster allows you applying the selcted keywords set to multiple images and copyIPTC metadata between images
  8. Import and export keywords from external files, optionally with on-the-fly translation. You can keep your keywords in categories in your native language and then import, translate & insert them in your images
  9. Upload history / track records

Major Features:

  1. Simultaneous Upload of Stock Photos : Post stock images and entire folders to multiple agencies, in one click! Select from a list of top-selling microstock agencies. PSM also provides seamless registration on each site, if you are not yet a member contributor.
  2. Automated Keywording (IPTC) :Type a keyword or two and click the "Suggest!" button. Select from the list of popular and relevant keywords that PSM provides. PSM also provides auto-translation to dozens of languages, allowing your photos to be found easily by purchasers around the world.
  3. Stock Earnings Statistics :Review the purchase and download statistics for all your stock content, on each photo stock agency site.
  4. Metadata Simplicity : Search for stock images in your collection by the various metadata and keywords you have already collected per image. Export, Import and Copy metadata easily among multiple pictures. No more one-at-a-time editing!
  5. Photo Data :Review and use the EXIF data inserted into each of your pictures: aperture, shutter speed, program mode, ISO and more.

Requirements: At least 1GB RAM recommended

WareSeeker Editor
<<less
Download (12.02MB)
Added: 2009-03-31 License: Freeware Price: $0
206 downloads
 
Other version of ProStockMaster for Linux
ProStockMaster for Linux 1.5.1For instance, if youve shoot a sport event and then have selected 12 images for editing and upload, 95% of keywords in these images shall probably be the same. ProStockMaster allows you applying
License:Freeware
Download (8.87MB)
183 downloads
Added: 2009-04-28
Lewin Pongs 1.0

Lewin Pongs 1.0


Lewin Pongs is an advanced game of pong. more>>
Lewin Pongs is an advanced game of pong.

An advanced game of pong with lots of options. A ball bounces around the screen and you hit it with paddles.

If you miss, your opponent scores, if your opponent misses, you score.

PONG, an adaptation of table tennis to the video screen, was the first commercially successful video game and is widely regarded as ushering in the video game era.

PONG was released by Atari on November 29, 1972.

PONG is a basic simulation of the racket sport of table tennis. A small square representing a ping pong ball travels across the screen in a linear trajectory. If the square strikes the perimeter of the playing field, or one of the simulated paddles, the square ricochets based on the angle of the impact.

Game play consists of players moving their respective paddles vertically to defend their scoring zones. Players score one point by maneuvering the square past their opponents paddle.

PONG can be played either by a single player pitted against a computerized opponent, or by two players each controlling a paddle. In Ataris original PONG arcade cabinets, players controlled their paddles using one of two small paddle controllers (a knob-like input device). Contrastingly, several of the derivative table tennis simulations employed longitudinally-sliding joysticks.
<<less
Download (1.0MB)
Added: 2006-02-23 License: GPL (GNU General Public License) Price:
1340 downloads
gtrainer 0.0.2-1

gtrainer 0.0.2-1


gtrainer is a simple tool for manage sports trainings. more>>
gtrainer is a simple tool for manage sports trainings.
Program written in Gtkmm to manage sports trainings. It can store differents records about your daily training:
- Daily weight
- Characteristics of your exercise like: kilometers a day, hours a day, temperature, the route, etc.
- Specific training sessions: series, recoveries, heart rate, etc.
With the routes interface you can save your favourites routes as well. Find the largest route, or the hardest one easily.
You can save these records locally (sqlite3) or remotely (PostgreSQL, MySQL soon). You will know exactly how your training goes, with different kinds of charts and monthly reports, in order to improve your results or just as a curiosity.
<<less
Download (0.32MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
976 downloads
ProM 4.0

ProM 4.0


ProM is a new era in process mining tool support. more>>
ProM is a new era in process mining tool support.
Process Mining research is concerned with the extraction of knowledge about a (business) process from its process execution logs. Process Mining strives to gain insight into various perspectives, such as the process (or control flow) perspective, the performance, data, and organizational perspective (The processmining.org web site has more in-depth information and scientific publications available).
ProM is an extensible framework that supports a wide variety of process mining techniques in the form of plug-ins. It is platform independent as it is implemented in Java, and can be downloaded free of charge. We welcome and support practical applications of ProM! Note that the ProM framework is issued under an open source license, namely the Common Public License (CPL), and we invite researchers and developers to contribute in the form of new plug-ins.
Currently, there are already more than 90 plug-ins available, and we support the import of (and the conversion between) several process modelling languages, such as:
- Petri nets (PNML, TPN)
- EPCs / EPKs (Aris graph format, EPML)
- YAWL
- (and many more)
There are mining plugins, such as:
- Plugins supporting control-flow mining techniques (such as the Alpha algorithm, Genetic mining, Multi-phase mining, ...)
- Plugins analysing the organizational perspective (such as the Social Network miner, the Staff Assignment miner, ...)
- Plugins dealing with the data perspective (such as the Decision miner, ...)
(and many more)
Furthermore, there are analysis plugins dealing with:
- The verification of process models (e.g., Woflan analysis)
- Verification of Linear Temporal Logic (LTL) formulas on a log
- Checking the conformance between a given process model and a log
- Performance analysis (Basic statistical analysis, and Performance Analysis with a given process model)
- Finally, ProM sports a large array of log filters, which are a valuable tool for cleaning logs from undesired, or unimportant, artefacts.
Enhancements:
- This release features fundamental framework improvements and the addition of a major set of new plugins.
- The performance of log reading has been improved dramatically, introducing live modification of logs and random access.
- More than 70 newly added plugins substantially extend the analysis feature set.
<<less
Download (18.3MB)
Added: 2006-11-30 License: Common Public License Price:
1061 downloads
PDFdirectory 1.0

PDFdirectory 1.0


PDFdirectory is a PHP/MySQL creation of a printable directory in PDF format. more>>
PDFdirectory project is designed to save time and frustration in the process of creating a printable directory for your organization. Much of the difficulty is in the exchange of information from group members to whomever is assigned the task of creating the directory.
This difficulty is overcome by having select members enter member data into a database, defining the organizations hierarchy and managing page insertion into the hierarchy. The member information will be auto-generated in the final document. Uses could be for church groups, sports leagues etc.
Main features:
General:
- Template support for auto-generation of member data.
- Standard PDF output or booklet format.
- Choice of various languages.
- Create pages offline in your favorite desktop app.
- Automatic generation of Table of Contents and Index.
- Gutter support.
Administration:
- Assigning of users.
- Restrict users as to what they can access.
- Defining the organizations structure and assigning of enumerations reflecting that structure.
User level access:
- Maintaing the database of Members.
- Create custom pages and define their location in the document.
- Assigning members to there groups.
Enhancements:
- Security was improved with SQL injection filtering and encrypted passwords.
<<less
Download (0.26MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1382 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5