Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Administrator
Drupal
Commits
7af144de
Commit
7af144de
authored
14 years ago
by
The Great Git Migration
Committed by
Drupal Git User (LDAP)
14 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Stripping CVS keywords
parent
b4ecbd94
Changes
63
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
INSTALL.txt
+0
-1
INSTALL.txt
cron.php
+0
-1
cron.php
database/updates.inc
+0
-1
database/updates.inc
includes/bootstrap.inc
+0
-1
includes/bootstrap.inc
includes/common.inc
+0
-1
includes/common.inc
includes/conf.php
+0
-1
includes/conf.php
includes/database.inc
+0
-1
includes/database.inc
includes/database.mysql.inc
+0
-1
includes/database.mysql.inc
includes/database.pear.inc
+0
-1
includes/database.pear.inc
includes/file.inc
+0
-1
includes/file.inc
includes/menu.inc
+0
-1
includes/menu.inc
includes/module.inc
+0
-1
includes/module.inc
includes/pager.inc
+0
-1
includes/pager.inc
includes/session.inc
+0
-1
includes/session.inc
includes/tablesort.inc
+0
-1
includes/tablesort.inc
includes/theme.inc
+0
-1
includes/theme.inc
includes/xmlrpc.inc
+0
-1
includes/xmlrpc.inc
includes/xmlrpcs.inc
+0
-1
includes/xmlrpcs.inc
index.php
+0
-1
index.php
misc/drupal.css
+0
-1
misc/drupal.css
with
0 additions
and
20 deletions
+0
-20
INSTALL.txt
View file @
7af144de
// $Id$
REQUIREMENTS
------------
...
...
This diff is collapsed.
Click to expand it.
cron.php
View file @
7af144de
<?php
// $Id$
include_once
"includes/bootstrap.inc"
;
include_once
"includes/common.inc"
;
...
...
This diff is collapsed.
Click to expand it.
database/updates.inc
View file @
7af144de
<?php
/* $Id$ */
// Define the various updates in an array("date : comment" => "function");
$sql_updates
=
array
(
...
...
This diff is collapsed.
Click to expand it.
includes/bootstrap.inc
View file @
7af144de
<?php
/* $Id$ */
function
conf_init
()
{
...
...
This diff is collapsed.
Click to expand it.
includes/common.inc
View file @
7af144de
<?php
/* $Id$ */
/**
* @defgroup common Core functions
...
...
This diff is collapsed.
Click to expand it.
includes/conf.php
View file @
7af144de
<?php
// $Id$
#
# Database settings:
...
...
This diff is collapsed.
Click to expand it.
includes/database.inc
View file @
7af144de
<?php
// $Id$
function
db_prefix_tables
(
$sql
)
{
global
$db_prefix
;
...
...
This diff is collapsed.
Click to expand it.
includes/database.mysql.inc
View file @
7af144de
<?php
// $Id$
function
db_connect
(
$url
)
{
$url
=
parse_url
(
$url
);
...
...
This diff is collapsed.
Click to expand it.
includes/database.pear.inc
View file @
7af144de
<?php
// $Id$
require_once
'DB.php'
;
...
...
This diff is collapsed.
Click to expand it.
includes/file.inc
View file @
7af144de
<?php
/* $Id$ */
/**
* @defgroup file File interface
...
...
This diff is collapsed.
Click to expand it.
includes/menu.inc
View file @
7af144de
<?php
/* $Id$ */
/**
* @defgroup menu Menu system
...
...
This diff is collapsed.
Click to expand it.
includes/module.inc
View file @
7af144de
<?php
// $Id$
// initialize modules:
function
module_init
()
{
...
...
This diff is collapsed.
Click to expand it.
includes/pager.inc
View file @
7af144de
<?php
// $Id$
/**
* @defgroup pager Pager interface
...
...
This diff is collapsed.
Click to expand it.
includes/session.inc
View file @
7af144de
<?php
// $Id$
session_set_save_handler
(
"sess_open"
,
"sess_close"
,
"sess_read"
,
"sess_write"
,
"sess_destroy"
,
"sess_gc"
);
session_start
();
...
...
This diff is collapsed.
Click to expand it.
includes/tablesort.inc
View file @
7af144de
<?php
// $Id$
function
tablesort_init
(
$header
)
{
static
$ts
;
...
...
This diff is collapsed.
Click to expand it.
includes/theme.inc
View file @
7af144de
<?php
/* $Id$ */
/**
* @file
...
...
This diff is collapsed.
Click to expand it.
includes/xmlrpc.inc
View file @
7af144de
<?php
// by Edd Dumbill (C) 1999-2001
// <edd@usefulinc.com>
// $Id$
// Copyright (c) 1999,2000,2001 Edd Dumbill.
...
...
This diff is collapsed.
Click to expand it.
includes/xmlrpcs.inc
View file @
7af144de
<?php
// by Edd Dumbill (C) 1999-2001
// <edd@usefulinc.com>
// $Id$
// Copyright (c) 1999,2000,2001 Edd Dumbill.
// All rights reserved.
...
...
This diff is collapsed.
Click to expand it.
index.php
View file @
7af144de
<?php
// $Id$
include_once
"includes/bootstrap.inc"
;
drupal_page_header
();
...
...
This diff is collapsed.
Click to expand it.
misc/drupal.css
View file @
7af144de
/* $Id$ */
form
{
margin
:
0
;
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help