import from teh SVN
15
.htaccess
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteBase /
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteRule ^(.*)$ index.php/$1 [L]
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<IfModule !mod_rewrite.c>
|
||||||
|
# If we don't have mod_rewrite installed, all 404's
|
||||||
|
# can be sent to index.php, and everything works as normal.
|
||||||
|
# Submitted by: ElliotHaughin
|
||||||
|
|
||||||
|
ErrorDocument 404 /index.php
|
||||||
|
</IfModule>
|
52
CI_LICENSE
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
Copyright (c) 2006, EllisLab, Inc.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
This license is a legal agreement between you and EllisLab Inc. for the use
|
||||||
|
of CodeIgniter Software (the "Software"). By obtaining the Software you
|
||||||
|
agree to comply with the terms and conditions of this license.
|
||||||
|
|
||||||
|
PERMITTED USE
|
||||||
|
You are permitted to use, copy, modify, and distribute the Software and its
|
||||||
|
documentation, with or without modification, for any purpose, provided that
|
||||||
|
the following conditions are met:
|
||||||
|
|
||||||
|
1. A copy of this license agreement must be included with the distribution.
|
||||||
|
|
||||||
|
2. Redistributions of source code must retain the above copyright notice in
|
||||||
|
all source code files.
|
||||||
|
|
||||||
|
3. Redistributions in binary form must reproduce the above copyright notice
|
||||||
|
in the documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
4. Any files that have been modified must carry notices stating the nature
|
||||||
|
of the change and the names of those who changed them.
|
||||||
|
|
||||||
|
5. Products derived from the Software must include an acknowledgment that
|
||||||
|
they are derived from CodeIgniter in their documentation and/or other
|
||||||
|
materials provided with the distribution.
|
||||||
|
|
||||||
|
6. Products derived from the Software may not be called "CodeIgniter",
|
||||||
|
nor may "CodeIgniter" appear in their name, without prior written
|
||||||
|
permission from EllisLab, Inc.
|
||||||
|
|
||||||
|
|
||||||
|
INDEMNITY
|
||||||
|
You agree to indemnify and hold harmless the authors of the Software and
|
||||||
|
any contributors for any direct, indirect, incidental, or consequential
|
||||||
|
third-party claims, actions or suits, as well as any related expenses,
|
||||||
|
liabilities, damages, settlements or fees arising from your use or misuse
|
||||||
|
of the Software, or a violation of any terms of this license.
|
||||||
|
|
||||||
|
DISCLAIMER OF WARRANTY
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR
|
||||||
|
IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF QUALITY, PERFORMANCE,
|
||||||
|
NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
LIMITATIONS OF LIABILITY
|
||||||
|
YOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE BE LIABLE
|
||||||
|
FOR CLAIMS, DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE. LICENSE HOLDERS ARE SOLELY RESPONSIBLE FOR DETERMINING THE
|
||||||
|
APPROPRIATENESS OF USE AND ASSUME ALL RISKS ASSOCIATED WITH ITS USE, INCLUDING
|
||||||
|
BUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO EQUIPMENT, LOSS OF
|
||||||
|
DATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS.
|
41
INSTALL
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
INSTALL
|
||||||
|
stikked - Version 0.5.3
|
||||||
|
|
||||||
|
Created by Ben McRedmond on 2008-03-18.
|
||||||
|
Contact me about Stikked at hello@benmcredmond.com.
|
||||||
|
Copyright 2008 Stikked. Some rights reserved.
|
||||||
|
|
||||||
|
Installing stikked at the moment isn't exactly trivial in future releases there will be a wizard but at the moment here's how it goes.
|
||||||
|
|
||||||
|
(1). Download stikked from http://code.google.com/p/stikked
|
||||||
|
|
||||||
|
(2). Make sure your server supports PHP5 (PHP4 will not work), apache and MySQL.
|
||||||
|
|
||||||
|
N.B. Your server must have short tags enabled.
|
||||||
|
|
||||||
|
(3). First create a user and database for Stikked using a tool like phpMyAdmin or the MySQL Administration CLI.
|
||||||
|
|
||||||
|
(4). Run the following command to setup the database structure;
|
||||||
|
|
||||||
|
mysql -u username -p databasename < mysql.sql
|
||||||
|
|
||||||
|
You will be prompted for the password enter it, and it will create the table structure.
|
||||||
|
|
||||||
|
(5). Configure Stikked
|
||||||
|
(5.1) Open /system/application/config/config.php - and edit the base_url value.
|
||||||
|
(5.2) Open /system/application/config/database.php - and fill in the relevant information for your database.
|
||||||
|
|
||||||
|
(6). You can configure additional options in /system/application/config/stikked.php. Including the name of your site. Which is displayed at the top of each page.
|
||||||
|
|
||||||
|
(7). Configure the cron for auto-expiration (*nix only):
|
||||||
|
(7.1) Set the key for cron in /system/application/config/stikked.php.
|
||||||
|
(7.2) Open a shell and run crontab -e and enter:
|
||||||
|
|
||||||
|
00, 30 * * * * curl --silent --compressed http://example.com/cron/key > /dev/null 2>&1
|
||||||
|
|
||||||
|
(7.2) Save and pray.
|
||||||
|
|
||||||
|
(8). Remember to modify .htaccess, you need to change the base_url to the same url you put in config.php.
|
||||||
|
|
||||||
|
(9). You should be up and running now, post any bugs to http://code.google.com/p/stikked.
|
674
LICENSE
Normal file
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
18
README
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
README
|
||||||
|
stikked - Version 0.5.3
|
||||||
|
|
||||||
|
Created by Ben McRedmond on 2008-09-15.
|
||||||
|
Contact me about stikked at hello@benmcredmond.com.
|
||||||
|
Copyright 2008 Stikked. Some rights reserved.
|
||||||
|
|
||||||
|
|
||||||
|
Stikked is an open-source php pastebin, this pastebin may be used under the following conditions:
|
||||||
|
(1). The footer message remains intact, you may add to it but not take away. Removing the current footer message breaches the license.
|
||||||
|
(2). You acknowledge that Stikked is built off the open-source CodeIgniter framework available at http://codeigniter.com which is licensed under the terms outlined in "CI_LICENSE".
|
||||||
|
(3). You acknowledge the JQuery library is included with Stikked and is dual licensed under the GPL/MIT licenses available at http://jquery.com.
|
||||||
|
(4). You acknowledge that the geshi library is included with stikked, licensing information on this can be found in /system/application/libraries/geshi/docs/.
|
||||||
|
(5). You acknowledge the terms under which the jQuery "clipboard" plugin is released, these terms can be found in /static/js/jquery.clipboard.js.
|
||||||
|
(6). You agree to the terms of the GPL license agreement under which stikked is released, you can find a copy of this license in this directory under the name "LICENSE".
|
||||||
|
|
||||||
|
For install instructions see INSTALL.
|
897
docs/CodeIgniter/Libraries/DB_Session.html
Normal file
@ -0,0 +1,897 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class DB_Session</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> DB_Session</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
|
||||||
|
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Session Class</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Dready</li>
|
||||||
|
<li><span class="field">link:</span> <a href="http://dready.jexiste.fr/dotclear/index.php?2006/09/13/19-reworked-session-handler-for-code-igniter">http://dready.jexiste.fr/dotclear/index.php?2006/09/13/19-reworked-session-handler-for-code-igniter</a></li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_libraries---DB_Session.php.html">/libraries/DB_Session.php</a> (line <span class="field">16</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre></pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-var-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Variable Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Vars</span> (<a href="#sec-vars">details</a>)
|
||||||
|
|
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="var-summary">
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$cookie_sent" title="details" class="var-name">$cookie_sent</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$encryption" title="details" class="var-name">$encryption</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$flash_key" title="details" class="var-name">$flash_key</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$gc_probability" title="details" class="var-name">$gc_probability</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$now" title="details" class="var-name">$now</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$object" title="details" class="var-name">$object</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$session_table" title="details" class="var-name">$session_table</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$sess_cookie" title="details" class="var-name">$sess_cookie</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$sess_length" title="details" class="var-name">$sess_length</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$userdata" title="details" class="var-name">$userdata</a>
|
||||||
|
</div>
|
||||||
|
<div class="var-title">
|
||||||
|
<img src="../../media/images/Variable.png" alt=" " />
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<a href="#$use_database" title="details" class="var-name">$use_database</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
|
||||||
|
|
||||||
|
|
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Constructor.png" alt=" "/>
|
||||||
|
<span class="method-result">DB_Session</span>
|
||||||
|
<a href="#DB_Session" title="details" class="method-name">DB_Session</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#flashdata" title="details" class="method-name">flashdata</a>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>)
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#keep_flashdata" title="details" class="method-name">keep_flashdata</a>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>)
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_create" title="details" class="method-name">sess_create</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_destroy" title="details" class="method-name">sess_destroy</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_gc" title="details" class="method-name">sess_gc</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_read" title="details" class="method-name">sess_read</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_run" title="details" class="method-name">sess_run</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_send_cookie" title="details" class="method-name">sess_send_cookie</a>
|
||||||
|
([<span class="var-type">boolean</span> <span class="var-name">$force</span> = <span class="var-default">FALSE</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#sess_update" title="details" class="method-name">sess_update</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#set_flashdata" title="details" class="method-name">set_flashdata</a>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>, <span class="var-type"></span> <span class="var-name">$value</span>)
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#set_userdata" title="details" class="method-name">set_userdata</a>
|
||||||
|
([<span class="var-type">mixed</span> <span class="var-name">$newdata</span> = <span class="var-default">array()</span>], [<span class="var-type">string</span> <span class="var-name">$newval</span> = <span class="var-default">''</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#unset_userdata" title="details" class="method-name">unset_userdata</a>
|
||||||
|
([<span class="var-type"></span> <span class="var-name">$newdata</span> = <span class="var-default">array()</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">string</span>
|
||||||
|
<a href="#userdata" title="details" class="method-name">userdata</a>
|
||||||
|
([<span class="var-type">string</span> <span class="var-name">$item</span> = <span class="var-default">''</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#_flashdata_mark" title="details" class="method-name">_flashdata_mark</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#_flashdata_sweep" title="details" class="method-name">_flashdata_sweep</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-vars"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Variables</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
|
||||||
|
<a name="var$cookie_sent" id="$cookie_sent"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$cookie_sent</span>
|
||||||
|
= <span class="var-default"> FALSE</span> (line <span class="line-number">26</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$encryption" id="$encryption"><!-- --></A>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$encryption</span>
|
||||||
|
= <span class="var-default"> TRUE</span> (line <span class="line-number">19</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$flash_key" id="$flash_key"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$flash_key</span>
|
||||||
|
= <span class="var-default"> 'flash'</span> (line <span class="line-number">28</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$gc_probability" id="$gc_probability"><!-- --></A>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$gc_probability</span>
|
||||||
|
= <span class="var-default"> 5</span> (line <span class="line-number">25</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$now" id="$now"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$now</span>
|
||||||
|
(line <span class="line-number">18</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$object" id="$object"><!-- --></A>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$object</span>
|
||||||
|
(line <span class="line-number">27</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$session_table" id="$session_table"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$session_table</span>
|
||||||
|
= <span class="var-default"> FALSE</span> (line <span class="line-number">21</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$sess_cookie" id="$sess_cookie"><!-- --></A>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$sess_cookie</span>
|
||||||
|
= <span class="var-default"> 'ci_session'</span> (line <span class="line-number">23</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$sess_length" id="$sess_length"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$sess_length</span>
|
||||||
|
= <span class="var-default"> 7200</span> (line <span class="line-number">22</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$userdata" id="$userdata"><!-- --></A>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$userdata</span>
|
||||||
|
= <span class="var-default">array()</span> (line <span class="line-number">24</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="var$use_database" id="$use_database"><!-- --></A>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="var-header">
|
||||||
|
<img src="../../media/images/Variable.png" />
|
||||||
|
<span class="var-title">
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$use_database</span>
|
||||||
|
= <span class="var-default"> FALSE</span> (line <span class="line-number">20</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="methodDB_Session" id="DB_Session"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Constructor.png" />
|
||||||
|
<span class="method-title">Constructor DB_Session</span> (line <span class="line-number">37</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Session Constructor</p>
|
||||||
|
<p class="description"><p>The constructor runs the session routines automatically whenever the class is instantiated.</p></p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">DB_Session</span>
|
||||||
|
<span class="method-name">
|
||||||
|
DB_Session
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodflashdata" id="flashdata"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">flashdata</span> (line <span class="line-number">453</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Returns "flash" data for the given key.</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
flashdata
|
||||||
|
</span>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type"></span>
|
||||||
|
<span class="var-name">$key</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodkeep_flashdata" id="keep_flashdata"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">keep_flashdata</span> (line <span class="line-number">441</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Keeps existing "flash" data available to next request.</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
keep_flashdata
|
||||||
|
</span>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type"></span>
|
||||||
|
<span class="var-name">$key</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_create" id="sess_create"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_create</span> (line <span class="line-number">257</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Create a new session</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_create
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_destroy" id="sess_destroy"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_destroy</span> (line <span class="line-number">315</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Destroy the current session</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_destroy
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_gc" id="sess_gc"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_gc</span> (line <span class="line-number">339</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Garbage collection</p>
|
||||||
|
<p class="description"><p>This deletes expired session rows from database if the probability percentage is met</p></p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_gc
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_read" id="sess_read"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_read</span> (line <span class="line-number">161</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Fetch the current session data if it exists</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_read
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_run" id="sess_run"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_run</span> (line <span class="line-number">53</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Run the session routines</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_run
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_send_cookie" id="sess_send_cookie"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_send_cookie</span> (line <span class="line-number">233</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Write the session cookie</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_send_cookie
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">boolean</span> <span class="var-name">$force</span> = <span class="var-default">FALSE</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">boolean</span>
|
||||||
|
<span class="var-name">$force</span><span class="var-description">: true if we want to send cookie even if a cookie has already been sent</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodsess_update" id="sess_update"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">sess_update</span> (line <span class="line-number">287</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Update an existing session</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
sess_update
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodset_flashdata" id="set_flashdata"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">set_flashdata</span> (line <span class="line-number">432</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Sets "flash" data which will be available only in next request (then it will be deleted from session). You can use it to implement "Save succeeded" messages after redirect.</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
set_flashdata
|
||||||
|
</span>
|
||||||
|
(<span class="var-type"></span> <span class="var-name">$key</span>, <span class="var-type"></span> <span class="var-name">$value</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type"></span>
|
||||||
|
<span class="var-name">$key</span> </li>
|
||||||
|
<li>
|
||||||
|
<span class="var-type"></span>
|
||||||
|
<span class="var-name">$value</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodset_userdata" id="set_userdata"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">set_userdata</span> (line <span class="line-number">380</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Add or change data in the "userdata" array</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
set_userdata
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">mixed</span> <span class="var-name">$newdata</span> = <span class="var-default">array()</span>], [<span class="var-type">string</span> <span class="var-name">$newval</span> = <span class="var-default">''</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">mixed</span>
|
||||||
|
<span class="var-name">$newdata</span> </li>
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$newval</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodunset_userdata" id="unset_userdata"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">unset_userdata</span> (line <span class="line-number">407</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Delete a session variable from the "userdata" array</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
unset_userdata
|
||||||
|
</span>
|
||||||
|
([<span class="var-type"></span> <span class="var-name">$newdata</span> = <span class="var-default">array()</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type"></span>
|
||||||
|
<span class="var-name">$newdata</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methoduserdata" id="userdata"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">userdata</span> (line <span class="line-number">363</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Fetch a specific item form the session array</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">string</span>
|
||||||
|
<span class="method-name">
|
||||||
|
userdata
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">string</span> <span class="var-name">$item</span> = <span class="var-default">''</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$item</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="method_flashdata_mark" id="_flashdata_mark"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">_flashdata_mark</span> (line <span class="line-number">462</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">PRIVATE: Internal method - marks "flash" session attributes as 'old'</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
_flashdata_mark
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="method_flashdata_sweep" id="_flashdata_sweep"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">_flashdata_sweep</span> (line <span class="line-number">480</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">PRIVATE: Internal method - removes "flash" session marked as 'old'</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
_flashdata_sweep
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
63
docs/CodeIgniter/Libraries/_libraries---DB_Session.php.html
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page DB_Session.php</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/libraries/DB_Session.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../../CodeIgniter/Libraries/DB_Session.html">DB_Session</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Session Class
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
172
docs/Stikked/Controllers/Iphone.html
Normal file
@ -0,0 +1,172 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class Iphone</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> Iphone</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">iPhone controller class for stikked.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">version:</span> 0.5.1</li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_controllers---iphone.php.html">/controllers/iphone.php</a> (line <span class="field">24</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre>Controller
|
||||||
|
|
|
||||||
|
--Iphone</pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Constructor.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#__construct" title="details" class="method-name">__construct</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#index" title="details" class="method-name">index</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#view" title="details" class="method-name">view</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="method__construct" id="__construct"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Constructor.png" />
|
||||||
|
<span class="method-title">Constructor __construct</span> (line <span class="line-number">33</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Class Constructor</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
__construct
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodindex" id="index"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">index</span> (line <span class="line-number">46</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Displays recent pastes in an iPhone optimized version.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
index
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodview" id="view"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">view</span> (line <span class="line-number">61</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Displays an individual paste in an iPhone optimized version.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
view
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
360
docs/Stikked/Controllers/Main.html
Normal file
@ -0,0 +1,360 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class Main</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> Main</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Main controller class for stikked.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">version:</span> 0.5.1</li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_controllers---main.php.html">/controllers/main.php</a> (line <span class="field">24</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre>Controller
|
||||||
|
|
|
||||||
|
--Main</pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Constructor.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#__construct" title="details" class="method-name">__construct</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#about" title="details" class="method-name">about</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void;</span>
|
||||||
|
<a href="#cron" title="details" class="method-name">cron</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#download" title="details" class="method-name">download</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#index" title="details" class="method-name">index</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#lists" title="details" class="method-name">lists</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#raw" title="details" class="method-name">raw</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#view" title="details" class="method-name">view</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#view_options" title="details" class="method-name">view_options</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="method__construct" id="__construct"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Constructor.png" />
|
||||||
|
<span class="method-title">Constructor __construct</span> (line <span class="line-number">33</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Class Constructor, loads languages model which is inherited in the pastes model.</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
__construct
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodabout" id="about"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">about</span> (line <span class="line-number">392</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to load about view.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
about
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcron" id="cron"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">cron</span> (line <span class="line-number">368</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to run the cron. Requires a valid cron key supplied as an argument in the url.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void;</span>
|
||||||
|
<span class="method-name">
|
||||||
|
cron
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methoddownload" id="download"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">download</span> (line <span class="line-number">215</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to download pastes.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
download
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodindex" id="index"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">index</span> (line <span class="line-number">113</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to load front page.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">see:</span> _valid_lang()</li>
|
||||||
|
<li><span class="field">see:</span> _form_prep()</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
index
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodlists" id="lists"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">lists</span> (line <span class="line-number">240</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to show recent pastes.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
lists
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodraw" id="raw"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">raw</span> (line <span class="line-number">190</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to load raw pastes.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
raw
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodview" id="view"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">view</span> (line <span class="line-number">256</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Controller method to show a paste.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
view
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodview_options" id="view_options"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">view_options</span> (line <span class="line-number">325</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Displays the page where a user can change their paste viewing settings which are saved to session data.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
view_options
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
119
docs/Stikked/Libraries/Process.html
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class Process</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> Process</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Source code processing class / Geshi Wrapper</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">version:</span> 0.5.1</li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_libraries---Process.php.html">/libraries/Process.php</a> (line <span class="field">26</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre></pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">string</span>
|
||||||
|
<a href="#syntax" title="details" class="method-name">syntax</a>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$source</span>, <span class="var-type">string</span> <span class="var-name">$lang</span>)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="methodsyntax" id="syntax"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">syntax</span> (line <span class="line-number">37</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Runs source code through Geshi syntax highlighting engine.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">string</span>
|
||||||
|
<span class="method-name">
|
||||||
|
syntax
|
||||||
|
</span>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$source</span>, <span class="var-type">string</span> <span class="var-name">$lang</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$source</span><span class="var-description">: Source code to process</span> </li>
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$lang</span><span class="var-description">: Language of source code</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
213
docs/Stikked/Models/Languages.html
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class Languages</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> Languages</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Main controller class for stikked.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">version:</span> 0.5.1</li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_models---Languages.php.html">/models/Languages.php</a> (line <span class="field">24</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre>Model
|
||||||
|
|
|
||||||
|
--Languages</pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Constructor.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#__construct" title="details" class="method-name">__construct</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">Boolean|string</span>
|
||||||
|
<a href="#code_to_description" title="details" class="method-name">code_to_description</a>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$code</span>)
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<a href="#get_languages" title="details" class="method-name">get_languages</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">Boolean</span>
|
||||||
|
<a href="#valid_language" title="details" class="method-name">valid_language</a>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$lang</span>)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="method__construct" id="__construct"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Constructor.png" />
|
||||||
|
<span class="method-title">Constructor __construct</span> (line <span class="line-number">33</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Class Constructor</p>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
__construct
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcode_to_description" id="code_to_description"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">code_to_description</span> (line <span class="line-number">97</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Takes a language code eg. php, cpp, html4 and converts it to its description eg. PHP, C++, Html 4 (Strict).</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">Boolean|string</span>
|
||||||
|
<span class="method-name">
|
||||||
|
code_to_description
|
||||||
|
</span>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$code</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$code</span><span class="var-description">: Paste language</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodget_languages" id="get_languages"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">get_languages</span> (line <span class="line-number">70</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Gets list of languages from database to generate select field on paste form.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<span class="method-name">
|
||||||
|
get_languages
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodvalid_language" id="valid_language"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">valid_language</span> (line <span class="line-number">47</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Checks if a language is valid, called from the main controller _valid_lang validation callback method</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">Boolean</span>
|
||||||
|
<span class="method-name">
|
||||||
|
valid_language
|
||||||
|
</span>
|
||||||
|
(<span class="var-type">string</span> <span class="var-name">$lang</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$lang</span><span class="var-description">: Paste language</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
317
docs/Stikked/Models/Pastes.html
Normal file
@ -0,0 +1,317 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs For Class Pastes</title>
|
||||||
|
<link rel="stylesheet" href="../../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
|
||||||
|
alt=" Class"
|
||||||
|
title=" Class"
|
||||||
|
style="vertical-align: middle"> Pastes</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Main model class for pastes table/stikked.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">version:</span> 0.5.1</li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
<p class="notes">
|
||||||
|
Located in <a class="field" href="_models---Pastes.php.html">/models/Pastes.php</a> (line <span class="field">24</span>)
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<pre>Model
|
||||||
|
|
|
||||||
|
--Pastes</pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-method-summary"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Method Summary</span></div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<div class="method-summary">
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Constructor.png" alt=" "/>
|
||||||
|
<span class="method-result">Pastes</span>
|
||||||
|
<a href="#__construct" title="details" class="method-name">__construct</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">boolean</span>
|
||||||
|
<a href="#checkPaste" title="details" class="method-name">checkPaste</a>
|
||||||
|
([<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">int</span>
|
||||||
|
<a href="#countPastes" title="details" class="method-name">countPastes</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">String</span>
|
||||||
|
<a href="#createPaste" title="details" class="method-name">createPaste</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<a href="#cron" title="details" class="method-name">cron</a>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<a href="#getLists" title="details" class="method-name">getLists</a>
|
||||||
|
([<span class="var-type">string</span> <span class="var-name">$root</span> = <span class="var-default">'lists/'</span>], [<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>])
|
||||||
|
</div>
|
||||||
|
<div class="method-definition">
|
||||||
|
<img src="../../media/images/Method.png" alt=" "/>
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<a href="#getPaste" title="details" class="method-name">getPaste</a>
|
||||||
|
([<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>], [<span class="var-type">bool|string</span> <span class="var-name">$replies</span> = <span class="var-default">false</span>])
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="sec-methods"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Methods</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<A NAME='method_detail'></A>
|
||||||
|
<a name="method__construct" id="__construct"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Constructor.png" />
|
||||||
|
<span class="method-title">Constructor __construct</span> (line <span class="line-number">27</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">Pastes</span>
|
||||||
|
<span class="method-name">
|
||||||
|
__construct
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcheckPaste" id="checkPaste"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">checkPaste</span> (line <span class="line-number">183</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Checks if a paste exists</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">boolean</span>
|
||||||
|
<span class="method-name">
|
||||||
|
checkPaste
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">int</span>
|
||||||
|
<span class="var-name">$seg</span><span class="var-description">: URL Segment which the paste id is in</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcountPastes" id="countPastes"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">countPastes</span> (line <span class="line-number">41</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Counts pastes in the database to be used when generating pagination</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">see:</span> <a href="../../Stikked/Models/Pastes.html#methodgetLists">Pastes::getLists()</a></li>
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">int</span>
|
||||||
|
<span class="method-name">
|
||||||
|
countPastes
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcreatePaste" id="createPaste"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">createPaste</span> (line <span class="line-number">56</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Creates a paste in the database. This doesn't take any arguments as it's easier to use the input class.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">String</span>
|
||||||
|
<span class="method-name">
|
||||||
|
createPaste
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodcron" id="cron"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">cron</span> (line <span class="line-number">372</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Finds paste that need to be deleted and deletes them.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">void</span>
|
||||||
|
<span class="method-name">
|
||||||
|
cron
|
||||||
|
</span>
|
||||||
|
()
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodgetLists" id="getLists"><!-- --></a>
|
||||||
|
<div class="evenrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">getLists</span> (line <span class="line-number">331</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Gets a list of x most recent pastes according to the amount set in the stikked config file.</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<span class="method-name">
|
||||||
|
getLists
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">string</span> <span class="var-name">$root</span> = <span class="var-default">'lists/'</span>], [<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">string</span>
|
||||||
|
<span class="var-name">$root</span><span class="var-description">: Url root needed for pagination</span> </li>
|
||||||
|
<li>
|
||||||
|
<span class="var-type">int</span>
|
||||||
|
<span class="var-name">$seg</span><span class="var-description">: Segment which determines the page we're on for pagination.</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<a name="methodgetPaste" id="getPaste"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div class="method-header">
|
||||||
|
<img src="../../media/images/Method.png" />
|
||||||
|
<span class="method-title">getPaste</span> (line <span class="line-number">215</span>)
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Gets a specific paste from the database and all its related meta-data</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">access:</span> public</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="method-signature">
|
||||||
|
<span class="method-result">array</span>
|
||||||
|
<span class="method-name">
|
||||||
|
getPaste
|
||||||
|
</span>
|
||||||
|
([<span class="var-type">int</span> <span class="var-name">$seg</span> = <span class="var-default">2</span>], [<span class="var-type">bool|string</span> <span class="var-name">$replies</span> = <span class="var-default">false</span>])
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="parameters">
|
||||||
|
<li>
|
||||||
|
<span class="var-type">int</span>
|
||||||
|
<span class="var-name">$seg</span><span class="var-description">: URL Segment which the paste id is in</span> </li>
|
||||||
|
<li>
|
||||||
|
<span class="var-type">bool|string</span>
|
||||||
|
<span class="var-name">$replies</span><span class="var-description">: False if you don't want to retrieve replies from the database. Paste ID if you do want to retrieve replies from database. Mostly here for legacy support, eg. iPhone views.</span> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
68
docs/Stikked/_controllers---iphone.php.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page iphone.php</title>
|
||||||
|
<link rel="stylesheet" href="../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/controllers/iphone.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">iPhone Controller for Stikked</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../Stikked/Controllers/Iphone.html">Iphone</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
iPhone controller class for stikked.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
68
docs/Stikked/_controllers---main.php.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page main.php</title>
|
||||||
|
<link rel="stylesheet" href="../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/controllers/main.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Main Controller for Stikked</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../Stikked/Controllers/Main.html">Main</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Main controller class for stikked.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
96
docs/Stikked/_libraries---Process.php.html
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page Process.php</title>
|
||||||
|
<link rel="stylesheet" href="../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/libraries/Process.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
| <a href="#sec-includes">Includes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Source code processing</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
| <a href="#sec-includes">Includes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../Stikked/Libraries/Process.html">Process</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Source code processing class / Geshi Wrapper
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-includes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Includes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
| <span class="disabled">Includes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<a name="_geshi/geshi_php"><!-- --></a>
|
||||||
|
<div class="oddrow">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<img src="../media/images/Page.png" alt=" " />
|
||||||
|
<span class="include-title">
|
||||||
|
<span class="include-type">include_once</span>
|
||||||
|
(<span class="include-name">'geshi/geshi.php'</span>)
|
||||||
|
(line <span class="line-number">12</span>)
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
68
docs/Stikked/_models---Languages.php.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page Languages.php</title>
|
||||||
|
<link rel="stylesheet" href="../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/models/Languages.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Languages Model for Stikked</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../Stikked/Models/Languages.html">Languages</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Main controller class for stikked.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
68
docs/Stikked/_models---Pastes.php.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>Docs for page Pastes.php</title>
|
||||||
|
<link rel="stylesheet" href="../media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page-body">
|
||||||
|
<h2 class="file-name"><img src="../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/models/Pastes.php</h2>
|
||||||
|
|
||||||
|
<a name="sec-description"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Description</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<span class="disabled">Description</span> |
|
||||||
|
<a href="#sec-classes">Classes</a>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<!-- ========== Info from phpDoc block ========= -->
|
||||||
|
<p class="short-description">Main model for stikked</p>
|
||||||
|
<ul class="tags">
|
||||||
|
<li><span class="field">author:</span> Ben McRedmond <<a href="mailto:hello@benmcredmond.com">hello@benmcredmond.com</a>></li>
|
||||||
|
<li><span class="field">copyright:</span> Ben McRedmond</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="sec-classes"></a>
|
||||||
|
<div class="info-box">
|
||||||
|
<div class="info-box-title">Classes</div>
|
||||||
|
<div class="nav-bar">
|
||||||
|
<a href="#sec-description">Description</a> |
|
||||||
|
<span class="disabled">Classes</span>
|
||||||
|
</div>
|
||||||
|
<div class="info-box-body">
|
||||||
|
<table cellpadding="2" cellspacing="0" class="class-table">
|
||||||
|
<tr>
|
||||||
|
<th class="class-table-header">Class</th>
|
||||||
|
<th class="class-table-header">Description</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-right: 2em; vertical-align: top; white-space: nowrap">
|
||||||
|
<img src="../media/images/Class.png"
|
||||||
|
alt=" class"
|
||||||
|
title=" class"/>
|
||||||
|
<a href="../Stikked/Models/Pastes.html">Pastes</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Main model class for pastes table/stikked.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</div></body>
|
||||||
|
</html>
|
13
docs/blank.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Generated Documentation</title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div align="center"><h1>Generated Documentation</h1></div>
|
||||||
|
<b>Welcome to Stikked!</b><br />
|
||||||
|
<br />
|
||||||
|
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.2</a><br />
|
||||||
|
</body>
|
||||||
|
</html>
|
24
docs/classtrees_CodeIgniter.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Start of Class Data -->
|
||||||
|
<H2>
|
||||||
|
|
||||||
|
</H2>
|
||||||
|
<h2>Root class DB_Session</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="CodeIgniter/Libraries/DB_Session.html">DB_Session</a></li></ul>
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
docs/classtrees_Stikked.html
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<!-- Start of Class Data -->
|
||||||
|
<H2>
|
||||||
|
|
||||||
|
</H2>
|
||||||
|
<h2>Root class Process</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="Stikked/Libraries/Process.html">Process</a></li></ul>
|
||||||
|
|
||||||
|
<h2>Root class Controller</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="Stikked/Controllers/Iphone.html">Iphone</a></li><li><a href="Stikked/Controllers/Main.html">Main</a></li></ul>
|
||||||
|
|
||||||
|
<h2>Root class Model</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="Stikked/Models/Languages.html">Languages</a></li><li><a href="Stikked/Models/Pastes.html">Pastes</a></li></ul>
|
||||||
|
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
1
docs/command
Normal file
@ -0,0 +1 @@
|
|||||||
|
phpdoc -d system/application -s -o HTML:frames:earthli -t ./docs -i geshi/,config/,views/,errors/
|
691
docs/elementindex.html
Normal file
@ -0,0 +1,691 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a name="top"></a>
|
||||||
|
<h2>Full index</h2>
|
||||||
|
<h3>Package indexes</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="elementindex_Stikked.html">Stikked</a></li>
|
||||||
|
<li><a href="elementindex_CodeIgniter.html">CodeIgniter</a></li>
|
||||||
|
</ul>
|
||||||
|
<br />
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex.html#a">a</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#e">e</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#f">f</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#i">i</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#k">k</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#l">l</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#m">m</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#n">n</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#o">o</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#p">p</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#r">r</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#u">u</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#v">v</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#_">_</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="a"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">a</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">about</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodabout">Main::about()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load about view.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="c"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">c</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$cookie_sent</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$cookie_sent">DB_Session::$cookie_sent</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">checkPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcheckPaste">Pastes::checkPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Checks if a paste exists</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">code_to_description</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodcode_to_description">Languages::code_to_description()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Takes a language code eg. php, cpp, html4 and converts it to its description eg. PHP, C++, Html 4 (Strict).</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">countPastes</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcountPastes">Pastes::countPastes()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Counts pastes in the database to be used when generating pagination</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">createPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcreatePaste">Pastes::createPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Creates a paste in the database. This doesn't take any arguments as it's easier to use the input class.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">cron</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcron">Pastes::cron()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Finds paste that need to be deleted and deletes them.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">cron</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodcron">Main::cron()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to run the cron. Requires a valid cron key supplied as an argument in the url.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="d"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">d</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">DB_Session</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodDB_Session">DB_Session::DB_Session()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Session Constructor</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
DB_Session
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html">DB_Session</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Session Class</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">download</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methoddownload">Main::download()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to download pastes.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">DB_Session.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/_libraries---DB_Session.php.html">DB_Session.php</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="e"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">e</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$encryption</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$encryption">DB_Session::$encryption</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="f"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">f</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$flash_key</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$flash_key">DB_Session::$flash_key</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodflashdata">DB_Session::flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Returns "flash" data for the given key.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="g"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">g</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$gc_probability</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$gc_probability">DB_Session::$gc_probability</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">getLists</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodgetLists">Pastes::getLists()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Gets a list of x most recent pastes according to the amount set in the stikked config file.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">getPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodgetPaste">Pastes::getPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Gets a specific paste from the database and all its related meta-data</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">get_languages</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodget_languages">Languages::get_languages()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Gets list of languages from database to generate select field on paste form.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="i"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">i</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">iphone.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_controllers---iphone.php.html">iphone.php</a> in iphone.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">index</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodindex">Main::index()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load front page.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">index</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#methodindex">Iphone::index()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Displays recent pastes in an iPhone optimized version.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Iphone
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html">Iphone</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">iPhone controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="k"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">k</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">keep_flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodkeep_flashdata">DB_Session::keep_flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Keeps existing "flash" data available to next request.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="l"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">l</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Languages
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html">Languages</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Main controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">lists</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodlists">Main::lists()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to show recent pastes.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Languages.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_models---Languages.php.html">Languages.php</a> in Languages.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="m"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">m</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">main.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_controllers---main.php.html">main.php</a> in main.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Main
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html">Main</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Main controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="n"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">n</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$now</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$now">DB_Session::$now</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="o"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">o</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$object</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$object">DB_Session::$object</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="p"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">p</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Process.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_libraries---Process.php.html">Process.php</a> in Process.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Pastes.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_models---Pastes.php.html">Pastes.php</a> in Pastes.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Pastes
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html">Pastes</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Main model class for pastes table/stikked.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Process
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Libraries/Process.html">Process</a> in Process.php</div>
|
||||||
|
<div class="index-item-description">Source code processing class / Geshi Wrapper</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="r"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">r</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">raw</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodraw">Main::raw()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load raw pastes.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="s"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">s</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$session_table</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$session_table">DB_Session::$session_table</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$sess_cookie</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$sess_cookie">DB_Session::$sess_cookie</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$sess_length</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$sess_length">DB_Session::$sess_length</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_create</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_create">DB_Session::sess_create()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Create a new session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_destroy</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_destroy">DB_Session::sess_destroy()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Destroy the current session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_gc</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_gc">DB_Session::sess_gc()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Garbage collection</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_read</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_read">DB_Session::sess_read()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Fetch the current session data if it exists</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_run</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_run">DB_Session::sess_run()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Run the session routines</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_send_cookie</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_send_cookie">DB_Session::sess_send_cookie()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Write the session cookie</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_update</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_update">DB_Session::sess_update()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Update an existing session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">set_flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodset_flashdata">DB_Session::set_flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Sets "flash" data which will be available only in next request (then it will be deleted from session). You can use it to implement "Save succeeded" messages after redirect.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">set_userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodset_userdata">DB_Session::set_userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Add or change data in the "userdata" array</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">syntax</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Libraries/Process.html#methodsyntax">Process::syntax()</a> in Process.php</div>
|
||||||
|
<div class="index-item-description">Runs source code through Geshi syntax highlighting engine.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="u"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">u</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$userdata">DB_Session::$userdata</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$use_database</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$use_database">DB_Session::$use_database</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">unset_userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodunset_userdata">DB_Session::unset_userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Delete a session variable from the "userdata" array</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methoduserdata">DB_Session::userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Fetch a specific item form the session array</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="v"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">v</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">valid_language</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodvalid_language">Languages::valid_language()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Checks if a language is valid, called from the main controller _valid_lang validation callback method</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#methodview">Iphone::view()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Displays an individual paste in an iPhone optimized version.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodview">Main::view()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to show a paste.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view_options</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodview_options">Main::view_options()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Displays the page where a user can change their paste viewing settings which are saved to session data.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="_"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">_</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">_flashdata_mark</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#method_flashdata_mark">DB_Session::_flashdata_mark()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">PRIVATE: Internal method - marks "flash" session attributes as 'old'</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">_flashdata_sweep</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#method_flashdata_sweep">DB_Session::_flashdata_sweep()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">PRIVATE: Internal method - removes "flash" session marked as 'old'</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#method__construct">Pastes::__construct()</a> in Pastes.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#method__construct">Main::__construct()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor, loads languages model which is inherited in the pastes model.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#method__construct">Iphone::__construct()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#method__construct">Languages::__construct()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex.html#a">a</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#e">e</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#f">f</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#i">i</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#k">k</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#l">l</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#m">m</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#n">n</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#o">o</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#p">p</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#r">r</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#u">u</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#v">v</a>
|
||||||
|
<a class="index-letter" href="elementindex.html#_">_</a>
|
||||||
|
</div> </body>
|
||||||
|
</html>
|
355
docs/elementindex_CodeIgniter.html
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a name="top"></a>
|
||||||
|
<h2>[CodeIgniter] element index</h2>
|
||||||
|
<h3>Package indexes</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="elementindex_Stikked.html">Stikked</a></li>
|
||||||
|
</ul>
|
||||||
|
<a href="elementindex.html">All elements</a>
|
||||||
|
<br />
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#e">e</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#f">f</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#k">k</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#n">n</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#o">o</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#u">u</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#_">_</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="_"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">_</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">_flashdata_mark</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#method_flashdata_mark">DB_Session::_flashdata_mark()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">PRIVATE: Internal method - marks "flash" session attributes as 'old'</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">_flashdata_sweep</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#method_flashdata_sweep">DB_Session::_flashdata_sweep()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">PRIVATE: Internal method - removes "flash" session marked as 'old'</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="c"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">c</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$cookie_sent</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$cookie_sent">DB_Session::$cookie_sent</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="d"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">d</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">DB_Session</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodDB_Session">DB_Session::DB_Session()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Session Constructor</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
DB_Session
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html">DB_Session</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Session Class</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">DB_Session.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/_libraries---DB_Session.php.html">DB_Session.php</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="e"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">e</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$encryption</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$encryption">DB_Session::$encryption</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="f"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">f</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$flash_key</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$flash_key">DB_Session::$flash_key</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodflashdata">DB_Session::flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Returns "flash" data for the given key.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="g"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">g</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$gc_probability</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$gc_probability">DB_Session::$gc_probability</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="k"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">k</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">keep_flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodkeep_flashdata">DB_Session::keep_flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Keeps existing "flash" data available to next request.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="n"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">n</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$now</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$now">DB_Session::$now</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="o"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">o</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$object</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$object">DB_Session::$object</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="s"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">s</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$session_table</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$session_table">DB_Session::$session_table</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$sess_cookie</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$sess_cookie">DB_Session::$sess_cookie</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$sess_length</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$sess_length">DB_Session::$sess_length</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_create</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_create">DB_Session::sess_create()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Create a new session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_destroy</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_destroy">DB_Session::sess_destroy()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Destroy the current session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_gc</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_gc">DB_Session::sess_gc()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Garbage collection</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_read</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_read">DB_Session::sess_read()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Fetch the current session data if it exists</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_run</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_run">DB_Session::sess_run()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Run the session routines</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_send_cookie</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_send_cookie">DB_Session::sess_send_cookie()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Write the session cookie</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">sess_update</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodsess_update">DB_Session::sess_update()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Update an existing session</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">set_flashdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodset_flashdata">DB_Session::set_flashdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Sets "flash" data which will be available only in next request (then it will be deleted from session). You can use it to implement "Save succeeded" messages after redirect.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">set_userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodset_userdata">DB_Session::set_userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Add or change data in the "userdata" array</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="u"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">u</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$userdata">DB_Session::$userdata</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Variable.png" alt="Variable" title="Variable" /></title>
|
||||||
|
<span class="var-title">$use_database</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#var$use_database">DB_Session::$use_database</a> in DB_Session.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">unset_userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methodunset_userdata">DB_Session::unset_userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Delete a session variable from the "userdata" array</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">userdata</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="CodeIgniter/Libraries/DB_Session.html#methoduserdata">DB_Session::userdata()</a> in DB_Session.php</div>
|
||||||
|
<div class="index-item-description">Fetch a specific item form the session array</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#e">e</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#f">f</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#k">k</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#n">n</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#o">o</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#u">u</a>
|
||||||
|
<a class="index-letter" href="elementindex_CodeIgniter.html#_">_</a>
|
||||||
|
</div> </body>
|
||||||
|
</html>
|
411
docs/elementindex_Stikked.html
Normal file
@ -0,0 +1,411 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a name="top"></a>
|
||||||
|
<h2>[Stikked] element index</h2>
|
||||||
|
<h3>Package indexes</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="elementindex_CodeIgniter.html">CodeIgniter</a></li>
|
||||||
|
</ul>
|
||||||
|
<a href="elementindex.html">All elements</a>
|
||||||
|
<br />
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#a">a</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#i">i</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#l">l</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#m">m</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#p">p</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#r">r</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#v">v</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#_">_</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a name="_"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">_</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#method__construct">Main::__construct()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor, loads languages model which is inherited in the pastes model.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#method__construct">Iphone::__construct()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#method__construct">Pastes::__construct()</a> in Pastes.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Constructor.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">__construct</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#method__construct">Languages::__construct()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Class Constructor</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="a"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">a</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">about</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodabout">Main::about()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load about view.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="c"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">c</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">cron</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodcron">Main::cron()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to run the cron. Requires a valid cron key supplied as an argument in the url.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">checkPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcheckPaste">Pastes::checkPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Checks if a paste exists</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">code_to_description</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodcode_to_description">Languages::code_to_description()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Takes a language code eg. php, cpp, html4 and converts it to its description eg. PHP, C++, Html 4 (Strict).</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">countPastes</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcountPastes">Pastes::countPastes()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Counts pastes in the database to be used when generating pagination</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">createPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcreatePaste">Pastes::createPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Creates a paste in the database. This doesn't take any arguments as it's easier to use the input class.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">cron</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodcron">Pastes::cron()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Finds paste that need to be deleted and deletes them.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="d"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">d</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">download</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methoddownload">Main::download()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to download pastes.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="g"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">g</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">getLists</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodgetLists">Pastes::getLists()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Gets a list of x most recent pastes according to the amount set in the stikked config file.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">getPaste</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html#methodgetPaste">Pastes::getPaste()</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Gets a specific paste from the database and all its related meta-data</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">get_languages</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodget_languages">Languages::get_languages()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Gets list of languages from database to generate select field on paste form.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="i"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">i</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">iphone.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_controllers---iphone.php.html">iphone.php</a> in iphone.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">index</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodindex">Main::index()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load front page.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">index</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#methodindex">Iphone::index()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Displays recent pastes in an iPhone optimized version.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Iphone
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html">Iphone</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">iPhone controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="l"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">l</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Languages.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_models---Languages.php.html">Languages.php</a> in Languages.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">lists</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodlists">Main::lists()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to show recent pastes.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Languages
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html">Languages</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Main controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="m"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">m</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">main.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_controllers---main.php.html">main.php</a> in main.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Main
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html">Main</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Main controller class for stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="p"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">p</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Process.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_libraries---Process.php.html">Process.php</a> in Process.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Page.png" alt="Page" title="Page" /></title>
|
||||||
|
<span class="include-title">Pastes.php</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/_models---Pastes.php.html">Pastes.php</a> in Pastes.php</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Process
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Libraries/Process.html">Process</a> in Process.php</div>
|
||||||
|
<div class="index-item-description">Source code processing class / Geshi Wrapper</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Class.png" alt="Class" title="Class" /></title>
|
||||||
|
Pastes
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Pastes.html">Pastes</a> in Pastes.php</div>
|
||||||
|
<div class="index-item-description">Main model class for pastes table/stikked.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="r"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">r</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">raw</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodraw">Main::raw()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to load raw pastes.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="s"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">s</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">syntax</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Libraries/Process.html#methodsyntax">Process::syntax()</a> in Process.php</div>
|
||||||
|
<div class="index-item-description">Runs source code through Geshi syntax highlighting engine.</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<a name="v"></a>
|
||||||
|
<div class="index-letter-section">
|
||||||
|
<div style="float: left" class="index-letter-title">v</div>
|
||||||
|
<div style="float: right"><a href="#top">top</a></div>
|
||||||
|
<div style="clear: both"></div>
|
||||||
|
</div>
|
||||||
|
<dl>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Iphone.html#methodview">Iphone::view()</a> in iphone.php</div>
|
||||||
|
<div class="index-item-description">Displays an individual paste in an iPhone optimized version.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodview">Main::view()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Controller method to show a paste.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">view_options</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Controllers/Main.html#methodview_options">Main::view_options()</a> in main.php</div>
|
||||||
|
<div class="index-item-description">Displays the page where a user can change their paste viewing settings which are saved to session data.</div>
|
||||||
|
</dd>
|
||||||
|
<dt class="field">
|
||||||
|
<img src="media/images/Method.png" alt="Method" title="Method" /></title>
|
||||||
|
<span class="method-title">valid_language</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="index-item-body">
|
||||||
|
<div class="index-item-details"><a href="Stikked/Models/Languages.html#methodvalid_language">Languages::valid_language()</a> in Languages.php</div>
|
||||||
|
<div class="index-item-description">Checks if a language is valid, called from the main controller _valid_lang validation callback method</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
<div class="index-letter-menu">
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#a">a</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#c">c</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#d">d</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#g">g</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#i">i</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#l">l</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#m">m</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#p">p</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#r">r</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#s">s</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#v">v</a>
|
||||||
|
<a class="index-letter" href="elementindex_Stikked.html#_">_</a>
|
||||||
|
</div> </body>
|
||||||
|
</html>
|
38
docs/errors.html
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title>phpDocumentor Parser Errors and Warnings</title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a href="#Post-parsing">Post-parsing</a><br>
|
||||||
|
<a href="#Process.php">Process.php</a><br>
|
||||||
|
<a name="Post-parsing"></a>
|
||||||
|
<h1>Post-parsing</h1>
|
||||||
|
<h2>Warnings:</h2><br>
|
||||||
|
<b>Warning</b> - Class Languages parent Model not found<br>
|
||||||
|
<b>Warning</b> - Class Iphone parent Controller not found<br>
|
||||||
|
<b>Warning</b> - Class Main parent Controller not found<br>
|
||||||
|
<b>Warning</b> - Class Pastes parent Model not found<br>
|
||||||
|
<a name="DB_Session.php"></a>
|
||||||
|
<h1>DB_Session.php</h1>
|
||||||
|
<h2>Warnings:</h2><br>
|
||||||
|
<b>Warning on line 15</b> - DocBlock would be page-level, but precedes class "DB_Session", use another DocBlock to document the file<br>
|
||||||
|
<b>Warning on line 15</b> - Unknown tag "@inspireFrom" used<br>
|
||||||
|
<b>Warning on line 15</b> - package default is already in category default, will now replace with category Sessions<br>
|
||||||
|
<b>Warning on line 15</b> - Unknown tag "@inpiredFrom" used<br>
|
||||||
|
<h2>Errors:</h2><br>
|
||||||
|
<b>Error on line 406</b> - @access was passed neither "public" nor "private." Was passed: "array"<br>
|
||||||
|
<a name="Process.php"></a>
|
||||||
|
<h1>Process.php</h1>
|
||||||
|
<h2>Warnings:</h2><br>
|
||||||
|
<b>Warning on line 11</b> - package default is already in category Sessions, will now replace with category default<br>
|
||||||
|
<b>Warning on line 11</b> - Page-level DocBlock precedes "include_once 'geshi/geshi.php'", use another DocBlock to document the source element<br>
|
||||||
|
<p class="notes" id="credit">
|
||||||
|
Documentation generated on Mon, 15 Sep 2008 12:57:44 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
24
docs/index.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html
|
||||||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- Generated by phpDocumentor on Mon, 15 Sep 2008 12:57:44 +0100 -->
|
||||||
|
<title>Generated Documentation</title>
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<FRAMESET rows='120,*'>
|
||||||
|
<FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999">
|
||||||
|
<FRAMESET cols='25%,*'>
|
||||||
|
<FRAME src='li_Stikked.html' name='left_bottom' frameborder="1" bordercolor="#999999">
|
||||||
|
<FRAME src='blank.html' name='right' frameborder="1" bordercolor="#999999">
|
||||||
|
</FRAMESET>
|
||||||
|
<NOFRAMES>
|
||||||
|
<H2>Frame Alert</H2>
|
||||||
|
<P>This document is designed to be viewed using the frames feature.
|
||||||
|
If you see this message, you are using a non-frame-capable web client.</P>
|
||||||
|
</NOFRAMES>
|
||||||
|
</FRAMESET>
|
||||||
|
</HTML>
|
43
docs/li_CodeIgniter.html
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="package-title">CodeIgniter</div>
|
||||||
|
<div class="package-details">
|
||||||
|
|
||||||
|
<dl class="tree">
|
||||||
|
|
||||||
|
<dt class="folder-title">Description</dt>
|
||||||
|
<dd>
|
||||||
|
<a href='classtrees_CodeIgniter.html' target='right'>Class trees</a><br />
|
||||||
|
<a href='elementindex_CodeIgniter.html' target='right'>Index of elements</a><br />
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt class="sub-package"><img class="tree-icon" src="media/images/package.png" alt="Sub-package">Libraries</dt>
|
||||||
|
<dd>
|
||||||
|
<dl class="tree">
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/class_folder.png" alt=" ">Classes</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='CodeIgniter/Libraries/DB_Session.html' target='right'>DB_Session</a></dd>
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/folder.png" alt=" ">Files</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='CodeIgniter/Libraries/_libraries---DB_Session.php.html' target='right'>DB_Session.php</a></dd>
|
||||||
|
</dl>
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
<p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.4.2</span></a></p>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
72
docs/li_Stikked.html
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="package-title">Stikked</div>
|
||||||
|
<div class="package-details">
|
||||||
|
|
||||||
|
<dl class="tree">
|
||||||
|
|
||||||
|
<dt class="folder-title">Description</dt>
|
||||||
|
<dd>
|
||||||
|
<a href='classtrees_Stikked.html' target='right'>Class trees</a><br />
|
||||||
|
<a href='elementindex_Stikked.html' target='right'>Index of elements</a><br />
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/class_folder.png" alt=" ">Classes</dt>
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/folder.png" alt=" ">Files</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='Stikked/_controllers---iphone.php.html' target='right'>iphone.php</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='Stikked/_models---Languages.php.html' target='right'>Languages.php</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='Stikked/_controllers---main.php.html' target='right'>main.php</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='Stikked/_models---Pastes.php.html' target='right'>Pastes.php</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Page.png" alt="File"><a href='Stikked/_libraries---Process.php.html' target='right'>Process.php</a></dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt class="sub-package"><img class="tree-icon" src="media/images/package.png" alt="Sub-package">Controllers</dt>
|
||||||
|
<dd>
|
||||||
|
<dl class="tree">
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/class_folder.png" alt=" ">Classes</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='Stikked/Controllers/Iphone.html' target='right'>Iphone</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='Stikked/Controllers/Main.html' target='right'>Main</a></dd>
|
||||||
|
</dl>
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt class="sub-package"><img class="tree-icon" src="media/images/package.png" alt="Sub-package">Models</dt>
|
||||||
|
<dd>
|
||||||
|
<dl class="tree">
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/class_folder.png" alt=" ">Classes</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='Stikked/Models/Languages.html' target='right'>Languages</a></dd>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='Stikked/Models/Pastes.html' target='right'>Pastes</a></dd>
|
||||||
|
</dl>
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<dt class="sub-package"><img class="tree-icon" src="media/images/package.png" alt="Sub-package">Libraries</dt>
|
||||||
|
<dd>
|
||||||
|
<dl class="tree">
|
||||||
|
<dt class="folder-title"><img class="tree-icon" src="media/images/class_folder.png" alt=" ">Classes</dt>
|
||||||
|
<dd><img class="tree-icon" src="media/images/Class.png" alt="Class"><a href='Stikked/Libraries/Process.html' target='right'>Process</a></dd>
|
||||||
|
</dl>
|
||||||
|
</dd>
|
||||||
|
|
||||||
|
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
<p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.4.2</span></a></p>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
33
docs/media/banner.css
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
body
|
||||||
|
{
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Banner (top bar) classes */
|
||||||
|
|
||||||
|
.banner { }
|
||||||
|
|
||||||
|
.banner-menu
|
||||||
|
{
|
||||||
|
text-align: right;
|
||||||
|
clear: both;
|
||||||
|
padding: .5em;
|
||||||
|
border-top: 2px solid #AAAAAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-title
|
||||||
|
{
|
||||||
|
text-align: right;
|
||||||
|
font-size: 20pt;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: .2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.package-selector
|
||||||
|
{
|
||||||
|
background-color: #DDDDDD;
|
||||||
|
border: 1px solid #AAAAAA;
|
||||||
|
color: #000090;
|
||||||
|
}
|
BIN
docs/media/images/AbstractClass.png
Normal file
After Width: | Height: | Size: 620 B |
BIN
docs/media/images/AbstractClass_logo.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/media/images/AbstractMethod.png
Normal file
After Width: | Height: | Size: 696 B |
BIN
docs/media/images/AbstractPrivateClass.png
Normal file
After Width: | Height: | Size: 848 B |
BIN
docs/media/images/AbstractPrivateClass_logo.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/media/images/AbstractPrivateMethod.png
Normal file
After Width: | Height: | Size: 874 B |
BIN
docs/media/images/Class.png
Normal file
After Width: | Height: | Size: 570 B |
BIN
docs/media/images/Class_logo.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/media/images/Constant.png
Normal file
After Width: | Height: | Size: 752 B |
BIN
docs/media/images/Constructor.png
Normal file
After Width: | Height: | Size: 865 B |
BIN
docs/media/images/Destructor.png
Normal file
After Width: | Height: | Size: 956 B |
BIN
docs/media/images/Function.png
Normal file
After Width: | Height: | Size: 596 B |
BIN
docs/media/images/Global.png
Normal file
After Width: | Height: | Size: 712 B |
BIN
docs/media/images/I.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
docs/media/images/Index.png
Normal file
After Width: | Height: | Size: 584 B |
BIN
docs/media/images/Interface.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/media/images/Interface_logo.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/media/images/L.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
docs/media/images/Lminus.png
Normal file
After Width: | Height: | Size: 219 B |
BIN
docs/media/images/Lplus.png
Normal file
After Width: | Height: | Size: 224 B |
BIN
docs/media/images/Method.png
Normal file
After Width: | Height: | Size: 661 B |
BIN
docs/media/images/Page.png
Normal file
After Width: | Height: | Size: 592 B |
BIN
docs/media/images/Page_logo.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
docs/media/images/PrivateClass.png
Normal file
After Width: | Height: | Size: 790 B |
BIN
docs/media/images/PrivateClass_logo.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
docs/media/images/PrivateMethod.png
Normal file
After Width: | Height: | Size: 918 B |
BIN
docs/media/images/PrivateVariable.png
Normal file
After Width: | Height: | Size: 772 B |
BIN
docs/media/images/StaticMethod.png
Normal file
After Width: | Height: | Size: 661 B |
BIN
docs/media/images/StaticVariable.png
Normal file
After Width: | Height: | Size: 688 B |
BIN
docs/media/images/T.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
docs/media/images/Tminus.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
docs/media/images/Tplus.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
docs/media/images/Variable.png
Normal file
After Width: | Height: | Size: 688 B |
BIN
docs/media/images/blank.png
Normal file
After Width: | Height: | Size: 144 B |
BIN
docs/media/images/class_folder.png
Normal file
After Width: | Height: | Size: 633 B |
BIN
docs/media/images/empty.png
Normal file
After Width: | Height: | Size: 90 B |
BIN
docs/media/images/file.png
Normal file
After Width: | Height: | Size: 462 B |
BIN
docs/media/images/folder.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
docs/media/images/function_folder.png
Normal file
After Width: | Height: | Size: 605 B |
BIN
docs/media/images/next_button.png
Normal file
After Width: | Height: | Size: 657 B |
BIN
docs/media/images/next_button_disabled.png
Normal file
After Width: | Height: | Size: 543 B |
BIN
docs/media/images/package.png
Normal file
After Width: | Height: | Size: 668 B |
BIN
docs/media/images/package_folder.png
Normal file
After Width: | Height: | Size: 564 B |
BIN
docs/media/images/previous_button.png
Normal file
After Width: | Height: | Size: 644 B |
BIN
docs/media/images/previous_button_disabled.png
Normal file
After Width: | Height: | Size: 541 B |
BIN
docs/media/images/private_class_logo.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
docs/media/images/tutorial.png
Normal file
After Width: | Height: | Size: 431 B |
BIN
docs/media/images/tutorial_folder.png
Normal file
After Width: | Height: | Size: 572 B |
BIN
docs/media/images/up_button.png
Normal file
After Width: | Height: | Size: 668 B |
146
docs/media/stylesheet.css
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
a { color: #000090; text-decoration: none; }
|
||||||
|
a:hover, a:active, a:focus { color: highlighttext; background-color: highlight; text-decoration: none; }
|
||||||
|
|
||||||
|
body { background: #FFFFFF; }
|
||||||
|
body, table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; }
|
||||||
|
|
||||||
|
a img { border: 0px; }
|
||||||
|
|
||||||
|
/* Page layout/boxes */
|
||||||
|
|
||||||
|
.info-box { }
|
||||||
|
.info-box-title { margin: 1em 0em 0em 0em; font-weight: normal; font-size: 14pt; color: #999999; border-bottom: 2px solid #999999; }
|
||||||
|
.info-box-body { border: 1px solid #999999; padding: .5em; }
|
||||||
|
.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; }
|
||||||
|
|
||||||
|
.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}
|
||||||
|
.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}
|
||||||
|
|
||||||
|
.page-body { max-width: 800px; margin: auto; }
|
||||||
|
.tree { white-space: nowrap; font: icon }
|
||||||
|
.tree dd { margin-left: 19px }
|
||||||
|
.tree dl { margin: 0px }
|
||||||
|
.tree-icon { vertical-align: middle; border: 0px; margin-right: 3px }
|
||||||
|
|
||||||
|
/* Index formatting classes */
|
||||||
|
|
||||||
|
.index-item-body { margin-top: .5em; margin-bottom: .5em}
|
||||||
|
.index-item-description { margin-top: .25em }
|
||||||
|
.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt }
|
||||||
|
.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em}
|
||||||
|
.index-letter-title { font-size: 12pt; font-weight: bold }
|
||||||
|
.index-letter-menu { text-align: center; margin: 1em }
|
||||||
|
.index-letter { font-size: 12pt }
|
||||||
|
|
||||||
|
/* Docbook classes */
|
||||||
|
|
||||||
|
.description {}
|
||||||
|
.short-description { font-weight: bold; color: #666666; }
|
||||||
|
.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; }
|
||||||
|
.parameters { padding-left: 0em; margin-left: 3em; color: #014fbe; list-style-type: square; }
|
||||||
|
.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; }
|
||||||
|
.package { font-weight: bold; }
|
||||||
|
.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black }
|
||||||
|
.package-details { font-size: 85%; }
|
||||||
|
.sub-package { font-weight: bold; }
|
||||||
|
.tutorial { border-width: thin; border-color: #0066ff; }
|
||||||
|
.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; }
|
||||||
|
.folder-title { font-style: italic; font-family: Verdana, Arial, Helvetica, sans-serif }
|
||||||
|
|
||||||
|
/* Generic formatting */
|
||||||
|
|
||||||
|
.field { font-weight: bold; }
|
||||||
|
.detail { font-size: 8pt; }
|
||||||
|
.notes { font-style: italic; font-size: 8pt; }
|
||||||
|
.separator { background-color: #999999; height: 2px; }
|
||||||
|
.warning { color: #FF6600; }
|
||||||
|
.disabled { font-style: italic; color: #999999; }
|
||||||
|
|
||||||
|
/* Code elements */
|
||||||
|
|
||||||
|
.line-number { }
|
||||||
|
|
||||||
|
.class-table { width: 100%; }
|
||||||
|
.class-table-header { border-bottom: 1px dotted #666666; text-align: left}
|
||||||
|
.class-name { color: #0000AA; font-weight: bold; }
|
||||||
|
|
||||||
|
.method-summary { color: #009000; padding-left: 1em; font-size: 8pt; }
|
||||||
|
.method-header { }
|
||||||
|
.method-definition { margin-bottom: .2em }
|
||||||
|
.method-title { color: #009000; font-weight: bold; }
|
||||||
|
.method-name { font-weight: bold; }
|
||||||
|
.method-signature { font-size: 85%; color: #666666; margin: .5em 0em }
|
||||||
|
.method-result { font-style: italic; }
|
||||||
|
|
||||||
|
.var-summary { padding-left: 1em; font-size: 8pt; }
|
||||||
|
.var-header { }
|
||||||
|
.var-title { color: #014fbe; margin-bottom: .3em }
|
||||||
|
.var-type { font-style: italic; }
|
||||||
|
.var-name { font-weight: bold; }
|
||||||
|
.var-default {}
|
||||||
|
.var-description { font-weight: normal; color: #000000; }
|
||||||
|
|
||||||
|
.include-title { color: #014fbe;}
|
||||||
|
.include-type { font-style: italic; }
|
||||||
|
.include-name { font-weight: bold; }
|
||||||
|
|
||||||
|
.const-title { color: #FF6600; }
|
||||||
|
.const-name { font-weight: bold; }
|
||||||
|
|
||||||
|
/* Syntax highlighting */
|
||||||
|
|
||||||
|
.src-code { font-family: 'Courier New', Courier, monospace; font-weight: normal; }
|
||||||
|
.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; }
|
||||||
|
|
||||||
|
.src-code a:link { padding: 1px; text-decoration: underline; color: #0000DD; }
|
||||||
|
.src-code a:visited { text-decoration: underline; color: #0000DD; }
|
||||||
|
.src-code a:active { background-color: #FFFF66; color: #008000; }
|
||||||
|
.src-code a:hover { background-color: #FFFF66; text-decoration: overline underline; color: #008000; }
|
||||||
|
|
||||||
|
.src-comm { color: #666666; }
|
||||||
|
.src-id { color: #FF6600; font-style: italic; }
|
||||||
|
.src-inc { color: #0000AA; font-weight: bold; }
|
||||||
|
.src-key { color: #0000AA; font-weight: bold; }
|
||||||
|
.src-num { color: #CC0000; }
|
||||||
|
.src-str { color: #CC0000; }
|
||||||
|
.src-sym { }
|
||||||
|
.src-var { }
|
||||||
|
|
||||||
|
.src-php { font-weight: bold; }
|
||||||
|
|
||||||
|
.src-doc { color: #666666; }
|
||||||
|
.src-doc-close-template { color: #666666 }
|
||||||
|
.src-doc-coretag { color: #008000; }
|
||||||
|
.src-doc-inlinetag {}
|
||||||
|
.src-doc-internal {}
|
||||||
|
.src-doc-tag { color: #0080CC; }
|
||||||
|
.src-doc-template { color: #666666 }
|
||||||
|
.src-doc-type { font-style: italic; color: #444444 }
|
||||||
|
.src-doc-var { color: #444444 }
|
||||||
|
|
||||||
|
.tute-tag { color: #009999 }
|
||||||
|
.tute-attribute-name { color: #0000FF }
|
||||||
|
.tute-attribute-value { color: #0099FF }
|
||||||
|
.tute-entity { font-weight: bold; }
|
||||||
|
.tute-comment { font-style: italic }
|
||||||
|
.tute-inline-tag { color: #636311; font-weight: bold }
|
||||||
|
|
||||||
|
/* tutorial */
|
||||||
|
|
||||||
|
.authors { }
|
||||||
|
.author { font-style: italic; font-weight: bold }
|
||||||
|
.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal }
|
||||||
|
.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; }
|
||||||
|
*[class="example"] { line-height : 1.0em; }
|
||||||
|
.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; }
|
||||||
|
*[class="listing"] { line-height : 1.0em; }
|
||||||
|
.release-info { font-size: 85%; font-style: italic; margin: 1em 0em }
|
||||||
|
.ref-title-box { }
|
||||||
|
.ref-title { }
|
||||||
|
.ref-purpose { font-style: italic; color: #666666 }
|
||||||
|
.ref-synopsis { }
|
||||||
|
.title { font-weight: bold; border-bottom: 1px solid #999999; color: #999999; }
|
||||||
|
.cmd-synopsis { margin: 1em 0em }
|
||||||
|
.cmd-title { font-weight: bold }
|
||||||
|
.toc { margin-left: 2em; padding-left: 0em }
|
||||||
|
|
34
docs/packages.html
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<!-- template designed by Marco Von Ballmoos -->
|
||||||
|
<title></title>
|
||||||
|
<link rel="stylesheet" href="media/stylesheet.css" />
|
||||||
|
<link rel="stylesheet" href="media/banner.css" />
|
||||||
|
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="banner">
|
||||||
|
<div class="banner-title">Stikked</div>
|
||||||
|
<div class="banner-menu">
|
||||||
|
<form>
|
||||||
|
<table cellpadding="0" cellspacing="0" style="width: 100%">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
|
<td style="width: 2em"> </td>
|
||||||
|
<td style="text-align: right">
|
||||||
|
<span class="field">Packages</span>
|
||||||
|
<select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value">
|
||||||
|
<option value="li_CodeIgniter.html">CodeIgniter</option>
|
||||||
|
<option value="li_Stikked.html">Stikked</option>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
133
index.php
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| PHP ERROR REPORTING LEVEL
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By default CI runs with error reporting set to ALL. For security
|
||||||
|
| reasons you are encouraged to change this when your site goes live.
|
||||||
|
| For more info visit: http://www.php.net/error_reporting
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
error_reporting(E_ERROR);
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| SYSTEM FOLDER NAME
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This variable must contain the name of your "system" folder.
|
||||||
|
| Include the path if the folder is not in the same directory
|
||||||
|
| as this file.
|
||||||
|
|
|
||||||
|
| NO TRAILING SLASH!
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$system_folder = "system";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| APPLICATION FOLDER NAME
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If you want this front controller to use a different "application"
|
||||||
|
| folder then the default one you can set its name here. The folder
|
||||||
|
| can also be renamed or relocated anywhere on your server.
|
||||||
|
| For more info please see the user guide:
|
||||||
|
| http://www.codeigniter.com/user_guide/general/managing_apps.html
|
||||||
|
|
|
||||||
|
|
|
||||||
|
| NO TRAILING SLASH!
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$application_folder = "application";
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|===============================================================
|
||||||
|
| END OF USER CONFIGURABLE SETTINGS
|
||||||
|
|===============================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| SET THE SERVER PATH
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Let's attempt to determine the full-server path to the "system"
|
||||||
|
| folder in order to reduce the possibility of path problems.
|
||||||
|
| Note: We only attempt this if the user hasn't specified a
|
||||||
|
| full server path.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
if (strpos($system_folder, '/') === FALSE)
|
||||||
|
{
|
||||||
|
if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
|
||||||
|
{
|
||||||
|
$system_folder = realpath(dirname(__FILE__)).'/'.$system_folder;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Swap directory separators to Unix style for consistency
|
||||||
|
$system_folder = str_replace("\\", "/", $system_folder);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| DEFINE APPLICATION CONSTANTS
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| EXT - The file extension. Typically ".php"
|
||||||
|
| FCPATH - The full server path to THIS file
|
||||||
|
| SELF - The name of THIS file (typically "index.php)
|
||||||
|
| BASEPATH - The full server path to the "system" folder
|
||||||
|
| APPPATH - The full server path to the "application" folder
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
define('EXT', '.'.pathinfo(__FILE__, PATHINFO_EXTENSION));
|
||||||
|
define('FCPATH', __FILE__);
|
||||||
|
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
|
||||||
|
define('BASEPATH', $system_folder.'/');
|
||||||
|
|
||||||
|
if (is_dir($application_folder))
|
||||||
|
{
|
||||||
|
define('APPPATH', $application_folder.'/');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ($application_folder == '')
|
||||||
|
{
|
||||||
|
$application_folder = 'application';
|
||||||
|
}
|
||||||
|
|
||||||
|
define('APPPATH', BASEPATH.$application_folder.'/');
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| DEFINE E_STRICT
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Some older versions of PHP don't support the E_STRICT constant
|
||||||
|
| so we need to explicitly define it otherwise the Exception class
|
||||||
|
| will generate errors.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
if ( ! defined('E_STRICT'))
|
||||||
|
{
|
||||||
|
define('E_STRICT', 2048);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
| LOAD THE FRONT CONTROLLER
|
||||||
|
|---------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| And away we go...
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
require_once BASEPATH.'codeigniter/CodeIgniter'.EXT;
|
||||||
|
?>
|
128
mysql.sql
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
-- phpMyAdmin SQL Dump
|
||||||
|
-- version 2.11.7-rc1
|
||||||
|
-- http://www.phpmyadmin.net
|
||||||
|
--
|
||||||
|
-- Host: localhost
|
||||||
|
-- Generation Time: Jul 05, 2008 at 10:49 PM
|
||||||
|
-- Server version: 5.0.51
|
||||||
|
-- PHP Version: 5.2.5
|
||||||
|
|
||||||
|
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
||||||
|
|
||||||
|
|
||||||
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||||
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||||
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||||
|
/*!40101 SET NAMES utf8 */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Database: `stikked`
|
||||||
|
--
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `ci_sessions`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `ci_sessions` (
|
||||||
|
`session_id` varchar(40) NOT NULL default '0',
|
||||||
|
`ip_address` varchar(16) NOT NULL default '0',
|
||||||
|
`user_agent` varchar(50) NOT NULL,
|
||||||
|
`last_activity` int(10) unsigned NOT NULL default '0',
|
||||||
|
`session_data` text NOT NULL,
|
||||||
|
PRIMARY KEY (`session_id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `languages`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `languages` (
|
||||||
|
`code` varchar(12) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`description` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Dumping data for table `languages`
|
||||||
|
--
|
||||||
|
|
||||||
|
INSERT INTO `languages` (`code`, `description`) VALUES
|
||||||
|
('c', 'C'),
|
||||||
|
('css', 'CSS'),
|
||||||
|
('cpp', 'C++'),
|
||||||
|
('html4strict', 'HTML (4 Strict)'),
|
||||||
|
('java', 'Java'),
|
||||||
|
('perl', 'Perl'),
|
||||||
|
('php', 'PHP'),
|
||||||
|
('python', 'Python'),
|
||||||
|
('ruby', 'Ruby'),
|
||||||
|
('text', 'Plain Text'),
|
||||||
|
('asm', 'ASM (Nasm Syntax)'),
|
||||||
|
('xhtml', 'XHTML'),
|
||||||
|
('actionscript', 'Actionscript'),
|
||||||
|
('ada', 'ADA'),
|
||||||
|
('apache', 'Apache Log'),
|
||||||
|
('applescript', 'AppleScript'),
|
||||||
|
('autoit', 'AutoIT'),
|
||||||
|
('bash', 'Bash'),
|
||||||
|
('bptzbasic', 'BptzBasic'),
|
||||||
|
('c_mac', 'C for Macs'),
|
||||||
|
('csharp', 'C#'),
|
||||||
|
('ColdFusion', 'coldfusion'),
|
||||||
|
('delphi', 'Delphi'),
|
||||||
|
('eiffel', 'Eiffel'),
|
||||||
|
('fortran', 'Fortran'),
|
||||||
|
('freebasic', 'FreeBasic'),
|
||||||
|
('gml', 'GML'),
|
||||||
|
('groovy', 'Groovy'),
|
||||||
|
('inno', 'Inno'),
|
||||||
|
('java5', 'Java 5'),
|
||||||
|
('javascript', 'Javascript'),
|
||||||
|
('latex', 'LaTeX'),
|
||||||
|
('mirc', 'mIRC'),
|
||||||
|
('mysql', 'MySQL'),
|
||||||
|
('nsis', 'NSIS'),
|
||||||
|
('objc', 'Objective C'),
|
||||||
|
('ocaml', 'OCaml'),
|
||||||
|
('oobas', 'OpenOffice BASIC'),
|
||||||
|
('orcale8', 'Orcale 8 SQL'),
|
||||||
|
('pascal', 'Pascal'),
|
||||||
|
('plsql', 'PL/SQL'),
|
||||||
|
('qbasic', 'Q(uick)BASIC'),
|
||||||
|
('robots', 'robots.txt'),
|
||||||
|
('scheme', 'Scheme'),
|
||||||
|
('sdlbasic', 'SDLBasic'),
|
||||||
|
('smalltalk', 'Smalltalk'),
|
||||||
|
('smarty', 'Smarty'),
|
||||||
|
('sql', 'SQL'),
|
||||||
|
('tcl', 'TCL'),
|
||||||
|
('vbnet', 'VB.NET'),
|
||||||
|
('vb', 'Visual BASIC'),
|
||||||
|
('winbatch', 'Winbatch'),
|
||||||
|
('xml', 'XML'),
|
||||||
|
('z80', 'z80 ASM');
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pastes`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `pastes` (
|
||||||
|
`id` int(10) NOT NULL auto_increment,
|
||||||
|
`pid` varchar(8) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`title` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`name` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`lang` varchar(32) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`private` tinyint(1) NOT NULL,
|
||||||
|
`paste` longtext character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`raw` longtext character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
`created` int(10) NOT NULL,
|
||||||
|
`expire` int(10) NOT NULL default '0',
|
||||||
|
`toexpire` tinyint(1) unsigned NOT NULL,
|
||||||
|
`snipurl` varchar(64) character set utf8 collate utf8_unicode_ci NOT NULL default '0',
|
||||||
|
`replyto` varchar(8) character set utf8 collate utf8_unicode_ci NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=154 ;
|
BIN
static/flash/jquery.clipboard.swf
Normal file
BIN
static/images/apple-touch-icon.psd
Normal file
BIN
static/images/bg-x.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
static/images/button.png
Executable file
After Width: | Height: | Size: 282 B |
301
static/js/jquery.clipboard.js
Normal file
@ -0,0 +1,301 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Clipboard - Copy utility for jQuery
|
||||||
|
Version 2.0
|
||||||
|
November 24, 2007
|
||||||
|
|
||||||
|
Project page:
|
||||||
|
|
||||||
|
http://bradleysepos.com/projects/jquery/clipboard/
|
||||||
|
|
||||||
|
Files:
|
||||||
|
|
||||||
|
Source: jquery.clipboard.js
|
||||||
|
Source (packed): jquery.clipboard.pack.js
|
||||||
|
Flash helper: jquery.clipboard.swf
|
||||||
|
|
||||||
|
Usage examples:
|
||||||
|
|
||||||
|
// Basic usage:
|
||||||
|
$.clipboardReady(function(){
|
||||||
|
$( "a" ).click(function(){
|
||||||
|
$.clipboard( "You clicked on a link and copied this text!" );
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// With options:
|
||||||
|
$.clipboardReady(function(){
|
||||||
|
$( "a" ).click(function(){
|
||||||
|
$.clipboard( "You clicked on a link and copied this text!" );
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}, { swfpath: "path/to/jquery.clipboard.swf", debug: true } );
|
||||||
|
|
||||||
|
Compatibility:
|
||||||
|
|
||||||
|
IE 6+, FF 2+, Safari 2+, Opera 9+
|
||||||
|
Requires jQuery 1.2+
|
||||||
|
Non-IE browsers require Flash 8 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
Released under an MIT-style license
|
||||||
|
|
||||||
|
LICENSE
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Copyright (c) 2007 Bradley Sepos
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function($){
|
||||||
|
|
||||||
|
// Some variables that need scope
|
||||||
|
var flashMinVersion = [8,0,0];
|
||||||
|
var flashDetectedVersion = [0,0,0];
|
||||||
|
var swfpath;
|
||||||
|
var debugging;
|
||||||
|
|
||||||
|
var flashdetect = function( minVersion ){
|
||||||
|
// Flash detection
|
||||||
|
// Based on swfObject 2.0: http://code.google.com/p/swfobject/
|
||||||
|
var d = null;
|
||||||
|
if (typeof navigator.plugins != "undefined" && typeof navigator.plugins["Shockwave Flash"] == "object") {
|
||||||
|
d = navigator.plugins["Shockwave Flash"].description;
|
||||||
|
if (d) {
|
||||||
|
// Got Flash, parse version
|
||||||
|
d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
|
||||||
|
flashDetectedVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
|
||||||
|
flashDetectedVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
|
||||||
|
if ( /r/.test(d) ) {
|
||||||
|
flashDetectedVersion[2] = parseInt(d.replace(/^.*r(.*)$/, "$1"), 10);
|
||||||
|
} else {
|
||||||
|
flashDetectedVersion[2] = 0;
|
||||||
|
}
|
||||||
|
if (flashDetectedVersion[0] > minVersion[0] || (flashDetectedVersion[0] == minVersion[0] && flashDetectedVersion[1] > minVersion[1]) || (flashDetectedVersion[0] == minVersion[0] && flashDetectedVersion[1] == minVersion[1] && flashDetectedVersion[2] >= minVersion[2])){
|
||||||
|
// Version ok
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
// Version too old
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// No Flash detected
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
var iecopydetect = function(){
|
||||||
|
// Check for IE method
|
||||||
|
if ( typeof window.clipboardData != "undefined" ){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
var debug = function( string ){
|
||||||
|
if ( debugging && typeof console != "undefined" && typeof console.log == "function" ){
|
||||||
|
console.log( string );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
var swfready = function(){
|
||||||
|
|
||||||
|
// The swf is already loaded, ignore
|
||||||
|
if ( $.clipboardReady.done ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Count how many times swfready() has been called
|
||||||
|
if ( typeof $.clipboardReady.counter == 'undefined' ){
|
||||||
|
// Init counter
|
||||||
|
$.clipboardReady.counter = 0;
|
||||||
|
}
|
||||||
|
// Increment counter
|
||||||
|
$.clipboardReady.counter++;
|
||||||
|
if ( $.clipboardReady.counter > 599 ){
|
||||||
|
// Terminate process after 600 executions to avoid calling indefinitely and crashing some
|
||||||
|
// browsers (observed in Firefox 2.x). At 100ms interval, this should be plenty of time for
|
||||||
|
// the swf to load on even the slowest connections.
|
||||||
|
clearInterval( $.clipboardReady.timer );
|
||||||
|
// Debug
|
||||||
|
debug("Waited "+$.clipboardReady.counter/10+" seconds for Flash object to load, terminating.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ( ($.clipboardReady.counter % 100) == 0 ){
|
||||||
|
// Debug
|
||||||
|
debug("Waited "+$.clipboardReady.counter/10+" seconds for Flash object to load so far...");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check to see if the swf's external interface is ready
|
||||||
|
var swf = $("#jquery_clipboard_swf:first");
|
||||||
|
var swfdom = $(swf).get(0);
|
||||||
|
if ( typeof swfdom.jqueryClipboardCopy == "function" && swfdom.jqueryClipboardAvailable ){
|
||||||
|
|
||||||
|
// Swf is ready, stop checking
|
||||||
|
clearInterval( $.clipboardReady.timer );
|
||||||
|
$.clipboardReady.timer = null;
|
||||||
|
|
||||||
|
// Set copy method
|
||||||
|
$.clipboard.method = 'flash';
|
||||||
|
|
||||||
|
// Execute queued functions
|
||||||
|
for ( var i = 0; i < $.clipboardReady.ready.length; i++ ){
|
||||||
|
$.clipboardReady.ready[i]();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remember that the swf is ready
|
||||||
|
$.clipboardReady.ready = null;
|
||||||
|
$.clipboardReady.done = true;
|
||||||
|
|
||||||
|
// Everything is totally ready now
|
||||||
|
debug( "jQuery.clipboard: OK. Initialized and ready to copy using Flash method." );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.clipboardReady = function( f, options ){
|
||||||
|
|
||||||
|
// Options
|
||||||
|
options = jQuery.extend({
|
||||||
|
swfpath: "jquery.clipboard.swf",
|
||||||
|
debug: false
|
||||||
|
}, options);
|
||||||
|
swfpath = options.swfpath;
|
||||||
|
debugging = options.debug;
|
||||||
|
|
||||||
|
// Run immediately if IE method available
|
||||||
|
if ( iecopydetect() ){
|
||||||
|
$.clipboard.method = 'ie';
|
||||||
|
debug( "jQuery.clipboard: OK. Initialized and ready to copy using native IE method." );
|
||||||
|
return f();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run immediately if Flash 8 is available and loaded
|
||||||
|
if ( $.clipboardReady.done ){
|
||||||
|
return f();
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we've already added a function
|
||||||
|
if ( $.clipboardReady.timer ){
|
||||||
|
|
||||||
|
// Add to the existing array
|
||||||
|
$.clipboardReady.ready.push( f );
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// Check for Flash and Flash version
|
||||||
|
if ( flashdetect( flashMinVersion ) ){
|
||||||
|
|
||||||
|
// Flash detected OK
|
||||||
|
|
||||||
|
// Destroy any existing elements
|
||||||
|
$( "#jquery_clipboard_swf" ).remove();
|
||||||
|
$( "#jquery_clipboard_div" ).remove();
|
||||||
|
|
||||||
|
// Create the wrapper div
|
||||||
|
var div;
|
||||||
|
div = $( "<div/>" )
|
||||||
|
.attr( "id", "jquery_clipboard_div" )
|
||||||
|
.css( "width", "0" )
|
||||||
|
.css( "height", "0" )
|
||||||
|
.appendTo( "body" )
|
||||||
|
.html( "" );
|
||||||
|
// Create the helper swf
|
||||||
|
// Use embed method since we're only targeting non-IE browsers anyway
|
||||||
|
var swf;
|
||||||
|
swf = $( '<embed id="jquery_clipboard_swf" name="jquery_clipboard_swf" src="'+swfpath+'" type="application/x-shockwave-flash"></embed>' );
|
||||||
|
$( swf )
|
||||||
|
.css( "width", "0" )
|
||||||
|
.css( "height", "0" )
|
||||||
|
.appendTo( div );
|
||||||
|
|
||||||
|
// Init the functions array
|
||||||
|
$.clipboardReady.ready = [ f ];
|
||||||
|
|
||||||
|
// Continually check to see if the swf is loaded
|
||||||
|
$.clipboardReady.timer = setInterval( swfready, 100 );
|
||||||
|
|
||||||
|
// Debug
|
||||||
|
debug( "jQuery.clipboard: INFO. Waiting for Flash object to become ready. Detected Flash version: "+flashDetectedVersion[0]+"."+flashDetectedVersion[1]+"."+flashDetectedVersion[2] );
|
||||||
|
|
||||||
|
} else if ( flashDetectedVersion[0] === 0 ){
|
||||||
|
|
||||||
|
// Flash not detected
|
||||||
|
debug( "jQuery.clipboard: ERROR. Flash plugin not detected." );
|
||||||
|
return false;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
// Flash version too old
|
||||||
|
debug( "jQuery.clipboard: ERROR. Minimum Flash version: "+flashMinVersion[0]+"."+flashMinVersion[1]+"."+flashMinVersion[2]+" Detected Flash version: "+flashDetectedVersion[0]+"."+flashDetectedVersion[1]+"."+flashDetectedVersion[2] );
|
||||||
|
return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.clipboard = function( text ){
|
||||||
|
|
||||||
|
// Check arguments
|
||||||
|
if ( arguments.length < 1 || typeof text != "string" ){
|
||||||
|
// First argument is not text
|
||||||
|
debug( "jQuery.clipboard: ERROR. Nothing to copy. You must specify a string as the first parameter." );
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Looks good, perform copy
|
||||||
|
|
||||||
|
// Internet Explorer's built-in method
|
||||||
|
if ( $.clipboard.method == 'ie' ){
|
||||||
|
try {
|
||||||
|
window.clipboardData.setData( "Text", text );
|
||||||
|
debug( "jQuery.clipboard: OK. Copied "+text.length+" bytes to clipboard using native IE method." );
|
||||||
|
return true;
|
||||||
|
} catch (e) {
|
||||||
|
debug( "jQuery.clipboard: ERROR. Tried to copy using native IE method but an unknown error occurred." );
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Flash method
|
||||||
|
if ( $.clipboard.method == 'flash'){
|
||||||
|
var swf = $("#jquery_clipboard_swf:first");
|
||||||
|
var swfdom = $(swf).get(0);
|
||||||
|
if ( swfdom.jqueryClipboardCopy( text ) ){
|
||||||
|
// Copy succeeded
|
||||||
|
debug( "jQuery.clipboard: OK. Copied "+text.length+" bytes to clipboard using Flash method." );
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
// Copy failed
|
||||||
|
debug( "jQuery.clipboard: ERROR. Tried to copy using Flash method but an unknown error occurred." );
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Uh-oh. Somebody called $.clipboard() without $.clipboardReady()
|
||||||
|
debug( "jQuery.clipboard: ERROR. You must use $.clipboardReady() in conjunction with $.clipboard()." );
|
||||||
|
return false;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
})(jQuery); /* jQuery.clipboard */
|
2992
static/js/jquery.js
vendored
Normal file
140
static/js/jquery.timers.js
Executable file
@ -0,0 +1,140 @@
|
|||||||
|
jQuery.fn.extend({
|
||||||
|
everyTime: function(interval, label, fn, times, belay) {
|
||||||
|
return this.each(function() {
|
||||||
|
jQuery.timer.add(this, interval, label, fn, times, belay);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
oneTime: function(interval, label, fn) {
|
||||||
|
return this.each(function() {
|
||||||
|
jQuery.timer.add(this, interval, label, fn, 1);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
stopTime: function(label, fn) {
|
||||||
|
return this.each(function() {
|
||||||
|
jQuery.timer.remove(this, label, fn);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
jQuery.extend({
|
||||||
|
timer: {
|
||||||
|
guid: 1,
|
||||||
|
global: {},
|
||||||
|
regex: /^([0-9]+)\s*(.*s)?$/,
|
||||||
|
powers: {
|
||||||
|
// Yeah this is major overkill...
|
||||||
|
'ms': 1,
|
||||||
|
'cs': 10,
|
||||||
|
'ds': 100,
|
||||||
|
's': 1000,
|
||||||
|
'das': 10000,
|
||||||
|
'hs': 100000,
|
||||||
|
'ks': 1000000
|
||||||
|
},
|
||||||
|
timeParse: function(value) {
|
||||||
|
if (value == undefined || value == null)
|
||||||
|
return null;
|
||||||
|
var result = this.regex.exec(jQuery.trim(value.toString()));
|
||||||
|
if (result[2]) {
|
||||||
|
var num = parseInt(result[1], 10);
|
||||||
|
var mult = this.powers[result[2]] || 1;
|
||||||
|
return num * mult;
|
||||||
|
} else {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
add: function(element, interval, label, fn, times, belay) {
|
||||||
|
var counter = 0;
|
||||||
|
|
||||||
|
if (jQuery.isFunction(label)) {
|
||||||
|
if (!times)
|
||||||
|
times = fn;
|
||||||
|
fn = label;
|
||||||
|
label = interval;
|
||||||
|
}
|
||||||
|
|
||||||
|
interval = jQuery.timer.timeParse(interval);
|
||||||
|
|
||||||
|
if (typeof interval != 'number' || isNaN(interval) || interval <= 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (times && times.constructor != Number) {
|
||||||
|
belay = !!times;
|
||||||
|
times = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
times = times || 0;
|
||||||
|
belay = belay || false;
|
||||||
|
|
||||||
|
if (!element.$timers)
|
||||||
|
element.$timers = {};
|
||||||
|
|
||||||
|
if (!element.$timers[label])
|
||||||
|
element.$timers[label] = {};
|
||||||
|
|
||||||
|
fn.$timerID = fn.$timerID || this.guid++;
|
||||||
|
|
||||||
|
var handler = function() {
|
||||||
|
if (belay && this.inProgress)
|
||||||
|
return;
|
||||||
|
this.inProgress = true;
|
||||||
|
if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
|
||||||
|
jQuery.timer.remove(element, label, fn);
|
||||||
|
this.inProgress = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
handler.$timerID = fn.$timerID;
|
||||||
|
|
||||||
|
if (!element.$timers[label][fn.$timerID])
|
||||||
|
element.$timers[label][fn.$timerID] = window.setInterval(handler,interval);
|
||||||
|
|
||||||
|
if ( !this.global[label] )
|
||||||
|
this.global[label] = [];
|
||||||
|
this.global[label].push( element );
|
||||||
|
|
||||||
|
},
|
||||||
|
remove: function(element, label, fn) {
|
||||||
|
var timers = element.$timers, ret;
|
||||||
|
|
||||||
|
if ( timers ) {
|
||||||
|
|
||||||
|
if (!label) {
|
||||||
|
for ( label in timers )
|
||||||
|
this.remove(element, label, fn);
|
||||||
|
} else if ( timers[label] ) {
|
||||||
|
if ( fn ) {
|
||||||
|
if ( fn.$timerID ) {
|
||||||
|
window.clearInterval(timers[label][fn.$timerID]);
|
||||||
|
delete timers[label][fn.$timerID];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for ( var fn in timers[label] ) {
|
||||||
|
window.clearInterval(timers[label][fn]);
|
||||||
|
delete timers[label][fn];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for ( ret in timers[label] ) break;
|
||||||
|
if ( !ret ) {
|
||||||
|
ret = null;
|
||||||
|
delete timers[label];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for ( ret in timers ) break;
|
||||||
|
if ( !ret )
|
||||||
|
element.$timers = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (jQuery.browser.msie)
|
||||||
|
jQuery(window).one("unload", function() {
|
||||||
|
var global = jQuery.timer.global;
|
||||||
|
for ( var label in global ) {
|
||||||
|
var els = global[label], i = els.length;
|
||||||
|
while ( --i )
|
||||||
|
jQuery.timer.remove(els[i], label);
|
||||||
|
}
|
||||||
|
});
|
16
static/styles/fonts.css
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||||
|
Code licensed under the BSD License:
|
||||||
|
http://developer.yahoo.net/yui/license.txt
|
||||||
|
version: 2.5.2
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Percents could work for IE, but for backCompat purposes, we are using keywords.
|
||||||
|
* x-small is for IE6/7 quirks mode.
|
||||||
|
*/
|
||||||
|
body {font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
|
||||||
|
table {font-size:inherit;font:100%;}
|
||||||
|
/**
|
||||||
|
* Bump up IE to get to 13px equivalent
|
||||||
|
*/
|
||||||
|
pre,code,kbd,samp,tt {font-family:monospace;*font-size:108%;line-height:100%;}
|
130
static/styles/iphone.css
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
/*
|
||||||
|
iphone.css
|
||||||
|
stikked
|
||||||
|
|
||||||
|
Created by Ben McRedmond on 2008-03-19.
|
||||||
|
Copyright 2008 Stikked. Some rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "Helvetica";
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagetitle {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Header */
|
||||||
|
|
||||||
|
.header {
|
||||||
|
background-color: #74972A;
|
||||||
|
border-bottom: 2px solid #607C21;
|
||||||
|
color: #fff;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo{
|
||||||
|
float: left;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toolbar {
|
||||||
|
margin-top: 3px;
|
||||||
|
color: #aaa;
|
||||||
|
float: right;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toolbar ul li{
|
||||||
|
display: inline;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toolbar ul li.active{
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toolbar ul li a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* List */
|
||||||
|
tr {
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent li {
|
||||||
|
padding: 5px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent li span.author {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pages {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 25px;
|
||||||
|
font-weight: normal;
|
||||||
|
margin-right: 5px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pages .current {
|
||||||
|
font-weight: bold;;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Create */
|
||||||
|
.data {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 90%;
|
||||||
|
margin-left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submit {
|
||||||
|
margin-left: 2px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* View */
|
||||||
|
.info {
|
||||||
|
margin-left: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta{
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 15px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text_formatted {
|
||||||
|
font-size: 10px;
|
||||||
|
border-top: 1px solid #aaa;
|
||||||
|
padding-top: 5px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
472
static/styles/main.css
Normal file
@ -0,0 +1,472 @@
|
|||||||
|
html {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-image: url('../images/bg-x.png');
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
background-color: #E3E8F2;
|
||||||
|
color: #222;
|
||||||
|
font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
b, strong {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
em, i {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
width: 900px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 ,h4 {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 116%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 108%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 93%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Header */
|
||||||
|
.header {
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h1 {
|
||||||
|
margin-top: 1px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h1 a.title {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #111;
|
||||||
|
font-size: 160%;
|
||||||
|
font-family: Tahoma;
|
||||||
|
font-weight: bolder;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header .tabs {
|
||||||
|
float: right;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header .tabs li {
|
||||||
|
display: inline;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header .tabs li a {
|
||||||
|
margin-left: 50px;
|
||||||
|
float: left;
|
||||||
|
width: auto;
|
||||||
|
color: #94979B;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header .tabs li a.active, .header .tabs li a:hover {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Content */
|
||||||
|
.content {
|
||||||
|
margin-top: 10px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.replies {
|
||||||
|
margin: 10px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.replies, .content {
|
||||||
|
width: 874px;
|
||||||
|
clear: both;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 3px solid #D6DBE4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Forms */
|
||||||
|
.form_wrapper {
|
||||||
|
width: 854px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper.margin {
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper.background {
|
||||||
|
border: solid 2px #b7ddf2;
|
||||||
|
background: #ebf4fb;
|
||||||
|
padding: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .item_group {
|
||||||
|
clear: both;
|
||||||
|
width: 900px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .item_group .item {
|
||||||
|
width: 284px;
|
||||||
|
margin-right: 10px;
|
||||||
|
clear: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .item_group .item input, .form_wrapper .item_group .item select {
|
||||||
|
width: 104px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .item_group .item select {
|
||||||
|
width: 115px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .item {
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
float: left;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .advanced {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
color: #333;
|
||||||
|
margin-top: 20px;
|
||||||
|
/*margin-left: 140px;*/
|
||||||
|
font-size: 93%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper label {
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: right;
|
||||||
|
width: 140px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .instruction {
|
||||||
|
color: #333;
|
||||||
|
display: block;
|
||||||
|
font-size: 85%;
|
||||||
|
font-weight: normal;
|
||||||
|
text-align: right;
|
||||||
|
width: 140px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .instruction.error {
|
||||||
|
color: #D50F12;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .instruction.error p {
|
||||||
|
margin: 0;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper input, .form_wrapper select {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper input.check {
|
||||||
|
width: auto;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper select, .form_wrapper input, .form_wrapper textarea {
|
||||||
|
float: left;
|
||||||
|
padding: 4px 2px;
|
||||||
|
margin: 2px 0 20px 10px;
|
||||||
|
border: solid 1px #9ABAD7;
|
||||||
|
font-size: 93%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .text_beside {
|
||||||
|
width: 130px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .text_beside input, .form_wrapper .item_group .item .text_beside input {
|
||||||
|
margin-right: 5px;
|
||||||
|
float: left;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .text_beside p {
|
||||||
|
font-size: 93%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper.full .text_beside {
|
||||||
|
width: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper textarea {
|
||||||
|
width: 694px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper button {
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
margin-left: 150px;
|
||||||
|
width: 125px;
|
||||||
|
height: 30px;
|
||||||
|
border: 0;
|
||||||
|
background: #666666;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 231%;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 85%;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0;
|
||||||
|
background-image: url("../images/button.png");
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form_wrapper .message_wrapper .message {
|
||||||
|
margin-top: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spacer {
|
||||||
|
clear: both;
|
||||||
|
height: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.explain {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #666;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.explain.border {
|
||||||
|
border-bottom: solid 1px #9ABAD7;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.explain.lowmargin {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pagination */
|
||||||
|
|
||||||
|
.pages {
|
||||||
|
margin-top: 20px;
|
||||||
|
font-size: 116%;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
float: left;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Recent Paste Listings */
|
||||||
|
.recent {
|
||||||
|
clear: both;
|
||||||
|
width: 854px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent th {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 100%;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .title{
|
||||||
|
width: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .name {
|
||||||
|
width: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .lang {
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .time {
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent tr {
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent tr.title {
|
||||||
|
line-height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent tr td {
|
||||||
|
font-size: 100%;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .odd {
|
||||||
|
background-color: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.recent .even {
|
||||||
|
background-color: #F1F5FA;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Pastes */
|
||||||
|
.meta {
|
||||||
|
font-size: 93%;
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta .spacer, .spacer.high {
|
||||||
|
height: 10px;
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail.by {
|
||||||
|
font-style: italic;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail .item {
|
||||||
|
color: #333;
|
||||||
|
width: 50px;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paste {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 900px;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paste.full {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paste .text_formatted {
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
width: 874px;
|
||||||
|
border: 3px solid #D5DAE3;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 10px;
|
||||||
|
background: #ebf4fb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paste .text_formatted.full {
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text_formatted ol {
|
||||||
|
padding-left: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text_formatted ol li {
|
||||||
|
list-style: decimal outside;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Messages */
|
||||||
|
.message {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 85%;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.success {
|
||||||
|
background-color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.status {
|
||||||
|
background: #DB9330;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.error {
|
||||||
|
background: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message .container {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* About Page */
|
||||||
|
.about {
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about h1.space {
|
||||||
|
margin-top: 10px;
|
||||||
|
float: left;
|
||||||
|
clear: both;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about p, .about ul, .about code {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about ul, .about code {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about ul li {
|
||||||
|
list-style-type: disc;
|
||||||
|
list-style-position: inside;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about code {
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
border-left: 3px solid #aaa;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* !Footer */
|
||||||
|
.footer {
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
margin-top: 30px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 93%;
|
||||||
|
color: #777;
|
||||||
|
font-family: Helvetica, Arial, sans-serif;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
24
static/styles/raw.css
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
raw.css
|
||||||
|
Stikked
|
||||||
|
|
||||||
|
Created by Ben McRedmond on 2008-03-20.
|
||||||
|
Copyright 2008 Stikked. Some rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, "Helvetica Neue", Helvetica, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
width: 95%;
|
||||||
|
margin: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
background-color: #eee;
|
||||||
|
padding: 5px;
|
||||||
|
font-family: monospace;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
24
static/styles/reset.css
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
||||||
|
Code licensed under the BSD License:
|
||||||
|
http://developer.yahoo.net/yui/license.txt
|
||||||
|
version: 2.5.2
|
||||||
|
*/
|
||||||
|
html{color:#000;background:#FFF;}
|
||||||
|
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
|
||||||
|
table{border-collapse:collapse;border-spacing:0;}
|
||||||
|
fieldset,img{border:0;}
|
||||||
|
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
|
||||||
|
li{list-style:none;}
|
||||||
|
caption,th{text-align:left;}
|
||||||
|
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
|
||||||
|
q:before,q:after{content:'';}
|
||||||
|
abbr,acronym {border:0;font-variant:normal;}
|
||||||
|
/* to preserve line-height and selector appearance */
|
||||||
|
sup {vertical-align:text-top;}
|
||||||
|
sub {vertical-align:text-bottom;}
|
||||||
|
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
|
||||||
|
/*to enable resizing for IE*/
|
||||||
|
input,textarea,select{*font-size:100%;}
|
||||||
|
/*because legend doesn't inherit in IE */
|
||||||
|
legend{color:#000;}
|
110
system/application/config/autoload.php
Executable file
@ -0,0 +1,110 @@
|
|||||||
|
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| AUTO-LOADER
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| This file specifies which systems should be loaded by default.
|
||||||
|
|
|
||||||
|
| In order to keep the framework as light-weight as possible only the
|
||||||
|
| absolute minimal resources are loaded by default. For example,
|
||||||
|
| the database is not connected to automatically since no assumption
|
||||||
|
| is made regarding whether you intend to use it. This file lets
|
||||||
|
| you globally define which systems you would like loaded with every
|
||||||
|
| request.
|
||||||
|
|
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Instructions
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These are the things you can load automatically:
|
||||||
|
|
|
||||||
|
| 1. Libraries
|
||||||
|
| 2. Helper files
|
||||||
|
| 3. Plugins
|
||||||
|
| 4. Custom config files
|
||||||
|
| 5. Language files
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Libraries
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| These are the classes located in the system/libraries folder
|
||||||
|
| or in your system/application/libraries folder.
|
||||||
|
|
|
||||||
|
| Prototype:
|
||||||
|
|
|
||||||
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
|
||||||
|
*/
|
||||||
|
|
||||||
|
$autoload['libraries'] = array('database', "db_session");
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Helper Files
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Prototype:
|
||||||
|
|
|
||||||
|
| $autoload['helper'] = array('url', 'file');
|
||||||
|
*/
|
||||||
|
|
||||||
|
$autoload['helper'] = array('url', 'date');
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Plugins
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Prototype:
|
||||||
|
|
|
||||||
|
| $autoload['plugin'] = array('captcha', 'js_calendar');
|
||||||
|
*/
|
||||||
|
|
||||||
|
$autoload['plugin'] = array();
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Config files
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Prototype:
|
||||||
|
|
|
||||||
|
| $autoload['config'] = array('config1', 'config2');
|
||||||
|
|
|
||||||
|
| NOTE: This item is intended for use ONLY if you have created custom
|
||||||
|
| config files. Otherwise, leave it blank.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
$autoload['config'] = array('stikked');
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Language files
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Prototype:
|
||||||
|
|
|
||||||
|
| $autoload['language'] = array('lang1', 'lang2');
|
||||||
|
|
|
||||||
|
| NOTE: Do not include the "_lang" part of your file. For example
|
||||||
|
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
$autoload['language'] = array();
|
||||||
|
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| Auto-load Core Libraries
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| DEPRECATED: Use $autoload['libraries'] above instead.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
// $autoload['core'] = array();
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
311
system/application/config/config.php
Executable file
@ -0,0 +1,311 @@
|
|||||||
|
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Base Site URL
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| URL to your CodeIgniter root. Typically this will be your base URL,
|
||||||
|
| *****WITH a trailing slash:*****
|
||||||
|
|
|
||||||
|
| http://www.example.com/
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['base_url'] = "http://www.example.com/";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Index File
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Typically this will be your index.php file, unless you've renamed it to
|
||||||
|
| something else. If you are using mod_rewrite to remove the page set this
|
||||||
|
| variable so that it is blank.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['index_page'] = "index.php";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| URI PROTOCOL
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This item determines which server global should be used to retrieve the
|
||||||
|
| URI string. The default setting of "AUTO" works for most servers.
|
||||||
|
| If your links do not seem to work, try one of the other delicious flavors:
|
||||||
|
|
|
||||||
|
| 'AUTO' Default - auto detects
|
||||||
|
| 'PATH_INFO' Uses the PATH_INFO
|
||||||
|
| 'QUERY_STRING' Uses the QUERY_STRING
|
||||||
|
| 'REQUEST_URI' Uses the REQUEST_URI
|
||||||
|
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['uri_protocol'] = "AUTO";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| URL suffix
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
|
||||||
|
| For more information please see the user guide:
|
||||||
|
|
|
||||||
|
| http://www.codeigniter.com/user_guide/general/urls.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
$config['url_suffix'] = "";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Language
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This determines which set of language files should be used. Make sure
|
||||||
|
| there is an available translation if you intend to use something other
|
||||||
|
| than english.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['language'] = "english";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Character Set
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This determines which character set is used by default in various methods
|
||||||
|
| that require a character set to be provided.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['charset'] = "UTF-8";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Enable/Disable System Hooks
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If you would like to use the "hooks" feature you must enable it by
|
||||||
|
| setting this variable to TRUE (boolean). See the user guide for details.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['enable_hooks'] = FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Class Extension Prefix
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This item allows you to set the filename/classname prefix when extending
|
||||||
|
| native libraries. For more information please see the user guide:
|
||||||
|
|
|
||||||
|
| http://www.codeigniter.com/user_guide/general/core_classes.html
|
||||||
|
| http://www.codeigniter.com/user_guide/general/creating_libraries.html
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['subclass_prefix'] = 'MY_';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Allowed URL Characters
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This lets you specify which characters are permitted within your URLs.
|
||||||
|
| When someone tries to submit a URL with disallowed characters they will
|
||||||
|
| get a warning message.
|
||||||
|
|
|
||||||
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
|
||||||
|
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
||||||
|
|
|
||||||
|
| Leave blank to allow all characters -- but only if you are insane.
|
||||||
|
|
|
||||||
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Enable Query Strings
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
|
||||||
|
| www.your-site.com/who/what/where/
|
||||||
|
|
|
||||||
|
| You can optionally enable standard query string based URLs:
|
||||||
|
| www.your-site.com?who=me&what=something&where=here
|
||||||
|
|
|
||||||
|
| Options are: TRUE or FALSE (boolean)
|
||||||
|
|
|
||||||
|
| The two other items let you set the query string "words" that will
|
||||||
|
| invoke your controllers and its functions:
|
||||||
|
| www.your-site.com/index.php?c=controller&m=function
|
||||||
|
|
|
||||||
|
| Please note that some of the helpers won't work as expected when
|
||||||
|
| this feature is enabled, since CodeIgniter is designed primarily to
|
||||||
|
| use segment based URLs.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['enable_query_strings'] = FALSE;
|
||||||
|
$config['controller_trigger'] = 'c';
|
||||||
|
$config['function_trigger'] = 'm';
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Error Logging Threshold
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If you have enabled error logging, you can set an error threshold to
|
||||||
|
| determine what gets logged. Threshold options are:
|
||||||
|
| You can enable error logging by setting a threshold over zero. The
|
||||||
|
| threshold determines what gets logged. Threshold options are:
|
||||||
|
|
|
||||||
|
| 0 = Disables logging, Error logging TURNED OFF
|
||||||
|
| 1 = Error Messages (including PHP errors)
|
||||||
|
| 2 = Debug Messages
|
||||||
|
| 3 = Informational Messages
|
||||||
|
| 4 = All Messages
|
||||||
|
|
|
||||||
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
|
||||||
|
| your log files will fill up very fast.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['log_threshold'] = 0;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Error Logging Directory Path
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Leave this BLANK unless you would like to set something other than the default
|
||||||
|
| system/logs/ folder. Use a full server path with trailing slash.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['log_path'] = '';
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Date Format for Logs
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Each item that is logged has an associated date. You can use PHP date
|
||||||
|
| codes to set your own date formatting
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['log_date_format'] = 'Y-m-d H:i:s';
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cache Directory Path
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Leave this BLANK unless you would like to set something other than the default
|
||||||
|
| system/cache/ folder. Use a full server path with trailing slash.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['cache_path'] = '';
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Encryption Key
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If you use the Encryption class or the Sessions class with encryption
|
||||||
|
| enabled you MUST set an encryption key. See the user guide for info.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['encryption_key'] = "";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Variables
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| 'session_cookie_name' = the name you want for the cookie
|
||||||
|
| 'encrypt_sess_cookie' = TRUE/FALSE (boolean). Whether to encrypt the cookie
|
||||||
|
| 'session_expiration' = the number of SECONDS you want the session to last.
|
||||||
|
| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['sess_cookie_name'] = 'ci_session';
|
||||||
|
$config['sess_expiration'] = 0;
|
||||||
|
$config['sess_encrypt_cookie'] = FALSE;
|
||||||
|
$config['sess_use_database'] = TRUE;
|
||||||
|
$config['sess_table_name'] = 'ci_sessions';
|
||||||
|
$config['sess_match_ip'] = FALSE;
|
||||||
|
$config['sess_match_useragent'] = TRUE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cookie Related Variables
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| 'cookie_prefix' = Set a prefix if you need to avoid collisions
|
||||||
|
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
|
||||||
|
| 'cookie_path' = Typically will be a forward slash
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['cookie_prefix'] = "";
|
||||||
|
$config['cookie_domain'] = "";
|
||||||
|
$config['cookie_path'] = "/";
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Global XSS Filtering
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Determines whether the XSS filter is always active when GET, POST or
|
||||||
|
| COOKIE data is encountered
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['global_xss_filtering'] = FALSE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Output Compression
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Enables Gzip output compression for faster page loads. When enabled,
|
||||||
|
| the output class will test whether your server supports Gzip.
|
||||||
|
| Even if it does, however, not all browsers support compression
|
||||||
|
| so enable only if you are reasonably sure your visitors can handle it.
|
||||||
|
|
|
||||||
|
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
|
||||||
|
| means you are prematurely outputting something to your browser. It could
|
||||||
|
| even be a line of whitespace at the end of one of your scripts. For
|
||||||
|
| compression to work, nothing can be sent before the output buffer is called
|
||||||
|
| by the output class. Do not "echo" any values with compression enabled.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['compress_output'] = FALSE;
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Master Time Reference
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Options are "local" or "gmt". This pref tells the system whether to use
|
||||||
|
| your server's local time as the master "now" reference, or convert it to
|
||||||
|
| GMT. See the "date helper" page of the user guide for information
|
||||||
|
| regarding date handling.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['time_reference'] = 'local';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Rewrite PHP Short Tags
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If your PHP installation does not have short tag support enabled CI
|
||||||
|
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
|
||||||
|
| in your view files. Options are TRUE or FALSE (boolean)
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
$config['rewrite_short_tags'] = FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
41
system/application/config/constants.php
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| File and Directory Modes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These prefs are used when checking and setting modes when working
|
||||||
|
| with the file system. The defaults are fine on servers with proper
|
||||||
|
| security, but you may wish (or even need) to change the values in
|
||||||
|
| certain environments (Apache running a separate process for each
|
||||||
|
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
|
||||||
|
| always be used to set the mode correctly.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
define('FILE_READ_MODE', 0644);
|
||||||
|
define('FILE_WRITE_MODE', 0666);
|
||||||
|
define('DIR_READ_MODE', 0755);
|
||||||
|
define('DIR_WRITE_MODE', 0777);
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| File Stream Modes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These modes are used when working with fopen()/popen()
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
define('FOPEN_READ', 'rb');
|
||||||
|
define('FOPEN_READ_WRITE', 'r+b');
|
||||||
|
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
|
||||||
|
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
|
||||||
|
define('FOPEN_WRITE_CREATE', 'ab');
|
||||||
|
define('FOPEN_READ_WRITE_CREATE', 'a+b');
|
||||||
|
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
|
||||||
|
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
|
||||||
|
|
||||||
|
|
||||||
|
/* End of file constants.php */
|
||||||
|
/* Location: ./system/application/config/constants.php */
|
49
system/application/config/database.php
Executable file
@ -0,0 +1,49 @@
|
|||||||
|
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| DATABASE CONNECTIVITY SETTINGS
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| This file will contain the settings needed to access your database.
|
||||||
|
|
|
||||||
|
| For complete instructions please consult the "Database Connection"
|
||||||
|
| page of the User Guide.
|
||||||
|
|
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
| EXPLANATION OF VARIABLES
|
||||||
|
| -------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| ['hostname'] The hostname of your database server.
|
||||||
|
| ['username'] The username used to connect to the database
|
||||||
|
| ['password'] The password used to connect to the database
|
||||||
|
| ['database'] The name of the database you want to connect to
|
||||||
|
| ['dbdriver'] The database type. ie: mysql. Currently supported:
|
||||||
|
mysql, mysqli, postgre, odbc, mssql
|
||||||
|
| ['dbprefix'] You can add an optional prefix, which will be added
|
||||||
|
| to the table name when using the Active Record class
|
||||||
|
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
||||||
|
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
||||||
|
| ['active_r'] TRUE/FALSE - Whether to load the active record class
|
||||||
|
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
||||||
|
| ['cachedir'] The path to the folder where cache files should be stored
|
||||||
|
|
|
||||||
|
| The $active_group variable lets you choose which connection group to
|
||||||
|
| make active. By default there is only one group (the "default" group).
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
$active_group = "default";
|
||||||
|
|
||||||
|
$db['default']['hostname'] = "localhost";
|
||||||
|
$db['default']['username'] = "user";
|
||||||
|
$db['default']['password'] = "password";
|
||||||
|
$db['default']['database'] = "stikked";
|
||||||
|
$db['default']['dbdriver'] = "mysql";
|
||||||
|
$db['default']['dbprefix'] = "";
|
||||||
|
$db['default']['active_r'] = TRUE;
|
||||||
|
$db['default']['pconnect'] = TRUE;
|
||||||
|
$db['default']['db_debug'] = TRUE;
|
||||||
|
$db['default']['cache_on'] = FALSE;
|
||||||
|
$db['default']['cachedir'] = "";
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
14
system/application/config/hooks.php
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
||||||
|
/*
|
||||||
|
| -------------------------------------------------------------------------
|
||||||
|
| Hooks
|
||||||
|
| -------------------------------------------------------------------------
|
||||||
|
| This file lets you define "hooks" to extend CI without hacking the core
|
||||||
|
| files. Please see the user guide for info:
|
||||||
|
|
|
||||||
|
| http://www.codeigniter.com/user_guide/general/hooks.html
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
15
system/application/config/index.html
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>403 Forbidden</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body bgcolor='#ffffff'>
|
||||||
|
|
||||||
|
<p>Directory access is forbidden.<p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|