Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
context
Commits
af771989
Commit
af771989
authored
Feb 25, 2011
by
The Great Git Migration
Committed by
Drupal Git User (LDAP)
Feb 25, 2011
Browse files
Stripping CVS keywords
parent
94a3009a
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
0 additions
and
14 deletions
+0
-14
context.info
context.info
+0
-1
context.module
context.module
+0
-1
context_prefix/context_prefix.info
context_prefix/context_prefix.info
+0
-1
context_prefix/context_prefix.install
context_prefix/context_prefix.install
+0
-1
context_prefix/context_prefix.module
context_prefix/context_prefix.module
+0
-1
context_ui/context_ui.info
context_ui/context_ui.info
+0
-1
context_ui/context_ui.install
context_ui/context_ui.install
+0
-1
context_ui/context_ui.js
context_ui/context_ui.js
+0
-1
context_ui/context_ui.module
context_ui/context_ui.module
+0
-1
context_ui/context_ui_admin.inc
context_ui/context_ui_admin.inc
+0
-1
context_ui/context_ui_contrib.info
context_ui/context_ui_contrib.info
+0
-1
context_ui/context_ui_contrib.module
context_ui/context_ui_contrib.module
+0
-1
context_ui/tests/context_ui.test
context_ui/tests/context_ui.test
+0
-1
tests/context.test
tests/context.test
+0
-1
No files found.
context.info
View file @
af771989
;
$
Id
$
name
=
Context
description
=
"Provide modules with a cache that lasts for a single page request."
package
=
Context
...
...
context.module
View file @
af771989
<?php
// $Id$
define
(
'CONTEXT_GET'
,
0
);
define
(
'CONTEXT_SET'
,
1
);
...
...
context_prefix/context_prefix.info
View file @
af771989
;
$
Id
$
name
=
Context
Prefix
description
=
"Provides generalized context prefixing"
dependencies
[]
=
context
...
...
context_prefix/context_prefix.install
View file @
af771989
<?php
// $Id$
function
context_prefix_install
()
{
drupal_install_schema
(
'context_prefix'
);
...
...
context_prefix/context_prefix.module
View file @
af771989
<?php
// $Id$
define
(
'CONTEXT_PREFIX_PATH'
,
0
);
define
(
'CONTEXT_PREFIX_SUBDOMAIN'
,
1
);
...
...
context_ui/context_ui.info
View file @
af771989
;
$
Id
$
name
=
Context
UI
description
=
"Provides a simple UI for settings up a site structure using Context."
dependencies
[]
=
context
...
...
context_ui/context_ui.install
View file @
af771989
<?php
// $Id$
/**
* Implementation of hook_install().
...
...
context_ui/context_ui.js
View file @
af771989
// $Id$
if
(
typeof
(
Drupal
)
==
"
undefined
"
||
!
Drupal
.
context_ui
)
{
Drupal
.
context_ui
=
{};
...
...
context_ui/context_ui.module
View file @
af771989
<?php
// $Id$
/**
* Implementation of hook_init().
...
...
context_ui/context_ui_admin.inc
View file @
af771989
<?php
// $Id$
/**
* Page callback for context_ui admin landing page.
*/
...
...
context_ui/context_ui_contrib.info
View file @
af771989
;
$
Id
$
name
=
Context
UI
Contrib
description
=
"Provides integration with Context UI on behalf of the following contrib modules: Nodequeue, Outline, Views, CSS Injector."
dependencies
[]
=
context
...
...
context_ui/context_ui_contrib.module
View file @
af771989
<?php
// $Id$
/**
* Implementation of hook_context_items()
...
...
context_ui/tests/context_ui.test
View file @
af771989
<?php
// $Id$
/**
* Functional Test for Context UI
...
...
tests/context.test
View file @
af771989
<?php
// $Id$
class
ContextUnitTestCase
extends
DrupalWebTestCase
{
/**
...
...
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