Result:
Your query is still running in background...Search in progress... at this time found 9 distributions and 60 files matching your query.
Next refresh should show more results. ( run in 8.514 )


A1z-HTML5-Template

 view release on metacpan or  search on metacpan

lib/A1z/HTML5/Template.pm  view on Meta::CPAN

	
	my %in;
	
	%in = (
		file => "https://www.a1z.us/js/utils/top-nav-bar.js",
		name => "Menu",
		@_,
	);
	
	my $out; 
	

lib/A1z/HTML5/Template.pm  view on Meta::CPAN


	#serverName, pageName, menuName, dropDownLinks
	
	my %in;
	%in = (
		-nbMenuName 	=>	"", 
		-nbPageName 	=> 	"",
		-nbServer    =>  "",
		-nbLinks => "blog-support-help-contact-sale",
		@_,		
	);
	
	return qq{<script src="https://www.a1z.us/js/utils/top-nav-bar.js"></script>
<!--top nav bar begin-->
<script>
//<-- 
fixed_top_navbar('$in{-nbServer}', '$in{-nbPageName}', '$in{-nbMenuName}', '$in{-nbLinks}');
//-->
</script>
<!-- top nav bar end--> 
}; 

lib/A1z/HTML5/Template.pm  view on Meta::CPAN

			
			# determine output type
			if ( $identifiers =~ /^\#/ ) { $in{output_type} = 'Table'; }
			elsif ( $identifiers =~ /^\-/ ) { $in{output_type} = 'Accordion'; }
			elsif ( $identifiers =~ /^\=/ ) { $in{output_type} = 'Tabs'; }
			elsif ( $identifiers =~ /^http/ ) { $in{output_type} = 'Menu'; }
			else { $in{output_type} = 'None'; }
			
			# remove all nonmeta characters for web page display 
			$identifiers =~ s!(\s+|[a-zA-z0-9])!!g;	# removes http also.
			

lib/A1z/HTML5/Template.pm  view on Meta::CPAN

	say qq{<h1>My New App/Website</h1>};

	say qq{<main class="container">}; 

		# output file content as menu
		say $h->body_accordion( $h->open_file("/home/user/path/to/app/open_file_example.txt", 'menu', 'Menu') ); 

		# as a HTML5 table 
		say $h->body_accordion( $h->open_file("$sys{cgibase}/open_file_example.txt", 'table', 'Table Header') );
		
		# Simple mathematics 

lib/A1z/HTML5/Template.pm  view on Meta::CPAN

	For Internal/Future Use

	Customizations for top-nav-bar.js from a1z.us

	$h->html_navbar(
		-nbMenuName => "menuName", 
		-nbPageName => "pageName", 
		-nbServer => "serverName", 
		-nbLinks => "dropDownLinks: URLs separated by a dash, mostly relative URLs. E.g., blog-support-help-contact-sale"
	);

lib/A1z/HTML5/Template.pm  view on Meta::CPAN


	Used for loading all kinds of custom elements for different output formats stored in simple text files.

	$h->open_file("/path/to/file", "outputFormat", "outputHeader");

	$h->open_file("C:/Inetpub/wwwroot/MyApp/menu.txt", "menu", "Menu");

	This is the heart of the App.

=head2 OUTPUT FORMAT OPTIONS: 

 view all matches for this distribution


ARSperl

 view release on metacpan or  search on metacpan

ARS.pm  view on Meta::CPAN


@ARS::ISA = qw(Exporter DynaLoader);
@ARS::EXPORT = qw(isa_int isa_float isa_string ars_LoadQualifier ars_Login 
ars_Logoff ars_GetListField ars_GetFieldByName ars_GetFieldTable 
ars_DeleteEntry ars_GetEntry ars_GetListEntry ars_GetListSchema 
ars_GetListServer ars_GetActiveLink ars_GetCharMenuItems ars_GetSchema 
ars_ExpandCharMenu
ars_GetField ars_simpleMenu ars_GetListActiveLink ars_SetEntry 
ars_perl_qualifier ars_qualifier_ptr ars_Export ars_GetListFilter ars_GetListEscalation 
ars_GetListCharMenu ars_padEntryid 
ars_GetFilter ars_SetFilter
ars_GetListEntryWithFields ars_GetMultipleEntries
ars_GetProfileInfo ars_Import ars_GetCharMenu ars_GetServerStatistics 
ars_GetCurrentServer ars_EncodeDiary 
ars_CreateEntry ars_MergeEntry ars_DeleteFilter
ars_DeleteMultipleFields ars_DeleteActiveLink
ars_DeleteCharMenu
ars_DeleteEscalation ars_DeleteField ars_DeleteSchema
ars_DeleteVUI ars_ExecuteProcess
ars_GetEscalation ars_GetFullTextInfo
ars_GetListGroup ars_GetListSQL ars_GetListUser ars_GetListRole
ars_GetListVUI 

ARS.pm  view on Meta::CPAN

ars_CreateActiveLink
ars_GetControlStructFields ars_GetVUI
ars_GetListContainer ars_GetContainer ars_DeleteContainer ars_SetServerPort
ars_SetLogging ars_SetSessionConfiguration ars_SetImpersonatedUser
ars_CreateField ars_SetField ars_CreateSchema ars_SetSchema ars_CreateVUI ars_SetVUI
ars_CreateContainer ars_SetContainer ars_CreateCharMenu ars_SetCharMenu
ars_SetActiveLink ars_CreateFilter ars_CreateEscalation ars_SetEscalation
$ars_errstr %ARServerStats %ars_errhash
ars_decodeStatusHistory ars_APIVersion ars_encodeStatusHistory
ars_BeginBulkEntryTransaction ars_EndBulkEntryTransaction
ars_Signal ars_GetTextForErrorMessage ars_DateToJulianDate

ARS.pm  view on Meta::CPAN

	return newObject( @_ );
}


# ROUTINE
#   ars_simpleMenu(menuItems, prepend)
#
# DESCRIPTION
#   merges all sub-menus into a single level menu. good for web 
#   interfaces.
#
# RETURNS
#   array of menu items.

sub ars_simpleMenu {
    my($m) = shift;
    my($prepend) = shift;
    my(@m) = @$m;
    my(@ret, @submenu);
    my($name, $val);
    
    while (($name, $val, @m) = @m) {
	if (ref($val)) {
	    @submenu = ars_simpleMenu($val, $name);
	    @ret = (@ret, @submenu);
	} else {
	    if ($prepend) {
		@ret = (@ret, "$prepend/$name", $val);
	    } else {

ARS.pm  view on Meta::CPAN

		print "val: ", $h->{$_},"\n";
		dumpHash($h->{$_}) if(ref($h->{$_}) eq "HASH");
	}
}	
	
# ars_GetCharMenuItems(ctrl, menuName, qualifier)
#  qual is optional. 
#    if it's specified:
#       menuType must be "query"
#       qualifier must compile against the form that the menu 
#       is written for.

sub ars_GetCharMenuItems {
	my ($ctrl, $menuName, $qual) = (shift, shift, shift);

	if(defined($qual)) {
		my $menu = ars_GetCharMenu($ctrl, $menuName);
		die "ars_GetCharMenuItems failed: $ARS::ars_errstr" 
		  unless defined($menu);
		die "ars_GetCharMenuItems failed: qualifier was specified, but menu is not a 'query' menu" 
		  if($menu->{'menuType'} ne "query");
		
		if(ref($qual) ne "ARQualifierStruct") {
			$qual = ars_LoadQualifier($ctrl, $menu->{'menuQuery'}{'schema'}, $qual);
		}
		return ars_ExpandCharMenu2($ctrl, $menuName, $qual);
	}
	return ars_ExpandCharMenu2($ctrl, $menuName);
}

sub ars_ExpandCharMenu {
	return ars_ExpandCharMenu2(@_);
}

# encodes status history from the same format
# as returned by ars_decodeStatusHistory()

 view all matches for this distribution


ASNMTAP

 view release on metacpan or  search on metacpan

applications/htmlroot/cgi-bin/admin/generateConfig.pl  view on Meta::CPAN

    $htmlTitle = "Update Configuration";
  } elsif ($action eq 'update') {
    $htmlTitle = "Configuration Updated";
  } else {
    $action    = "menuView";
    $htmlTitle = "Configuration Menu";
  }

  # HTML  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  my $onload = ( ( $action =~ /^(check|generate|compare|install)View$/ ) ? "ONLOAD=\"if (document.images) document.Progress.src='".$IMAGESURL."/spacer.gif';\"" : '' );
  print_header (*STDOUT, $pagedir, $pageset, $htmlTitle, $subTitle, 3600, $onload, 'F', '', $sessionID);

 view all matches for this distribution


AXL-Client-Simple

 view release on metacpan or  search on metacpan

share/AXLSoap.xsd  view on Meta::CPAN

         <xsd:enumeration value="Answer Oldest"/>
         <xsd:enumeration value="Services"/>
         <xsd:enumeration value="Messages"/>
         <xsd:enumeration value="Directories"/>
         <xsd:enumeration value="Information"/>
         <xsd:enumeration value="Application Menu"/>
         <xsd:enumeration value="Headset"/>
         <xsd:enumeration value="AEC"/>
         <xsd:enumeration value="None"/>
      </xsd:restriction>
   </xsd:simpleType>

share/AXLSoap.xsd  view on Meta::CPAN

      </xsd:restriction>
   </xsd:simpleType>

   <xsd:simpleType name="XPluginUsage">
      <xsd:restriction base="xsd:string">
         <xsd:enumeration value="Application Menu"/>
         <xsd:enumeration value="Installation"/>
         <xsd:enumeration value="User Menu"/>
         <xsd:enumeration value="Telecaster Menu"/>
      </xsd:restriction>
   </xsd:simpleType>

   <xsd:simpleType name="XPreemption">
      <xsd:restriction base="xsd:string">

 view all matches for this distribution


AcePerl

 view release on metacpan or  search on metacpan

acelib/menu.c  view on Meta::CPAN


/****************** MENU manipulation *******************/

MENU menuCreate (char *title)
{
  MENU menu = (MENU) messalloc (sizeof (struct MenuStruct)) ;
  menu->title = title ;
  menu->items = 0 ;
  return menu ;
}

MENU menuCopy (MENU oldMenu)
{
  MENU newMenu = (MENU) messalloc (sizeof (struct MenuStruct)) ;
  MENUITEM newItem, oldItem ;

  newMenu->title = oldMenu->title ;
  for (oldItem = oldMenu->items ; oldItem ; oldItem = oldItem->down)
    { newItem = menuCreateItem (oldItem->label, oldItem->func) ;
      *newItem = *oldItem ;
      menuAddItem (newMenu, newItem, 0) ;
    }
  return newMenu ;
}

void menuDestroy (MENU menu)
{
#ifdef NO_WE_CACHE_MENUS_IN_ASS_BELOW__DONT_DESTROY_HERE

acelib/menu.c  view on Meta::CPAN


/******************* MENUITEM manipulation ******************/

MENUITEM menuCreateItem (char *label, MENUFUNCTION func)
{
  MENUITEM item = (MENUITEM) messalloc (sizeof (struct MenuItemStruct)) ;
  memset (item, 0, sizeof (struct MenuItemStruct)) ;
  item->label = label ;
  item->func = func ;
  return item ;
}

acelib/menu.c  view on Meta::CPAN

BOOL menuSetPtr (MENUITEM item, void *ptr)
{ if (!item) return FALSE ;
  item->ptr = ptr ; return TRUE ;
}

BOOL menuSetMenu (MENUITEM item, MENU menu)
{ if (!item || !menu) return FALSE ;
  item->submenu = menu ; return TRUE ;
}

/***************** get item properties *******************/

 view all matches for this distribution


Acme-24

 view release on metacpan or  search on metacpan

fortune/jackbauer  view on Meta::CPAN

%
The only reason why you can't see Jack Bauer on Mount Rushmore is because he doesn't want you to see him. 
%
Jack Bauer moves at the speed of light.  That's why 24 hours to him is actually 18 hours to the rest of us.
%
Jack Bauer doesn't get full from the Taco Bell Dollar Menu.
%
Jack Bauer's biological make-up is so advanced that he internally recycles his own human waste into nourishment. That's why Jack never eats or goes to the bathroom.
%
Jack Bauer once fell into quicksand. Lucky for Jack, he had his gun with him and shot his way out of it.  
%

 view all matches for this distribution


Acme-DependOnEverything

 view release on metacpan or  search on metacpan

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use AppConfig;
use App::Config::Chronicle;
use AppConfig::Exporter;
use AppConfig::MyFile;
use AppConfig::Std;
use App::ConMenu;
use App::contenttype;
use App::Context;
use App::Control;
use App::ConvertLogAnyToLogGer;
use App::CopyrightImage;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Catalyst::Model::KiokuDB;
use Catalyst::Model::LDAP;
use Catalyst::Model::LDAP::FromAuthentication;
use Catalyst::Model::Lucy;
use Catalyst::Model::Memcached::tgz;
use Catalyst::Model::MenuGrinder;
use Catalyst::Model::MetaCPAN;
use Catalyst::Model::MogileFS::Client;
use Catalyst::Model::MongoDB;
use Catalyst::Model::MultiAdaptor;
use Catalyst::Model::Net::Amazon;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use CatalystX::IN;
use CatalystX::InjectComponent;
use CatalystX::InjectModule;
use CatalystX::LeakChecker;
use CatalystX::ListFramework;
use CatalystX::Menu::mcDropdown;
use CatalystX::Menu::Suckerfish;
use CatalystX::Menu::Tree;
use CatalystX::MooseComponent;
use CatalystX::OAuth;
use CatalystX::OAuth::Provider;
use CatalystX::PathContext::v;
use CatalystX::Plugin::Blurb;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use CGI::Application::Plugin::IN;
use CGI::Application::Plugin::JSON;
use CGI::Application::Plugin::LinkIntegrity::ta;
use CGI::Application::Plugin::LogDispatch::tar;
use CGI::Application::Plugin::Mason;
use CGI::Application::Plugin::Menu;
use CGI::Application::Plugin::MessageStack::tar;
use CGI::Application::Plugin::Nes;
use CGI::Application::Plugin::Output::XSV::targ;
use CGI::Application::Plugin::PageBuilder::tar;
use CGI::Application::Plugin::PageLookup;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Dancer::Plugin::Mango;
use Dancer::Plugin::Map::Tube;
use Dancer::Plugin::MarkdownFilesToHTML::tar;
use Dancer::Plugin::Memcached;
use Dancer::Plugin::MemcachedFast;
use Dancer::Plugin::Menu;
use Dancer::Plugin::Minify;
use Dancer::Plugin::MobileDevice;
use Dancer::Plugin::Model;
use Dancer::Plugin::Mongo;
use Dancer::Plugin::MongoDB;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use DBIx::Handler::Sunny;
use DBIx::HashTable::tgz;
use DBIx::HTML;
use DBIx::HTML::ClientDB::tgz;
use DBIx::HTMLinterface;
use DBIx::HTML::LinkedMenus::tgz;
use DBIx::HTML::PopupRadio::tgz;
use DBIx::HTMLTable;
use DBIx::Informix::Perform;
use DBIx::InsertHash;
use DBIx::Inspector;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Device::Delcom::VSI;
use Device::Denon::DNF;
use Device::DSE::Q;
use Device::Dynamixel;
use Device::ELM;
use Device::Ericsson::AccessoryMenu;
use Device::Firmata;
use Device::FTDI;
use Device::GBA;
use Device::Gembird;
use Device::GPIB::Prologix;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Gtk::Ex::GraphViz;
use Gtk::Ex::GroupBy;
use Gtk::Ex::History;
use Gtk::Ex::ICal::Recur;
use Gtk::Ex::ListModelConcat;
use Gtk::Ex::MenuView;
use Gtk::Ex::MindMapView;
use Gtk::Ex::MPlayerEmbed;
use Gtk::Ex::NoShrink;
use Gtk::Ex::NumAxis;
use Gtk::Ex::NumberRange;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Gtk::Ex::PrintDialog;
use Gtk::Ex::QuadButton;
use Gtk::Ex::RecordsFilter;
use Gtk::Ex::SearchBox;
use Gtk::Ex::Simple::List;
use Gtk::Ex::Simple::Menu;
use Gtk::Ex::Simple::Tree;
use Gtk::Ex::Spinner;
use Gtk::Ex::Splash;
use Gtk::Ex::Threads::DBI;
use Gtk::Ex::TickerView;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use HTML::Mason::ApacheHandler;
use HTML::Mason::PlackHandler;
use HTML::Mason::PSGIHandler;
use HTML::MasonX::ApacheLikePlackHandler::tar;
use HTML::MasonX::Free;
use HTML::Menu::DateTime;
use HTML::Menu::Hierarchical;
use HTML::Menu::Select;
use HTML::Menu::TreeView;
use HTML::Merge;
use HTML::Meta::Robots::v;
use HTML::Microdata;
use HTML::Microformats;
use HTML::Miner;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use HTML::Widget::Plugin::Calendar;
use HTML::Widget::Plugin::Combo;
use HTML::Widget::Plugin::JS;
use HTML::Widget::Plugin::Struct;
use HTML::Widget::SideBar;
use HTML::Widgets::NavMenu;
use HTML::Widgets::NavMenu::ToJSON;
use HTML::Widgets::SelectLayers;
use HTML::Widgets::Table;
use HTML::WidgetValidator;
use HTML::WidgetValidator::Widget::PixivEmbedFeatur;
use HTML::WidgetValidator::Widget::TegakiBlog;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use HTML::XHTML::DVSM;
use HTML::XHTML::Lite;
use HTML::Xit;
use HTML::XSSLint;
use HTML::YaTmpl;
use HTML::YUI::Menu::tgz;
use HTML::Zoom;
use HTML::Zoom::Parser::HHP;
use HTML::Zoom::Parser::HTML::Parser;
use htpl;
use HTTP::Accept;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use JavaScript::HashRef::Decode;
use JavaScript::JSLint;
use JavaScript::Librarian;
use JavaScript::Lite;
use Javascript::MD::tgz;
use Javascript::Menu::Full;
use JavaScript::Minifier;
use JavaScript::Minifier::XS;
use JavaScript::MochiKit;
use JavaScript::Packer;
use JavaScript::Prepare::v;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Rose::DBx::TestDB;
use Rose::HTML::Objects;
use Rose::HTMLx::Form::DBIC;
use Rose::HTMLx::Form::Field::Autocomplete::tar;
use Rose::HTMLx::Form::Field::Boolean;
use Rose::HTMLx::Form::Field::PopUpMenuNumeric;
use Rose::HTMLx::Form::Field::Serial;
use Rose::HTMLx::Form::Related;
use Rose::Object;
use Rose::ObjectX::CAF;
use Rose::Planter;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use RT::Extension::MandatoryFields;
use RT::Extension::MandatoryOnTransition::tar;
use RT::Extension::MandatoryRequestor;
use RT::Extension::MandatorySubject;
use RT::Extension::Memo;
use RT::Extension::MenubarSearches;
use RT::Extension::MenubarUserTickets;
use RT::Extension::MergeUsers;
use RT::Extension::MessageSizeLimit;
use RT::Extension::MobileUI;
use RT::Extension::ModifyUsersPrefs;
use RT::Extension::MoveRules;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Term::ANSIColor::Markup;
use Term::ANSIColor::Patch::Conditional::targ;
use Term::ANSIColor::Print;
use Term::ANSIColor::Simple;
use Term::ANSIColorx::ColorNicknames;
use Term::ANSIMenu;
use Term::ANSIScreen;
use Term::ANSITable;
use Term::App::Roles;
use Term::Bash::Completion::Generator;
use Term::Caca;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Term::Highlight;
use Term::HiliteDiff;
use Term::Info;
use Term::InKey;
use Term::Interact;
use Term::Menu;
use Term::Menu::Hierarchical;
use Term::Menus;
use Term::Menus::FromFile;
use Term::Multiplexed;
use Term::Newt;
use Term::Pager;
use Term::ProgressBar;
use Term::ProgressBar::Quiet;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use Tk::MARC::Editor;
use Tk::Markdown;
use Tk::MarkdownTk;
use Tk::MatchEntry;
use Tk::MDI;
use Tk::MenuDialog;
use Tk::MenuHash;
use Tk::MIMEApp;
use Tk::MIMEApp::DataToTk;
use Tk::MiniCalendar;
use Tk::MiniScale;
use Tk::MinMaxScale;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use WWW::MediaTemple;
use WWW::Mediawiki::Client;
use WWW::MeGa;
use WWW::MelbourneBikeShare;
use WWW::MelissaData::PhoneLocation;
use WWW::MenuGrinder;
use WWW::Metalgate;
use WWW::Metaweb;
use WWW::Meta::XML::Browser;
use WWW::Mixcloud;
use WWW::Mixi;

lib/Acme/DependOnEverything.pm  view on Meta::CPAN

use WWW::Reddit;
use WWW::RenRen;
use WWW::Resource;
use WWW::REST;
use WWW::REST::Apid;
use WWW::Restaurant::Menu;
use WWW::RiotGames::LeagueOfLegends;
use WWW::RMDown;
use WWW::RoboCop;
use WWW::Robot;
use WWW::RobotRules;

 view all matches for this distribution


Acme-MITHALDU-BleedingOpenGL

 view release on metacpan or  search on metacpan

BleedingOpenGL.pm  view on Meta::CPAN

   gluUnProject_p
);

@glut_func = qw(
   done_glutInit
   glutAddMenuEntry
   glutAddSubMenu
   glutAttachMenu
   glutBitmapCharacter
   glutBitmapHeight
   glutBitmapLength
   glutBitmapString
   glutBitmapWidth
   glutButtonBoxFunc
   glutChangeToMenuEntry
   glutChangeToSubMenu
   glutCloseFunc
   glutCopyColormap
   glutCreateMenu
   glutCreateSubWindow
   glutCreateWindow
   glutDestroyMenu
   glutDestroyWindow
   glutDetachMenu
   glutDeviceGet
   glutDialsFunc
   glutDisplayFunc
   glutEnterGameMode
   glutEntryFunc

BleedingOpenGL.pm  view on Meta::CPAN

   glutFullScreen
   glutGameModeGet
   glutGameModeString
   glutGet
   glutGetColor
   glutGetMenu
   glutGetModifiers
   glutGetWindow
   glutHideOverlay
   glutHideWindow
   glutIconifyWindow

BleedingOpenGL.pm  view on Meta::CPAN

   glutLayerGet
   glutLeaveGameMode
   glutLeaveMainLoop
   glutMainLoop
   glutMainLoopEvent
   glutMenuDestroyFunc
   glutMenuStateFunc
   glutMenuStatusFunc
   glutMotionFunc
   glutMouseFunc
   glutMouseWheelFunc
   glutOverlayDisplayFunc
   glutPassiveMotionFunc

BleedingOpenGL.pm  view on Meta::CPAN

   glutPostOverlayRedisplay
   glutPostRedisplay
   glutPostWindowOverlayRedisplay
   glutPostWindowRedisplay
   glutPushWindow
   glutRemoveMenuItem
   glutRemoveOverlay
   glutReportErrors
   glutReshapeFunc
   glutReshapeWindow
   glutSetColor
   glutSetCursor
   glutSetIconTitle
   glutSetKeyRepeat
   glutSetMenu
   glutSetOption
   glutSetWindow
   glutSetWindowTitle
   glutShowOverlay
   glutShowWindow

 view all matches for this distribution


( run in 8.514 seconds using v1.01-cache-2.11-cpan-fbb2a4b7a29 )