submits
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 290
submitTroughImage 0.1
submitTroughImage is a small but usefull spam/flood form submit protection. more>>
submitTroughImage is a small but usefull spam/flood form submit protection. submitTroughImage can produce a image with a random string and a form input.
When the form is submitted, the string from the form input can be matched against generated string in the image. When they match, the submition can proceed.
The random generated image string will be matched against a session var or against a file on the server disk, depanding on the backend youve choosed. Default backend is the session backend.
Main features:
- One or more random colors.
- One or more random TTF fonts.
- Random rotation.
- Custom background color or image.
- Transparent background with anti-alias of string.
- Hardcoded or variable (liquid) dimentions of the image.
- Colors can be filled as HEX or as RGB values.
- String/code type can be only numbers, only letters or both.
- Backend by session or server disk space.
<<lessWhen the form is submitted, the string from the form input can be matched against generated string in the image. When they match, the submition can proceed.
The random generated image string will be matched against a session var or against a file on the server disk, depanding on the backend youve choosed. Default backend is the session backend.
Main features:
- One or more random colors.
- One or more random TTF fonts.
- Random rotation.
- Custom background color or image.
- Transparent background with anti-alias of string.
- Hardcoded or variable (liquid) dimentions of the image.
- Colors can be filled as HEX or as RGB values.
- String/code type can be only numbers, only letters or both.
- Backend by session or server disk space.
Download (0.20MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1310 downloads
Simput 0.4
Simput is a group of utilities useful for creating PHP Web sites. more>>
Simput is a group of utilities useful for creating PHP Web sites. It includes a library that converts XML into an HTML form.
Form input validation is included (which checks if required fields are entered) and another form will be created to highlight fields which need to be entered.
Another included library makes data from a database or user input safer for HTML display. It also includes utilities to manipulate ISO dates to and from the US format. Another library can read a directory into an array with filtering by regular expressions.
Main features:
- Create a html form from xml. Also auto verification of the form when submitted
- Database Abstraction
- Input Output filtering. These are routines that filter user text input for safe web display and database storage.
- Date utilities. Utilities that fomat user entered dates into and out of the iso date format, usefull for database storage.
Enhancements:
- The PHP form generator was updated.
- Hidden, select, checkbox, and password field types were added.
- Form submits were made "sticky", meaning that user input stays when the form is regenerated because fields were left out.
- Formatting options were added, including table options.
- Formatting can be done globally over the entire form or on a element by element basis.
<<lessForm input validation is included (which checks if required fields are entered) and another form will be created to highlight fields which need to be entered.
Another included library makes data from a database or user input safer for HTML display. It also includes utilities to manipulate ISO dates to and from the US format. Another library can read a directory into an array with filtering by regular expressions.
Main features:
- Create a html form from xml. Also auto verification of the form when submitted
- Database Abstraction
- Input Output filtering. These are routines that filter user text input for safe web display and database storage.
- Date utilities. Utilities that fomat user entered dates into and out of the iso date format, usefull for database storage.
Enhancements:
- The PHP form generator was updated.
- Hidden, select, checkbox, and password field types were added.
- Form submits were made "sticky", meaning that user input stays when the form is regenerated because fields were left out.
- Formatting options were added, including table options.
- Formatting can be done globally over the entire form or on a element by element basis.
Download (0.14MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1447 downloads
Easiest Validate On Submit 1.0
Easiest Validate On Submit project enables Web developers to validate any number of form fields. more>>
Easiest Validate On Submit project enables Web developers to validate any number of form fields, client side (in Javascript), with only one line of code per HTML page.
Main features:
- It requires only 1 line of javascript per html file, to validate any number of fields in any number of forms.
- The script detects whether you have a div to display errors. If you havent, it puts messages in alert boxes.
- Evos supports styling both the input widgets and the labels upon validation errors.
- Which fields to validate, and which validation (required field, email, numeric) to use, is completely controlled through CSS classes.
- Pluggable custom validation per field, with minimal amounts of code.
- Messages are located in language files, so its easy to display messages in your native language.
- Everything can be styled using CSS.
<<lessMain features:
- It requires only 1 line of javascript per html file, to validate any number of fields in any number of forms.
- The script detects whether you have a div to display errors. If you havent, it puts messages in alert boxes.
- Evos supports styling both the input widgets and the labels upon validation errors.
- Which fields to validate, and which validation (required field, email, numeric) to use, is completely controlled through CSS classes.
- Pluggable custom validation per field, with minimal amounts of code.
- Messages are located in language files, so its easy to display messages in your native language.
- Everything can be styled using CSS.
Download (0.014MB)
Added: 2006-07-27 License: BSD License Price:
1185 downloads
Test::Litmus 0.03
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool. more>>
Test::Litmus is a Perl module to submit test results to the Litmus testcase management tool.
SYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
<<lessSYNOPSIS
use Test::Litmus;
$t = Test::Litmus->new(-machinename => mycomputer,
-username => user,
-authtoken => token,
# optional # -server => http://litmus.mozilla.org/process_test.cgi,
# optional # -action => submit);
$t->sysconfig(-product => Firefox,
-platform => Windows,
-opsys => Windows XP,
-branch => Trunk,
-buildid => 2006061314,
-buildtype => debug cvs,
-locale => en-US);
my $result = Test::Litmus::Result->new(
-isAutomatedResult => 1, # optional
-testid => 27,
-resultstatus => pass, # valid results are pass
# or fail
-exitstatus => 0,
-duration => 666,
-timestamp => 20051111150944, # optional (default: current time)
-comment => optional comment here, # optional
-bugnumber => 300010, # optional
-log => [Test::Litmus::Log->new( # optional
-type => STDOUT,
-data => foobar),
Test::Litmus::Log->new(
-type => Extensions Installed,
-data => log information here)]
);
$t->addResult($result);
# $t->addResult($someOtherResult);
# etc...
# add log information that should be linked with
# all results (i.e. env variables, config info)
$t->addLog(Test::Litmus::Log->new(
-type => STDOUT,
-data => log data));
my $res = $t->submit();
# $res is 0 for non-fatal errors (some results were submitted), and
# undef for fatal errors (no results were submitted successfully)
if ($t->errstr()) { die $t->errstr() }
Download (0.004MB)
Added: 2007-05-04 License: Perl Artistic License Price:
903 downloads
FreeSMS 1.0
FreeSMS project is an application for managing an educational facility. more>>
FreeSMS project is an application for managing an educational facility.
It stands for Free Student Management System and it manages teachers and students and provides marketing, registration, course management, attendance, and a student evaluation system, and manages courses within a class environment.
Profile-based management is supported for administrators, teachers, and students. Teachers and students can be registered online.
Students are allowed to manage their own class enrolment and submit course evaluations, and teachers can manage student attendance.
The differential factor and elegance of this project lie in the OOP standard and a modular structure. The code is clean and very extendable.
Main features:
- Manage courses within a class environment
- Sopport for profile based management: Administrator, Teacher and Student
- Online teacher and student registration
- Allow students to self manage class enrollment
- Allow teachers to manage student attendance
- Ability for students to submit course evaluations
<<lessIt stands for Free Student Management System and it manages teachers and students and provides marketing, registration, course management, attendance, and a student evaluation system, and manages courses within a class environment.
Profile-based management is supported for administrators, teachers, and students. Teachers and students can be registered online.
Students are allowed to manage their own class enrolment and submit course evaluations, and teachers can manage student attendance.
The differential factor and elegance of this project lie in the OOP standard and a modular structure. The code is clean and very extendable.
Main features:
- Manage courses within a class environment
- Sopport for profile based management: Administrator, Teacher and Student
- Online teacher and student registration
- Allow students to self manage class enrollment
- Allow teachers to manage student attendance
- Ability for students to submit course evaluations
Download (0.26MB)
Added: 2006-10-16 License: The PHP License Price:
2501 downloads
Suite-C Web 20060729
Suite-C Web is a collection of modules for Drupal that allow a church to manage itself and communicate with its memebers. more>>
Suite-C Web is a collection of modules for Drupal that allow a church to manage itself and communicate with its memebers.
Suite-C Web project currently consists of a PrayerRequests module, which lets Web site visitors submit prayer requests and later mark requests as answered (or no longer relevant), which filters the request them from the list of current prayer requests.
Main features:
- A shared PrayerList
- Prayer answered date
<<lessSuite-C Web project currently consists of a PrayerRequests module, which lets Web site visitors submit prayer requests and later mark requests as answered (or no longer relevant), which filters the request them from the list of current prayer requests.
Main features:
- A shared PrayerList
- Prayer answered date
Download (0.010MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
Formitable 1.1
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables. more>>
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables.
Formitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
<<lessFormitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
Download (0.018MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1068 downloads
GrabTheMic 0.5
GrabTheMic is a clone of Digg written in Ruby on Rails. more>>
GrabTheMic is a clone of Digg written in Ruby on Rails.
rabTheMic is a community-driven news platform that provides a simple feedback mechanism through voting.
It allows users to submit links to various news / blog articles, and for others to vote and comment on them.
It is based on the Ruby on Rails framework (http://www.rubyonrails.com), and is licensed under the GPL.
The main instance of GrabTheMic can be viewed at http://www.grabthemic.org. Feel free to get active in the community right away.
The SourceForge project (along with the source code and development status) can be found here: http://www.sourceforge.net/projects/grabthemic
<<lessrabTheMic is a community-driven news platform that provides a simple feedback mechanism through voting.
It allows users to submit links to various news / blog articles, and for others to vote and comment on them.
It is based on the Ruby on Rails framework (http://www.rubyonrails.com), and is licensed under the GPL.
The main instance of GrabTheMic can be viewed at http://www.grabthemic.org. Feel free to get active in the community right away.
The SourceForge project (along with the source code and development status) can be found here: http://www.sourceforge.net/projects/grabthemic
Download (0.13MB)
Added: 2006-08-12 License: GPL (GNU General Public License) Price:
1168 downloads
GENU CMS 2007.1
GENU is a Content Management System which uses a database server (MySQL, PostgreSQL, or SQLite). more>>
GENU is a Content Management System which uses a database server (MySQL, PostgreSQL, or SQLite). The project uses a template system and supports multiple languages.
It features BBCode and HTML tag support, a bulletin board, a comment system with reply and editing abilities, an administration interface, headlines generation, polls, a search engine, smilies support, "submit" and "send" news functions, unlimited news organized into unlimited categories, and user management.
Enhancements:
- new search system, also included in the posts
- new template named blumar
- HTML corrections
- more verifications when editing the categories
<<lessIt features BBCode and HTML tag support, a bulletin board, a comment system with reply and editing abilities, an administration interface, headlines generation, polls, a search engine, smilies support, "submit" and "send" news functions, unlimited news organized into unlimited categories, and user management.
Enhancements:
- new search system, also included in the posts
- new template named blumar
- HTML corrections
- more verifications when editing the categories
Download (0.17MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
908 downloads
jBitcollider 0.8
jBitcollider is an application which can be used to lookup/submit files to Bitzi. more>>
jBitcollider is an application which can be used to lookup/submit files to Bitzi.
The Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Main features:
- Processes files larger than 2GB in size.
- Offers the graphical interface, and drag-and-drop Bitcolliding, on non-Windows systems for the first time.
- Improves reliability of submission via browser
<<lessThe Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Main features:
- Processes files larger than 2GB in size.
- Offers the graphical interface, and drag-and-drop Bitcolliding, on non-Windows systems for the first time.
- Improves reliability of submission via browser
Download (1.1MB)
Added: 2007-03-15 License: Public Domain Price:
955 downloads
EPrints 2.3.13.1
EPrints is an online archiving system. more>>
Documents are stored in any format as well as in more than one document format. The archive can handle related fields; the administrator decides what fields to use for each document.
Users can also view and search the archive through a configurable, extendable subject hierarchy . The software automatically performs data integrity checks. Some "stub" routines let individual sites add their own integrity checks.
Documents are submitted through a Web-based interface, and uploaded as files, in a compressed bundled file (such as a .zip file), or automatically mirrored from another site by specifying a URL.
Users subscribe either as authors or readers, via the Web or email. Authors have associated metadata. Submitted papers are entered directly or through a moderation process. This is done through the Web, as is most normal maintenance.
<<lessUsers can also view and search the archive through a configurable, extendable subject hierarchy . The software automatically performs data integrity checks. Some "stub" routines let individual sites add their own integrity checks.
Documents are submitted through a Web-based interface, and uploaded as files, in a compressed bundled file (such as a .zip file), or automatically mirrored from another site by specifying a URL.
Users subscribe either as authors or readers, via the Web or email. Authors have associated metadata. Submitted papers are entered directly or through a moderation process. This is done through the Web, as is most normal maintenance.
Download (1.9MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1234 downloads
MicroAkismet 1.2
MicroAkismet package contains a straightforward set of functions for talking to the Akismet blog-spam protection system. more>>
MicroAkismet package contains a straightforward set of functions for talking to the Akismet blog-spam protection system. This is intended as a simple and compact method for adding Akismet protection to any user-submitted content.
Installation
1. To begin using the functions, download the latest version and unzip the script.
2. Place the akismet.inc.php file somewhere in your web root, and load the functions using include(), or better still, include_once():
include_once( "akismet.inc.php" );
?>
3. Obtain a valid WordPress API key, if you do not already have one, from:
http://wordpress.com/
If you dont have an account you will need to create one. Once you have an account, your API key can be found at the bottom of this page:
http://wordpress.com/profile
4. In the "User editable data" section, at the top of the code, put in your WordPress API key and the home page of the blog being protected. The User Agent can be changed to suit your application. If it is not a blog that is being protected, change the home page to the comments page or forum page that is being protected.
Usage
There are three static functions for talking to Akismet:
aksimet_check( $vars )
Check if a comment is spam or not
aksimet_spam( $vars )
Re-classify a comment as spam
aksimet_ham( $vars )
Re-classify a comment as ham (not spam)
Each function takes one argument, $vars, which is a list of information about the comment that is being checked. $vars *must* contain at least this information
$vars["user_ip"]
The IP address of the person that posted the comment
$vars["user_agent"]
The User-Agent of the person that posted the comment
The "blog" value (the homepage of the blog that this post came from) is added automatically by the code. The following extra information can also be added, to help Akismet classify the message more accurately:
$vars["comment_content"]
The body of the comment itself, the content that was submitted
$vars["referrer"]
The content of the HTTP_REFERER header (note the spelling)
$vars["permalink"]
Permalink to the comment
$vars["comment_type"]
May be blank, comment, trackback, pingback, etc
$vars["comment_author"]
Submitted name with the comment
$vars["comment_author_email"]
Submitted email address
$vars["comment_author_url"]
Commenter URL
In PHP, you can also add the contents of the $_SERVER array to this list, which gives extra information to Akismet, and further increases the accuracy of their system.
Enhancements:
- A class version and a static function version have been created.
- They are the same code, but one is wrapped in a PHP5 compatible class, giving more flexibility.
<<lessInstallation
1. To begin using the functions, download the latest version and unzip the script.
2. Place the akismet.inc.php file somewhere in your web root, and load the functions using include(), or better still, include_once():
include_once( "akismet.inc.php" );
?>
3. Obtain a valid WordPress API key, if you do not already have one, from:
http://wordpress.com/
If you dont have an account you will need to create one. Once you have an account, your API key can be found at the bottom of this page:
http://wordpress.com/profile
4. In the "User editable data" section, at the top of the code, put in your WordPress API key and the home page of the blog being protected. The User Agent can be changed to suit your application. If it is not a blog that is being protected, change the home page to the comments page or forum page that is being protected.
Usage
There are three static functions for talking to Akismet:
aksimet_check( $vars )
Check if a comment is spam or not
aksimet_spam( $vars )
Re-classify a comment as spam
aksimet_ham( $vars )
Re-classify a comment as ham (not spam)
Each function takes one argument, $vars, which is a list of information about the comment that is being checked. $vars *must* contain at least this information
$vars["user_ip"]
The IP address of the person that posted the comment
$vars["user_agent"]
The User-Agent of the person that posted the comment
The "blog" value (the homepage of the blog that this post came from) is added automatically by the code. The following extra information can also be added, to help Akismet classify the message more accurately:
$vars["comment_content"]
The body of the comment itself, the content that was submitted
$vars["referrer"]
The content of the HTTP_REFERER header (note the spelling)
$vars["permalink"]
Permalink to the comment
$vars["comment_type"]
May be blank, comment, trackback, pingback, etc
$vars["comment_author"]
Submitted name with the comment
$vars["comment_author_email"]
Submitted email address
$vars["comment_author_url"]
Commenter URL
In PHP, you can also add the contents of the $_SERVER array to this list, which gives extra information to Akismet, and further increases the accuracy of their system.
Enhancements:
- A class version and a static function version have been created.
- They are the same code, but one is wrapped in a PHP5 compatible class, giving more flexibility.
Download (0.008MB)
Added: 2007-01-30 License: BSD License Price:
997 downloads
Bitcollider 0.6.0
Bitcollider is an application which can be used to lookup/submit files to Bitzi. more>>
Bitcollider provides the bitcollider can be used to lookup/submit files to Bitzi.
The Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Enhancements:
- The kzhash identifier used by Kazaa 2.6 and up is now calculated. (As a result, MAGNET links at Bitzi can include this identifier and work with Kazaa.)
- A video format plugin now extracts and submits information such as framerate, framesize, duration,bitrate, and codec from most AVI, MPEG1/2, and QuickTime videos.
- A problem in the original construction of the TigerTree hash value has been corrected. (Only values from updated software display at theBitzi website.)
- Calculation of MD5 and CRC32 values is now optional.
<<lessThe Bitcollider utility allows users to uniquely identify and submit files to Bitzis community metadatabase project.
The Bitcollider can be used to identify any local file and has support for extracting metadata from MP3, WAV, Vorbis, JPEG, PNG, GIF, AVI, MPEG-1, MPEG-2, and QuickTime files.
Users can quickly look up all the known information about the given file in Bitzis metadatabase.
Enhancements:
- The kzhash identifier used by Kazaa 2.6 and up is now calculated. (As a result, MAGNET links at Bitzi can include this identifier and work with Kazaa.)
- A video format plugin now extracts and submits information such as framerate, framesize, duration,bitrate, and codec from most AVI, MPEG1/2, and QuickTime videos.
- A problem in the original construction of the TigerTree hash value has been corrected. (Only values from updated software display at theBitzi website.)
- Calculation of MD5 and CRC32 values is now optional.
Download (0.10MB)
Added: 2007-03-18 License: Public Domain Price:
952 downloads
JBidwatcher 1.0.1
JBidwatcher is a Java-based application allowing you to monitor auctions youre not part of, submit bids. more>>
JBidwatcher is a Java-based application allowing you to monitor auctions youre not part of, snipe (bid at the last moment), submit bids and otherwise track your auction-site experience.
It includes adult-auction management, MANY currencies (yen, pound, dollar (US, Canada, Australian, and New Taiwanese), Swiss Francs, and euro, presently), drag-and-drop of auction URLs, a unique and powerful multisniping feature, a relatively nice UI, and is known to work cleanly under Linux, Windows, Solaris, and MacOSX from the same binary.
<<lessIt includes adult-auction management, MANY currencies (yen, pound, dollar (US, Canada, Australian, and New Taiwanese), Swiss Francs, and euro, presently), drag-and-drop of auction URLs, a unique and powerful multisniping feature, a relatively nice UI, and is known to work cleanly under Linux, Windows, Solaris, and MacOSX from the same binary.
Download (0.81MB)
Added: 2007-04-30 License: LGPL (GNU Lesser General Public License) Price:
1176 downloads
IntraSchool 0.1.0
IntraSchool project is a school intranet management system. more>>
IntraSchool project is a school intranet management system.
IntraSchool is a school intranet management system for Announcements, Attendance, Assignments, and Computer Issue Tracking throughout a school.
Main features:
- Announcements
- Schoolwide: Viewable by any visitor [Events, Days off]
- Teacherwide: Viewable only by teachers
- Group/Clubwide: Viewable by all, but separated announcements for specific clubs
- Assignments
- Individual classbased assignments
- Students can subscribe to class assignment mailing list
- Students can retrieve missed assignments and scanned worksheets
- Students can submit homework online
- Web
- Standardized Layout that fits with entire site
- Word>HTML
- Scheduling
<<lessIntraSchool is a school intranet management system for Announcements, Attendance, Assignments, and Computer Issue Tracking throughout a school.
Main features:
- Announcements
- Schoolwide: Viewable by any visitor [Events, Days off]
- Teacherwide: Viewable only by teachers
- Group/Clubwide: Viewable by all, but separated announcements for specific clubs
- Assignments
- Individual classbased assignments
- Students can subscribe to class assignment mailing list
- Students can retrieve missed assignments and scanned worksheets
- Students can submit homework online
- Web
- Standardized Layout that fits with entire site
- Word>HTML
- Scheduling
Download (0.12MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1105 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 submits 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