TiP 0.3.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News TiP 0.3.0 (Default branch)
# 1  
Old 08-10-2008
TiP 0.3.0 (Default branch)

TiP is a general purpose framework for quicklybuild a working Web site in a typical PHP/MySQLenvironment. It is targeted at developers,experienced Web administrators, and anyoneunafraid of hacking and using a text editor.License: BSD License (revised)Changes:
This release implements TIP_Class, a new content module able to span one logical element into more than one database table. To implement this feature, the TIP_Form module has been modified to allow a staged form submission, where the data is fetched in more than one submit (and a following form depends on some value submitted in the previous form). The "source" term has been renamed to "template", as template is a more recognized term. Furthermore, the template extension is now managed in the template engine.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Tip] A better echo

Often it has been said that echo is neither portable nor correct. Here is an input.txt: line1 line2 -n line4 -en line6 -x line8 Then the following fails with BSD/Linux/bash: while IFS= read line do echo "$line" done < input.txt It is elegantly improved by means of an echo... (2 Replies)
Discussion started by: MadeInGermany
2 Replies

2. AIX

[TIP] Migration to POWER8

Read "Migration to POWER8" article to get prepared for migration to POWER8: link removed, advertisement (0 Replies)
Discussion started by: pave01
0 Replies

3. Shell Programming and Scripting

Search tip.

How do I find a key word in multiple files.. in a directory.. ? cat *.doc | grep -i myword? (7 Replies)
Discussion started by: hamon
7 Replies

4. Shell Programming and Scripting

Regexp tip

Hello, I'm just starting working on it. I'd like to get a tip For istance if I have a file like: a b c d e f .... and I wanna get: 1a & 2b & 3c 0d & 8e & 4f ..... I would like to use sed and come up with a regular expression that works.... (3 Replies)
Discussion started by: Dedalus
3 Replies

5. Solaris

Solaris; tip

plz explain TIP in solaris in detail. (11 Replies)
Discussion started by: karman0931
11 Replies

6. Shell Programming and Scripting

Little bit of a help or just a tip

I am about to do a script that change the COST so i dont need to change each cost. The output looks like this. "OL_ID OL_LINK_COST ----------- ------------ 51 10 52 10 53 10 54 10 55 ... (3 Replies)
Discussion started by: maskot
3 Replies

7. Solaris

tip into 280R

I need to use tip from machine A serial port to machine B serial port. Can someone point me to an example of the correct cable to use? Thanks. (1 Reply)
Discussion started by: dangral
1 Replies

8. UNIX for Dummies Questions & Answers

one teaching Tip

Student have huge interest about why so many expert choose use UNIX than MS Windows. I consider that SHARE & OPEN is key point.:) (2 Replies)
Discussion started by: 111000
2 Replies
Login or Register to Ask a Question
Jifty::Web::Session::JDBI(3pm)				User Contributed Perl Documentation			    Jifty::Web::Session::JDBI(3pm)

NAME
Jifty::Web::Session - A Jifty session handler SYNOPSIS
In your etc/config.yml (optional): framework: Web: # The default ($PORT is replaced by the port the app is running on) SessionCookieName: JIFTY_SID_$PORT new Returns a new, empty session. id Returns the session's id if it has been loaded, or "undef" otherwise. create Creates a new row in the Jifty::Model::Session table. load [ID] Load up the current session from the given "ID", or the appropriate cookie (see "cookie_name") otherwise. If both of those fail, creates a session in the database. load_by_kv key => value Load up the current session from the given (key, value) pair. If no matching session could be found, it will create a new session with the key, value set. Be sure that what you're loading by is unique. If you're loading a session based on, say, a timestamp, then you're asking for trouble. get KEY [TYPE] Returns the value for "KEY" for the current user's session. "TYPE", which defaults to "key", allows accessing of other namespaces in the session, including "metadata" and "continuation". set KEY => VALUE, [TYPE] Sets the value "VALUE" for "KEY" for the session. "TYPE", which defaults to "key", allows values to be set in other namespaces, including "metadata" and "continuation". "VALUE" can be an arbitrary perl data structure -- "Jifty::Web::Session" will serialize it for you. remove KEY, [TYPE] Remove key "KEY" from the cache. "TYPE" defaults to "key". remove_all Removes the session from the database entirely. continuations Return a hash of all the continuations in this session, keyed by the continuations' "id". perl v5.14.2 2010-12-08 Jifty::Web::Session::JDBI(3pm)