newsletters for parents
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 896
C2::Newsletter 0.3 beta
C2::Newsletter is a tool to send MIME-encoded newsletters. more>>
C2::Newsletter is a simple tool for sending newsletters to your visitors. It allows you to create multiple newsletters, so your visitors can select which topics they want to receive.
There is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
<<lessThere is an admin interface to add/edit newsletters and recipients, and send in plain text or MIME-encoded. It is easy to use, but currently only in German (English will be available soon).
Enhancements:
new Features
- Verification email is now configurable (plain text only)
- Supports now the admin as recipient for verification emails
fixed Bugs:
- Admin interface allows to list the recipients of a specified newsletter
- Config page => cancel button now works
- deleting a newsletter deletes also items in c2_mail_newsletter_selections
- holds email when adding a new recipient record
- verification of new recipients now works
performance:
- function GetConfig()
Download (0.024MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1642 downloads
PloneNewsLetter 2.0
PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format. more>>
PloneNewsLetter provides a product for sending newsletters based on new Plone content to an email address in TXT or HTML format.
PloneNewsLetter gives you the possibility to create your custom newsletters. The newsletter is prepared for being sent using your favourite mass mailer, and can be directly published on your site.
The process of creating your PloneNewsLetter:
- You create a new PloneNewsLetter
- Using PloneNewsLetter, you search your Plone site for content
- You select the documents that you want to make it into the newsletter
- You can click on the "create" button, and an html and text version of the newsletter are created.
- The html and text versions can now be edited and viewed quickly in a preview window.
- Once you are satisfied with the result, you can send the newsletter to your email address.
- You can use your favourite mass mailer to distribute the newsletter Features:
- The templates used for production of the newsletter are fully customizable.
- The selection of objects for the newsletter is remembered, so you dont have to reselect everything just because you changed the templates.
- If the user publishes the newsletters content, all users will see the HTML version of the newsletter. That way the the newsletter is automatically archived online.
- PloneNewsLetter consists of two object:
- A content type, for users
- A Portal Tool, for settings
<<lessPloneNewsLetter gives you the possibility to create your custom newsletters. The newsletter is prepared for being sent using your favourite mass mailer, and can be directly published on your site.
The process of creating your PloneNewsLetter:
- You create a new PloneNewsLetter
- Using PloneNewsLetter, you search your Plone site for content
- You select the documents that you want to make it into the newsletter
- You can click on the "create" button, and an html and text version of the newsletter are created.
- The html and text versions can now be edited and viewed quickly in a preview window.
- Once you are satisfied with the result, you can send the newsletter to your email address.
- You can use your favourite mass mailer to distribute the newsletter Features:
- The templates used for production of the newsletter are fully customizable.
- The selection of objects for the newsletter is remembered, so you dont have to reselect everything just because you changed the templates.
- If the user publishes the newsletters content, all users will see the HTML version of the newsletter. That way the the newsletter is automatically archived online.
- PloneNewsLetter consists of two object:
- A content type, for users
- A Portal Tool, for settings
Download (0.11MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
Oxylus Newsletters System 0.2
Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups. more>>
Oxylus Newsletters System is a complex newsletter system. It allows you to manage multiple groups.
You can import and export users, and public subscription is allowed. Oxylus Newsletters System project allows linux users to schedule newsletters for a specific date using a crontab job.
For each sent newsletter, you can see its history and whether it was successfully sent.
Enhancements:
- This version is fully compatible with PHP5.
- The mails are sent just once to all the users.
- The SQL error which occurred when new groups are created was fixed.
- Various framework bugfixes were made.
<<lessYou can import and export users, and public subscription is allowed. Oxylus Newsletters System project allows linux users to schedule newsletters for a specific date using a crontab job.
For each sent newsletter, you can see its history and whether it was successfully sent.
Enhancements:
- This version is fully compatible with PHP5.
- The mails are sent just once to all the users.
- The SQL error which occurred when new groups are created was fixed.
- Various framework bugfixes were made.
Download (0.20MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1435 downloads
Object Extensions for PHP 0.1 Beta
Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. more>>
Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. Object Extensions for PHP allows the programmer to add methods and properties to an object at runtime by dynamically extending by another object.
It also allows the creation of object property lists that allow for dynamic setting/getting of values in a fashion similar to JavaScript objects. These object property lists support basic value checking.
The Object Extensions library for PHP adds the following functionality to objects that extend the base class:
- Runtime object extension to "extend" an object by another class at runtime (to virtually inherit all public properties and methods).
- Runtime callback definitions to be able to pass function/method callbacks as variables, and subsequently execute them from other function/methods.
- Dynamic object properties class to handle runtime setting/getting of object properties, as well as ability to pass function arguments as object-based parameters rather than long list of options.
OBJECT EXTENSION:
- Base class (CExtendable) implements a _extend() function by which you may vritually extend an object by an instance of another object.
- Extended object (object passed to _extend) can reference parent object if supported by extended class.
- __get, __set and __call are all overriden to handle overriding undefined properties and methods
- Ability to reference a callback in a straightforward manner ($object->_callback()->method(args, [...]))
CALLBACK FUNCTIONALITY:
- Can create callbacks directly (through CCallback and derived classes)
- Can create method callbacks by calling _callback() method on CExtendable objects
- When combined with object extension and object properties, can provide a really easy way to execute callbacks.
OBJECT PROPERTIES:
- Base class extends ArrayIterator, all properties saved in an array
- Basic functionality to check values provided and/or set default values.
- Overrides __get, __set to get/set object properties.
- Can limit property set-tability to existing properties only, or to provided array of properties.
- Can enable read-only mode.
- Overrides __call, and in the case that the a property value with the same name as the method name exists, and is an instance of the ICallback interface, this callback is executed.
PHP COMPATIBILITY:
Object Extensions for PHP uses PHP5 functionality. It would be theoretically possible to implement similar functionality into PHP4, however, since I no longer develop in PHP4, I cannot properly test it.
<<lessIt also allows the creation of object property lists that allow for dynamic setting/getting of values in a fashion similar to JavaScript objects. These object property lists support basic value checking.
The Object Extensions library for PHP adds the following functionality to objects that extend the base class:
- Runtime object extension to "extend" an object by another class at runtime (to virtually inherit all public properties and methods).
- Runtime callback definitions to be able to pass function/method callbacks as variables, and subsequently execute them from other function/methods.
- Dynamic object properties class to handle runtime setting/getting of object properties, as well as ability to pass function arguments as object-based parameters rather than long list of options.
OBJECT EXTENSION:
- Base class (CExtendable) implements a _extend() function by which you may vritually extend an object by an instance of another object.
- Extended object (object passed to _extend) can reference parent object if supported by extended class.
- __get, __set and __call are all overriden to handle overriding undefined properties and methods
- Ability to reference a callback in a straightforward manner ($object->_callback()->method(args, [...]))
CALLBACK FUNCTIONALITY:
- Can create callbacks directly (through CCallback and derived classes)
- Can create method callbacks by calling _callback() method on CExtendable objects
- When combined with object extension and object properties, can provide a really easy way to execute callbacks.
OBJECT PROPERTIES:
- Base class extends ArrayIterator, all properties saved in an array
- Basic functionality to check values provided and/or set default values.
- Overrides __get, __set to get/set object properties.
- Can limit property set-tability to existing properties only, or to provided array of properties.
- Can enable read-only mode.
- Overrides __call, and in the case that the a property value with the same name as the method name exists, and is an instance of the ICallback interface, this callback is executed.
PHP COMPATIBILITY:
Object Extensions for PHP uses PHP5 functionality. It would be theoretically possible to implement similar functionality into PHP4, however, since I no longer develop in PHP4, I cannot properly test it.
Download (0.007MB)
Added: 2006-05-03 License: MIT/X Consortium License Price:
1271 downloads
Extend For JavaScript 1.1
Extend For JavaScript allows you to use traditional single-class inheritance in your JavaScript applications. more>>
Extend For JavaScript allows you to use traditional single-class inheritance in your JavaScript applications. Extend For JavaScript also gives you many advanced features such as runtime class modification, introspection, and change.
It is simple, and does not depend on any other library. It works well with Prototype, jQuery, or MochiKit.
Main features:
- Can be used as a drop-in replacement to the current Prototype Class.create function
- Flexible and reliable super-like functionality
- Rich class-meta information, such as the list of methods defined in class, and for each other method, a link to the class which declared it, and links to all subclasses.
- Dynamic reparenting, which allows to change an existing class parent class.
- Dynamic class change, when you want an object to change its class on the fly.
<<lessIt is simple, and does not depend on any other library. It works well with Prototype, jQuery, or MochiKit.
Main features:
- Can be used as a drop-in replacement to the current Prototype Class.create function
- Flexible and reliable super-like functionality
- Rich class-meta information, such as the list of methods defined in class, and for each other method, a link to the class which declared it, and links to all subclasses.
- Dynamic reparenting, which allows to change an existing class parent class.
- Dynamic class change, when you want an object to change its class on the fly.
Download (0.006MB)
Added: 2006-11-21 License: BSD License Price:
1070 downloads
Blue for CSound 0.108.0
Blue for CSound project is a java program for use with Csound. more>>
Blue for CSound project is a java program for use with Csound. Its interface is much like a digital multitrack, but differs in that there timelines within timelines (polyObjects). This allows for a compositional organization in time that seems to me to be very intuitive, informative, and flexible.
Main features:
- SoundObjects are the building blocks within blues score timeline. soundObjects can be lists of notes, algorithmic generators, python script code, csound instrument definitions, and whatever plugins that are developed for blue. these soundObjects may be text based, but they can be completely GUI based as well.
- Timeline allows for visual organization of soundObjects
- Polyobject are objects which hold other soundObjects, and have timelines in themselves. working within them on their timelines and outside of them on the parent timeline help organize and understand the concepts of objective time and relative time between different objects
- The soundOject library allow for instantiating multiple copies of a soundobject, which allows for editting the original object and updating all copies
- noteProcessors allow for modifying the soundObjects properties, i.e. adding 2 to all p4 values, multiplying all p5 values by 6, etc.
- The orchestra manager organizes csound instruments and functions as an instrument librarian. you can selectively choose what instruments to output to the generated csound .csd file, so you can feel free to keep all of your instruments in a large library and output only the ones you need, cutting down on load time for csound.
- Syntax hilighting of csound language
- Use of scripting for user extensibility
- SoundObject freezing - free up CPU cycles by pre-rendering objects
- Microtonal PianoRoll allows editing notes using any Scala scale
- blueLive - work with soundObjects in realtime to experiment with musical ideas or performance
- and more!
<<lessMain features:
- SoundObjects are the building blocks within blues score timeline. soundObjects can be lists of notes, algorithmic generators, python script code, csound instrument definitions, and whatever plugins that are developed for blue. these soundObjects may be text based, but they can be completely GUI based as well.
- Timeline allows for visual organization of soundObjects
- Polyobject are objects which hold other soundObjects, and have timelines in themselves. working within them on their timelines and outside of them on the parent timeline help organize and understand the concepts of objective time and relative time between different objects
- The soundOject library allow for instantiating multiple copies of a soundobject, which allows for editting the original object and updating all copies
- noteProcessors allow for modifying the soundObjects properties, i.e. adding 2 to all p4 values, multiplying all p5 values by 6, etc.
- The orchestra manager organizes csound instruments and functions as an instrument librarian. you can selectively choose what instruments to output to the generated csound .csd file, so you can feel free to keep all of your instruments in a large library and output only the ones you need, cutting down on load time for csound.
- Syntax hilighting of csound language
- Use of scripting for user extensibility
- SoundObject freezing - free up CPU cycles by pre-rendering objects
- Microtonal PianoRoll allows editing notes using any Scala scale
- blueLive - work with soundObjects in realtime to experiment with musical ideas or performance
- and more!
Download (8.0MB)
Added: 2006-08-28 License: GPL (GNU General Public License) Price:
1153 downloads
Open Administration for Schools 2.40
Open Administration for Schools is a Web-based school administration package. more>>
Open Admin for Schools is a School Administration Program. It is a freely available, open source software package and is licensed under the GNU General Public License.
Open Administration for Schools project is entirely web based and can run from a centrally located division wide server or a single computer in a school. It is designed to support an entire division on one or more central computers but can also work just fine for a single school.
Currently several school divisions use this approach and have 15+ schools on a single central server. This is because it is designed to be lightweight both in server resource requirements and in communication bandwidth.
It is secure. Each school has two or more virtual websites and each is protected with password(s). One site, the admin site, is used by the school office and another, the teacher site, is used by teachers in the classroom.
The teacher site also has password access for entering attendance by teachers and also uses cookies that expire in a short period, further limiting access. Another site, a parent/student site, is controlled by parent/student userids and passwords. A fourth virtual site may be used by school liason officers from outside agencies to give them a slightly different access to school information. (Community Schools)
Main features:
- Demographics - It stores student and family information that can be viewed and printed in a variety of ways.
- Attendance - Attendance can be entered either by secretaries in the school office or by teachers in the classroom. It features the ability to do different numbers of periods per day for elementary grades vs high school and middle years. This will allow elementary classes to have 2 classes per day (AM/PM) with a homeroom teacher while higher grades can have attendance done on a per subject period basis (and be subject based). Attendance reports are integrated with report cards/progress reports. A variety of attendance reports are available. A variety of attendance entry methods are available for use by teachers and/or secretaries to allow it to integrate with normal school practice.
- Discipline - A simple discipline module to track student discipline events and track outcomes, etc. Behaviours may be categorized and statistical reports may be printed. Enrollment changes are also posted into this system.
- Report Card System - a flexible reporting system with per subject objectives (up to 20), integrated attendance reporting, etc. All report cards are printed as PDF reports and may include a school logo. All subjects may have unlimited length text comments, and can have any desired ordering. Attendance reporting will now do days open, days enrolled, days absent, and times late as standard.
- IEP (Special Needs) Site that is integrated at the division level that allows special needs teachers to tailor individual student programs that can be viewed from each schools teacher site. This includes the ability to add student medical history, testing done, student teams (and responsibilities), and objectives chosen from lists of thousands, categorized in a variety of ways. There can be up to 32 objectives per subject and each subject is specific to that particular child. His/her program would consist of a variety of subjects in areas such as fine motor control, etc.
- This system can generate progress reports (for use with the report card system) as well as a comprehensive IEP report containing the yearly plan for the child. This IEP can also viewed from the teacher site, to ensure compliance throughout the year.
- Export/Import Modules - to allow students to easily transfer schools within divisions without re-entry of demographic information. Export of data to other programs. Export of data to Provincial authorities via an automated XML based transfer mechanism.
- Saskatchewan SDS support for direct XML transfers of student demographic, subject and enrollment marks to provincial authorities.
- Online Gradebook to allow teachers to enter marks and assessments onine from school or home. It can group and weight assessment items and post directly into the report card system.
- Parent Viewing scripts to allow parents to view attendance, gradebook(where allowed), and report card marks. This is easily integrated into existing school sites.
- Upcoming: Family functions, Parent-Teacher Interview Scheduling, Wherever schools want to go...
- Further out... Multi-language support (demand for a Spanish version exists currently), Student timetabling.
Enhancements:
- A new Fees System to allow fee charging (predefined or new, with various groups), invoice printing, payments and receipts, and the ability to export summary journal transactions to an external accounting program.
- A new teacher logout to remove session data has been added.
- There is a new 70 page User Documentation PDF and a 40 page Administration Documentation PDF (also available in HTML versions).
<<lessOpen Administration for Schools project is entirely web based and can run from a centrally located division wide server or a single computer in a school. It is designed to support an entire division on one or more central computers but can also work just fine for a single school.
Currently several school divisions use this approach and have 15+ schools on a single central server. This is because it is designed to be lightweight both in server resource requirements and in communication bandwidth.
It is secure. Each school has two or more virtual websites and each is protected with password(s). One site, the admin site, is used by the school office and another, the teacher site, is used by teachers in the classroom.
The teacher site also has password access for entering attendance by teachers and also uses cookies that expire in a short period, further limiting access. Another site, a parent/student site, is controlled by parent/student userids and passwords. A fourth virtual site may be used by school liason officers from outside agencies to give them a slightly different access to school information. (Community Schools)
Main features:
- Demographics - It stores student and family information that can be viewed and printed in a variety of ways.
- Attendance - Attendance can be entered either by secretaries in the school office or by teachers in the classroom. It features the ability to do different numbers of periods per day for elementary grades vs high school and middle years. This will allow elementary classes to have 2 classes per day (AM/PM) with a homeroom teacher while higher grades can have attendance done on a per subject period basis (and be subject based). Attendance reports are integrated with report cards/progress reports. A variety of attendance reports are available. A variety of attendance entry methods are available for use by teachers and/or secretaries to allow it to integrate with normal school practice.
- Discipline - A simple discipline module to track student discipline events and track outcomes, etc. Behaviours may be categorized and statistical reports may be printed. Enrollment changes are also posted into this system.
- Report Card System - a flexible reporting system with per subject objectives (up to 20), integrated attendance reporting, etc. All report cards are printed as PDF reports and may include a school logo. All subjects may have unlimited length text comments, and can have any desired ordering. Attendance reporting will now do days open, days enrolled, days absent, and times late as standard.
- IEP (Special Needs) Site that is integrated at the division level that allows special needs teachers to tailor individual student programs that can be viewed from each schools teacher site. This includes the ability to add student medical history, testing done, student teams (and responsibilities), and objectives chosen from lists of thousands, categorized in a variety of ways. There can be up to 32 objectives per subject and each subject is specific to that particular child. His/her program would consist of a variety of subjects in areas such as fine motor control, etc.
- This system can generate progress reports (for use with the report card system) as well as a comprehensive IEP report containing the yearly plan for the child. This IEP can also viewed from the teacher site, to ensure compliance throughout the year.
- Export/Import Modules - to allow students to easily transfer schools within divisions without re-entry of demographic information. Export of data to other programs. Export of data to Provincial authorities via an automated XML based transfer mechanism.
- Saskatchewan SDS support for direct XML transfers of student demographic, subject and enrollment marks to provincial authorities.
- Online Gradebook to allow teachers to enter marks and assessments onine from school or home. It can group and weight assessment items and post directly into the report card system.
- Parent Viewing scripts to allow parents to view attendance, gradebook(where allowed), and report card marks. This is easily integrated into existing school sites.
- Upcoming: Family functions, Parent-Teacher Interview Scheduling, Wherever schools want to go...
- Further out... Multi-language support (demand for a Spanish version exists currently), Student timetabling.
Enhancements:
- A new Fees System to allow fee charging (predefined or new, with various groups), invoice printing, payments and receipts, and the ability to export summary journal transactions to an external accounting program.
- A new teacher logout to remove session data has been added.
- There is a new 70 page User Documentation PDF and a 40 page Administration Documentation PDF (also available in HTML versions).
Download (MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
844 downloads
Netpet-CMS 1.8
Netpet-CMS project provides easy-going deployment and administration of Web sites, newsletters, and banners. more>>
Netpet-CMS project provides easy-going deployment and administration of Web sites, newsletters, and banners. After a short introduction, even users with little experience are capable using Netpet-CMS.
Furthermore, you dont need any specially configured server to run Netpet CMS, so you can install Netpet CMS on standard cheap Web hosting accounts.
<<lessFurthermore, you dont need any specially configured server to run Netpet CMS, so you can install Netpet CMS on standard cheap Web hosting accounts.
Download (1.8MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
808 downloads
Tux Paint 0.9.17
Tux Paint is a free drawing program designed for young children (kids ages 3 and up). more>>
Tux Paint has a simple, easy-to-use interface, fun sound effects, and an encouraging cartoon mascot who helps guide children as they use the program.
Tux Paint provides a blank canvas and a variety of drawing tools to help your child be creative. Additional artwork ("stamps") can be downloaded and installed, providing a sticker-book functionality.
Tux Paint has been translated into nearly 70 languages, and a graphical configuration tool for parents and teachers is available which allows Tux Paint to be reconfigured to suit the special needs of children or the classroom environment.
<<lessTux Paint provides a blank canvas and a variety of drawing tools to help your child be creative. Additional artwork ("stamps") can be downloaded and installed, providing a sticker-book functionality.
Tux Paint has been translated into nearly 70 languages, and a graphical configuration tool for parents and teachers is available which allows Tux Paint to be reconfigured to suit the special needs of children or the classroom environment.
Download (3.0MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
879 downloads
Layer-7 Packet Classifier for Linux 2007-07-27 (Pattern Definitions)
Layer-7 Packet Classifier for Linux is a packet classifier for Netfilter that identifies packets based on application layer. more>>
Layer-7 Packet Classifier for Linux is a packet classifier for Netfilter that identifies packets based on application layer (OSI layer 7) data. This means that it is able to classify packets as HTTP, FTP, Gnucleus, Kazaa, etc., regardless of ports.
It complements existing matches that classify based on port numbers, packet length, TOS bits, and so on. Combined with Linux QoS, it allows for full layer 7 packet shaping.
Main features:
- Patches for Linux 2.4 and 2.6
- Support for TCP, UDP and ICMP over IPv4
- Uses Netfilters connection tracking of FTP, IRC, etc
- Examines data across multiple packets
- Number of packets examined tunable on the fly through /proc
- Number of bytes examined tunable at module load time
- Distinguishes between new connections (those still being tested) and old unidentified connections
- Gives access to both Netfilter and QoS (rate limiting) features
- With the Netfilter "helper" match, you can distinguish between parent and child connections (e.g. ftp command/data)
<<lessIt complements existing matches that classify based on port numbers, packet length, TOS bits, and so on. Combined with Linux QoS, it allows for full layer 7 packet shaping.
Main features:
- Patches for Linux 2.4 and 2.6
- Support for TCP, UDP and ICMP over IPv4
- Uses Netfilters connection tracking of FTP, IRC, etc
- Examines data across multiple packets
- Number of packets examined tunable on the fly through /proc
- Number of bytes examined tunable at module load time
- Distinguishes between new connections (those still being tested) and old unidentified connections
- Gives access to both Netfilter and QoS (rate limiting) features
- With the Netfilter "helper" match, you can distinguish between parent and child connections (e.g. ftp command/data)
Download (MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
820 downloads
Other version of Layer-7 Packet Classifier for Linux
License:GPL (GNU General Public License)
XML::Mini::TreeComponent 1.2.8
XML::Mini::TreeComponent is a Perl implementation of the XML::Mini TreeComponent API. more>>
XML::Mini::TreeComponent is a Perl implementation of the XML::Mini TreeComponent API.
SYNOPSIS
Dont use this class - only presents an interface for other derived classes.
This class is only to be used as a base class for others.
It presents the minimal interface we can expect from any component in the XML hierarchy.
All methods of this base class simply return NULL except a little default functionality included in the parent() method.
Warning: This class is not to be instatiated. Derive and override.
parent [NEWPARENT]
The parent() method is used to get/set the elements parent.
If the NEWPARENT parameter is passed, sets the parent to NEWPARENT (NEWPARENT must be an instance of a class derived from XML::MiniTreeComponent)
Returns a reference to the parent XML::MiniTreeComponent if set, NULL otherwise.
toString [DEPTH]
Return a stringified version of the XML representing this component and all sub-components
dump
Debugging aid, dump returns a nicely formatted dump of the current structure of the XML::Mini::TreeComponent-derived object.
<<lessSYNOPSIS
Dont use this class - only presents an interface for other derived classes.
This class is only to be used as a base class for others.
It presents the minimal interface we can expect from any component in the XML hierarchy.
All methods of this base class simply return NULL except a little default functionality included in the parent() method.
Warning: This class is not to be instatiated. Derive and override.
parent [NEWPARENT]
The parent() method is used to get/set the elements parent.
If the NEWPARENT parameter is passed, sets the parent to NEWPARENT (NEWPARENT must be an instance of a class derived from XML::MiniTreeComponent)
Returns a reference to the parent XML::MiniTreeComponent if set, NULL otherwise.
toString [DEPTH]
Return a stringified version of the XML representing this component and all sub-components
dump
Debugging aid, dump returns a nicely formatted dump of the current structure of the XML::Mini::TreeComponent-derived object.
Download (0.034MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
Bazaar Subversion Plugin 0.4.0
Bazaar Subversion Plugin allows bzr direct access to Subversion repositories. more>>
Bazaar Subversion Plugin allows bzr direct access to Subversion repositories. This allows bzr branch, bzr push, bzr pull, and bzr co to work directly against Subversion repositories.
The plugin can at the moment be used to commit to, pull from, merge from, push to and view logs of Subversion branches from Bazaar.
It is fully functional, but has only been tested on a few different Subversion branches (samba, wireshark, subversion, cups), so should be considered alpha.
Main features:
- Connecting to remote Subversion repositories over all protocols supported by Subversion itself (at present: svn://, svn+ssh://, http:// (webdav), file://) as well as dump files. Checkouts, lightweight checkouts and branching works.
- Track Bazaar merges in Subversion. Merged revisions show up as ghosts.
- Subversion working copies. Can be modified, queried (bzr status on a vanilla working copied created with svn co works) and committed from.
- Committing to Subversion from Bazaar.
- Push Bazaar revisions to Subversion. These revisions will show up in Subversion as a commit with the pushed revision as one of the parents.
- Follow branch copies. Revision history is not truncated when a branch was copied in Subversion.
- Efficiently uses network bandwidth.
- Recognizes file metadata (executable bits, symlinks).
- import-svn command with functionality similar to svn2bzr.
- Ability to track merges done with SVK (http://svk.elixus.org/) and write merges from SVK/Svn branches in a format understandable by SVK.
- Generates consistent file ids and revision ids. Two branches made using this plugin of the same Subversion branch will result in *exactly* the same Bazaar branch.
- Handles complex operations in Subversion: committing to two branches at once, upgrading directories to branches, copies from early revisions, ...
<<lessThe plugin can at the moment be used to commit to, pull from, merge from, push to and view logs of Subversion branches from Bazaar.
It is fully functional, but has only been tested on a few different Subversion branches (samba, wireshark, subversion, cups), so should be considered alpha.
Main features:
- Connecting to remote Subversion repositories over all protocols supported by Subversion itself (at present: svn://, svn+ssh://, http:// (webdav), file://) as well as dump files. Checkouts, lightweight checkouts and branching works.
- Track Bazaar merges in Subversion. Merged revisions show up as ghosts.
- Subversion working copies. Can be modified, queried (bzr status on a vanilla working copied created with svn co works) and committed from.
- Committing to Subversion from Bazaar.
- Push Bazaar revisions to Subversion. These revisions will show up in Subversion as a commit with the pushed revision as one of the parents.
- Follow branch copies. Revision history is not truncated when a branch was copied in Subversion.
- Efficiently uses network bandwidth.
- Recognizes file metadata (executable bits, symlinks).
- import-svn command with functionality similar to svn2bzr.
- Ability to track merges done with SVK (http://svk.elixus.org/) and write merges from SVK/Svn branches in a format understandable by SVK.
- Generates consistent file ids and revision ids. Two branches made using this plugin of the same Subversion branch will result in *exactly* the same Bazaar branch.
- Handles complex operations in Subversion: committing to two branches at once, upgrading directories to branches, copies from early revisions, ...
Download (0.055MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
810 downloads
Tiki CMS/Groupware 1.9.7
Tiki CMS/Groupware (aka TikiWiki) is a powerful open-source Content Management System. more>>
Tiki CMS/Groupware (aka TikiWiki) is a powerful open-source Content Management System (CMS) and Groupware that can be used to create all sorts of Web applications, intranets, portals, sites, and extranets.
Major features include articles, forums, newsletters, blogs, a file/image gallery, a Wiki, drawing, trackers, a directory, polls/surveys and quizzes, a FAQ, chat, a banner management system, Webmail, a calendar, Ephemerides, maps, charts, Mobile Tiki (PDA and WAP access), RSS feeds, a category system, a theme control center, workflow, live support, Shoutbox, ACLs, and more.
Main features:
- The Wiki
- Image Gallery
- Articles and submissions
- Blogs
- JgraphPad drawings
- Mobile Tiki
- Voice Tiki
- Banner ads
- Dynamic Content System
- File Galleries
- Featured Links
- Comments
- Forums
- ChatRooms
- Communications center
- Polls
- Category system
- FAQs
- Quizzes
- RSS feeds
- HTML pages
- HTML pages dynamic
- Surveys
- Trackers
- Maps
- Newsletters
- Directory
- Ephemerides
- Shoutbox
- Search
- Games
- Live Support System
- Galaxia Workflow Engine
- Charts
- My Tiki section
Enhancements:
- This release contains fixes for some security issues, many bugfixes, enhancements, and new features.
<<lessMajor features include articles, forums, newsletters, blogs, a file/image gallery, a Wiki, drawing, trackers, a directory, polls/surveys and quizzes, a FAQ, chat, a banner management system, Webmail, a calendar, Ephemerides, maps, charts, Mobile Tiki (PDA and WAP access), RSS feeds, a category system, a theme control center, workflow, live support, Shoutbox, ACLs, and more.
Main features:
- The Wiki
- Image Gallery
- Articles and submissions
- Blogs
- JgraphPad drawings
- Mobile Tiki
- Voice Tiki
- Banner ads
- Dynamic Content System
- File Galleries
- Featured Links
- Comments
- Forums
- ChatRooms
- Communications center
- Polls
- Category system
- FAQs
- Quizzes
- RSS feeds
- HTML pages
- HTML pages dynamic
- Surveys
- Trackers
- Maps
- Newsletters
- Directory
- Ephemerides
- Shoutbox
- Search
- Games
- Live Support System
- Galaxia Workflow Engine
- Charts
- My Tiki section
Enhancements:
- This release contains fixes for some security issues, many bugfixes, enhancements, and new features.
Download (8.6MB)
Added: 2006-12-05 License: LGPL (GNU Lesser General Public License) Price:
1053 downloads
Scout Tracker 0.13
Scout Tracker tracks Boy Scout advancements towards their Eagle Scout. more>>
Scout Tracker tracks Boy Scout advancements towards their Eagle Scout.
Scoutmasters can let the boys know about incomplete requirements without affecting advancement records. Worksheets created for the scouts are stored in a database for easy view and hide access.
Scouts can view the progress of all scouts to enable them to find other scouts who need to work on the same requirement or merit badge. Only leaders and administrators can change data on the site. The best part is that parents and scouts can access their information anytime they want without having to call the Scoutmaster.
<<lessScoutmasters can let the boys know about incomplete requirements without affecting advancement records. Worksheets created for the scouts are stored in a database for easy view and hide access.
Scouts can view the progress of all scouts to enable them to find other scouts who need to work on the same requirement or merit badge. Only leaders and administrators can change data on the site. The best part is that parents and scouts can access their information anytime they want without having to call the Scoutmaster.
Download (2.2MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
722 downloads
CPS (Collaborative Portal Server) 3.4.0
CPS is the collaborative web content management solution for Zope. more>>
Collaborative Portal Server (CPS) is the most complete Open Source solution available for building ECM applications.
CPS comes also as a user-friendly application for entreprise-grade content management with many collaboration features.
CPS is the collaborative web content management solution for Zope.
CPS is built on top of the powerful Zope application server.
This web portal aims at unifying and providing a common platform to the CPS community.
CPS is backed by Nuxeo and a community of contributors (Chalmers University, Infrae, etc.) and is released under the GPL.
CPS is an extensive collaborative Web content management system (CMS) implemented on top of Zope and the CMF, that enables organizations to easily, quickly and efficiently implement collaborative portals (intranet, extranet or internet) and workflow- oriented business applications.
Main features:
- Collaborative work and publication spaces (you may need to be authenticated with the right access level to access these URLs)
- Document versionning, that allows a document to be published in one version and still worked on in another one
- Group-based, directory-backed user and roles management
- A configurable Portal interface, with a web- and accessibility-standards compliant default look and feel (you will need to be authenticated with the right access level to access this URL)
- Notifications on many kinds of events happening on the system
- An (optional) WYSIWYG editor for portal look and feel (just install CPSSkins in your CPS instance using the ZMI)
- Many user-level services, like a Webmail, Forums, shared Calendars, Newsletters and Mailing Lists, etc.
- Many powerful developers- and webmaster-level services, including support for creating your own document types, your own workflows, etc.
<<lessCPS comes also as a user-friendly application for entreprise-grade content management with many collaboration features.
CPS is the collaborative web content management solution for Zope.
CPS is built on top of the powerful Zope application server.
This web portal aims at unifying and providing a common platform to the CPS community.
CPS is backed by Nuxeo and a community of contributors (Chalmers University, Infrae, etc.) and is released under the GPL.
CPS is an extensive collaborative Web content management system (CMS) implemented on top of Zope and the CMF, that enables organizations to easily, quickly and efficiently implement collaborative portals (intranet, extranet or internet) and workflow- oriented business applications.
Main features:
- Collaborative work and publication spaces (you may need to be authenticated with the right access level to access these URLs)
- Document versionning, that allows a document to be published in one version and still worked on in another one
- Group-based, directory-backed user and roles management
- A configurable Portal interface, with a web- and accessibility-standards compliant default look and feel (you will need to be authenticated with the right access level to access this URL)
- Notifications on many kinds of events happening on the system
- An (optional) WYSIWYG editor for portal look and feel (just install CPSSkins in your CPS instance using the ZMI)
- Many user-level services, like a Webmail, Forums, shared Calendars, Newsletters and Mailing Lists, etc.
- Many powerful developers- and webmaster-level services, including support for creating your own document types, your own workflows, etc.
Download (7.3MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1326 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 newsletters for parents 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