aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/auth_api.html
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'develop-olympus' into developAndreas Fischer2012-11-291-1/+1
|\
| * [ticket/11227] @return void -> @return null in develop-olympus.Oleg Pudeyev2012-11-291-1/+1
* | [feature/class-prefix] Rename auth => phpbb_authIgor Wiedler2012-03-311-1/+1
* | Merge branch 'develop-olympus' into developAndreas Fischer2012-01-021-1/+1
|\ \ | |/
| * [ticket/9916] Changing header in non-distributed filesUnknown2012-01-021-1/+1
* | [ticket/10258] Remove copyright meta tag from docsIgor Wiedler2011-07-111-1/+0
* | [ticket/10258] Remove resource-type and distribution meta tagsIgor Wiedler2011-07-101-2/+0
* | [ticket/10258] Remove X-UA-Compatible and imagetoolbar meta tagsIgor Wiedler2011-07-101-2/+0
* | [ticket/10258] Change the DOCTYPE to HTML5Igor Wiedler2011-07-091-6/+4
|/
* [ticket/9859] Remove the years from the copyright statements in docs files.Andreas Fischer2011-01-161-1/+1
* [ticket/9859] Remove the year from the copyright meta tag in docs/*.htmlAndreas Fischer2011-01-161-1/+1
* Merge branch 'ticket/bantu/9857' into develop-olympusIgor Wiedler2010-10-191-1/+1
|\
| * [ticket/9857] Remove visible $Id$ from phpBB/docs files.Andreas Fischer2010-10-191-1/+1
* | [ticket/9854] Revise docs/auth_api.html to add more methodsJosh Woody2010-10-191-1/+47
|/
* updated documents to prosilver styleMeik Sievertsen2007-09-221-254/+123
* - make sure the copyright/disclaimer is consistentMeik Sievertsen2007-08-211-1/+14
* allow mod authors to plug in info_ language files for population within the m...Meik Sievertsen2007-07-011-1/+0
* #8148David M2007-02-201-5/+5
* fixing some bugs, most being submitted grammatical/spelling errors.Meik Sievertsen2007-01-211-3/+3
* - fixed a few bugsMeik Sievertsen2006-06-111-54/+316
* - permission trace correctly uses language variables nowNils Adermann2006-06-041-25/+47
* A documentPaul S. Owen2003-01-071-0/+88
(\S+)\s*$/) {
@@ -897,7 +897,7 @@ sub set_cups_autoconf {
}
# Remove all valid "CUPS_CONFIG" lines
- (/^\s*CUPS_CONFIG/ and $_="") foreach @file_content;
+ (/^\s*CUPS_CONFIG/ and $_ = "") foreach @file_content;
# Insert the new "Printcap" line
if ($autoconf) {
@@ -975,7 +975,7 @@ sub write_cupsd_conf {
sub read_printers_conf {
my ($printer) = @_;
- my $current = undef;
+ my $current;
#- read /etc/cups/printers.conf file.
#- according to this code, we are now using the following keys for each queues.
@@ -1588,7 +1588,7 @@ sub configure_hpoj {
die "Could not open /etc/ptal/$ptaldevice for writing!\n";
# Write file header.
- $_=`date`;
+ $_ = `date`;
chomp;
print CONFIG
"# Added $_ by \"printerdrake\".\n".
@@ -2169,7 +2169,7 @@ sub makestarofficeprinterentry {
"BitmapColor=$color", $configfile);
# Set the default paper size
if ($ppd =~ /^\s*\*DefaultPageSize:\s*(\S+)\s*$/m) {
- my $papersize=$1;
+ my $papersize = $1;
$configfile = removeentry("$queue.PostScript.$queue",
"PageSize=", $configfile);
$configfile = removeentry("$queue.PostScript.$queue",
@@ -2194,7 +2194,7 @@ sub makeopenofficeprinterentry {
my $ppd = cat_("$prefix/etc/foomatic/$queue.ppd");
# "PPD_PageSize" line
if ($ppd =~ /^\s*\*DefaultPageSize:\s*(\S+)\s*$/m) {
- my $papersize=$1;
+ my $papersize = $1;
$configfile = removeentry($queue,
"PPD_PageSize=", $configfile);
$configfile = addentry($queue,
@@ -2353,7 +2353,7 @@ sub getcupsremotequeues {
local *F;
open F, ($::testing ? "$prefix" : "chroot $prefix/ ") .
"lpstat -v |" || return ();
- my @printerlist = ();
+ my @printerlist;
my $line;
while ($line = <F>) {
if ($line =~ m/^\s*device\s+for\s+([^:\s]+):\s*(\S+)\s*$/) {