- Describe auth via HTML forms.
- treat form page as protected resource.
- access gateway acts as proxy
- auto-submit form-fill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- using this css --> | |
<style type="text/css"> | |
#footer ul { | |
list-style: none; | |
text-align: center; | |
} | |
#footer li { | |
display: inline; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_menu_alter(). | |
*/ | |
function mysite_menu_alter(&$items) { | |
$items['node/%node/delete']['type'] = MENU_LOCAL_TASK; | |
$items['node/%node/delete']['context'] = MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Base URL (optional). | |
* | |
* If Drupal is generating incorrect URLs on your site, which could | |
* be in HTML headers (links to CSS and JS files) or visible links on pages | |
* (such as in menus), fill in the absolute URL to your Drupal installation. | |
* | |
* We have to set $base_url if we're behind a Novell Access Manager proxy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"color_scheme": "Packages/Theme - Flatland/Flatland Copy.tmTheme", | |
"default_line_ending": "unix", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fallback_encoding": "UTF-8", | |
"find_selected_text": true, | |
"font_options": | |
[ | |
"subpixel_antialias" |