Result:
found more than 561 distributions - search limited to the first 2001 files matching your query ( run in 0.690 )


ICal-Format-Natural

 view release on metacpan or  search on metacpan

lib/ICal/Format/Natural.pm  view on Meta::CPAN

    # parse date
    my $parser = DateTime::Format::Natural->new;
    my $dt     = $parser->parse_datetime($date);

    if ( $parser->success ) {
        my $calendar = Data::ICal->new;

        my $vevent = Data::ICal::Entry::Event->new;
        $vevent->add_properties(
            summary => $summary,
            dtstart => DateTime::Format::ICal->format_datetime($dt),
            dtend =>
              DateTime::Format::ICal->format_datetime( $dt->add( hours => 1 ) ),
        );
        $calendar->add_entry($vevent);
        $calendar->add_properties( method => 'PUBLISH' );

        return $calendar;
    }

    return
      sprintf( "error parsing date (%s). error was: %s", $date,
        $parser->error );

 view all matches for this distribution


ICal-QuickAdd

 view release on metacpan or  search on metacpan

lib/ICal/QuickAdd.pm  view on Meta::CPAN

sub as_ical {
    my $self = shift;

    require Data::ICal;

     my $calendar = Data::ICal->new;
     $calendar->add_entry( $self->as_vevent );
     $calendar->add_properties( method => 'PUBLISH');

     return $calendar;
}

=head2 as_ical_email()

 my $email_simple_obj = $iqa->as_ical_email(

lib/ICal/QuickAdd.pm  view on Meta::CPAN

        From  => { type => SCALAR, default => $self->from_email },
    });

     require Email::Simple;
     my $email = Email::Simple->new('');
     $email->header_set("Content-Type", "text/calendar; name=calendar.ics; charset=utf-8; METHOD=PUBLISH");
     $email->header_set(From => $in{From} );
     $email->header_set(To => $in{To} );

     $email->header_set("Subject", $self->parsed_string );
     $email->body_set( $self->as_ical->as_string );

 view all matches for this distribution


IO-Compress-Brotli

 view release on metacpan or  search on metacpan

brotli/c/common/dictionary.bin  view on Meta::CPAN

market.highwaydone inctivity"last">obligedrise to"undefimade to Early praisedin its for hisathleteJupiterYahoo! termed so manyreally s. The a woman?value=direct right" bicycleacing="day andstatingRather,higher Office are nowtimes, when a pay foron th...
();" rea place\u003Caabout atr>
		ccount gives a<SCRIPTRailwaythemes/toolboxById("xhumans,watchesin some if (wicoming formats Under but hashanded made bythan infear ofdenoted/iframeleft involtagein eacha&quot;base ofIn manyundergoregimesaction </p>
<ustomVa;&gt;</importsor thatmostly &amp;re size="</a></ha classpassiveHost = WhetherfertileVarious=[];(fucameras/></td>acts asIn some>

<!organis <br />Beijingcatalàdeutscheuropeueuskaragaeilgesvenskaespañamensajeusuariotrabajoméxicopáginasiempresistemaoctubreduranteañadirempresamomentonuestroprimeratravésgraciasnuestraprocesoestadoscalidadpersonanúmeroacuerdomúsicamiembroofe...
measureswidth = variableinvolvedvirginianormallyhappenedaccountsstandingnationalRegisterpreparedcontrolsaccuratebirthdaystrategyofficialgraphicscriminalpossiblyconsumerPersonalspeakingvalidateachieved.jpg" />machines</h2>
  keywordsfriendlybrotherscombinedoriginalcomposedexpectedadequatepakistanfollow" valuable</label>relativebringingincreasegovernorplugins/List of Header">" name=" (&quot;graduate</head>
commercemalaysiadirectormaintain;height:schedulechangingback to catholicpatternscolor: #greatestsuppliesreliable</ul>
		<select citizensclothingwatching<li id="specificcarryingsentence<center>contrastthinkingcatch(e)southernMichael merchantcarouselpadding:interior.split("lizationOctober ){returnimproved--&gt;

brotli/c/common/dictionary.bin  view on Meta::CPAN


In the Before theafterwardscurrently across thescientificcommunity.capitalismin Germanyright-wingthe systemSociety ofpoliticiandirection:went on toremoval of New York apartmentsindicationduring theunless thehistoricalhad been adefinitiveingredientatt...
<div id Official worldwide.aria-labelthe planetand it wasd" value="looking atbeneficialare in themonitoringreportedlythe modernworking onallowed towhere the innovative</a></div>soundtracksearchFormtend to beinput id="opening ofrestrictedadopted byadd...
 occasionalbecause itstarted tophysically></div>
  created byCurrently, bgcolor="tabindex="disastrousAnalytics also has a><div id="</style>
<called forsinger and.src = "//violationsthis pointconstantlyis locatedrecordingsd from thenederlandsportuguêsעבריתفارسیdesarrollocomentarioeducaciónseptiembreregistradodirecciónubicaciónpublicidadrespuestasresultadosimportantereservado...

However, compositionclear:both;cooperationwithin the label for="border-top:New Zealandrecommendedphotographyinteresting&lt;sup&gt;controversyNetherlandsalternativemaxlength="switzerlandDevelopmentessentially

Although </textarea>thunderbirdrepresented&amp;ndash;speculationcommunitieslegislationelectronics
	<div id="illustratedengineeringterritoriesauthoritiesdistributed6" height="sans-serif;capable of disappearedinteractivelooking forit would beAfghanistanwas createdMath.floor(surroundingcan also beobservationmaintenanceencountered<h2 class="more rece...

 view all matches for this distribution


IUP

 view release on metacpan or  search on metacpan

lib/IUP.pm  view on Meta::CPAN

  my $mapping = {
    #UPDATE when element list change
    animatedlabel   => 'IUP::AnimatedLabel',     # https://webserver2.tecgraf.puc-rio.br/iup/en/elem/iupanimatedlabel.html
    backgroundbox   => 'IUP::BackgroundBox',     # https://webserver2.tecgraf.puc-rio.br/iup/en/elem/iupbackgroundbox.html
    button          => 'IUP::Button',
    calendar        => 'IUP::Calendar',          # https://webserver2.tecgraf.puc-rio.br/iup/en/elem/iupcalendar.html
    canvas          => 'IUP::Canvas',
    cbox            => 'IUP::Cbox',
    cells           => 'IUP::Cells',
    clipboard       => 'IUP::Clipboard',
    colorbar        => 'IUP::ColorBar',

 view all matches for this distribution


Icon-FamFamFam-Silk

 view release on metacpan or  search on metacpan

lib/Icon/FamFamFam/Silk.pm  view on Meta::CPAN

calculator_add=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAImSURBVDjLjZLda9JRGMf3b3TTdTcFXXXRTbeDIijo5W7GmtWqCysIF1JM9DfffvMN+fk284UpKqRIMCfIDCO7kNSRooJvOBUvgkFEKPv2O8+WsWmtB...
calculator_delete=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJGSURBVDjLjZLda5JhGMYN3R9QRxF04EEnQf9AR1HtLE86aNFhSVtsdWCjLQMLjNd3bmp+IWqa+UGKGikGswyZy8oiQ4UUXfk1pya0k9YHilfv81...
calculator_edit=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKRSURBVDjLhZHfT1JhHMb9F7ptXXXR2lw/Llp3blnNZauLtmwtp15oWsu6oJZ5bKyFQiGIEIRIKoEsJtikWM1JmiQhtpieo3ISUoEINiJNE2SgT5x3...
calculator_error=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJtSURBVDjLhVPfS1NRHP/ce91wW9MZrjLLKCNxTEgcG9FLj0EgmbApPfQHBEHsL9B6CnrpRcQeQpIiWgwjlN42X3Kza7nKGEXRxFpMhVq7uz/OvZ1...
calculator_link=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJlSURBVDjLhZPfa5JhFMcH3dX/Meiuv8CBoRdjIvOieRUYmjkzmBaowXCbU9E5U5KhtmX7QbrpyF3UuhDRVFoXgnrhmJO2CSFELaIYw7FvzznU+uGq...
calendar=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAI1SURBVDjLpZPNS5RRFIef98NRG3M05gOaqMhCAoskEFtVO2kT5DZo1SZoW9EiFGrVok1/QhRGmlHYJoQy8wuJIoLQ0iH8nCGcMmzm3ntOi1edWbQJLxzOPZv...
calendar_add=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJlSURBVDjLpZNbaM9hGMc/v8NsTqF2yMhZKIexmpFyRZIiblwouZDauLYoTVEryg2uXIoIOUU5zJkh4e9QDmtJbWxrbUzz/72/9/m6+P3HLslbT9/3ufm...
calendar_delete=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ4SURBVDjLpZNdaM1xGMc//5fDZqTZ2c6Y9mIkmZelll2hlCVF3FDKlZRyQWJXmsKNCzeLcqdE5D0mL/M2s6HlJSlhs2Rv51iYOZ3z+/2ex8X/zHZJ...
calendar_edit=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKbSURBVDjLpZNLbIxRGIaf/9Lfpa1rZ0hNtYpEVRBiNkUiEZFoKjSxQmLBglizIQiJILEgWHQlgkpLGg1BU6E3imorLkElLmOmM1XV6mXm/8/5LH5GI7...
calendar_link=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKtSURBVDjLpZPrT5JRHMfdetn/4evet3QrhGayZathrbwNppMU8ckFONEhoiGFeMNL4o3yBoi37lQQ89rYypaLIitTQVSUWKC9+Haeg5P5svXi+5zf7/...
calendar_view_day=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHOSURBVDjLpZOxa1RBEIe/d/e8FKeFEA2IGBWCICZYBSESBCFglUDSCJZaRBBbK1HQ0s4/QQlCgoKdoBA9sVBshCBETCNRiUUg5PDt7MxY7HuXdx...
calendar_view_month=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHlSURBVDjLpVPLShxBFD3T3WOUUUGYByhkI+50o6Bmo3ErAVG3Qvb5giyThets8gmC+DYQzEaGBMUnBhQRJAEXQuZJ8Mlodz28t6rbGY2b4IXq...
calendar_view_week=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAFySURBVDjLpZM9a1RhEIWf7C6mWASLSEBsbUWb/AdrW8HKRrC3EgWttbCzUgQRtRK0ERVEm/Q2aiPoBtJEosZ7Z+Yci3tvdosgKxkY5m3eZ77Or...
camera=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIrSURBVDjLxVPLjhJBFD3V3dCYSZjwDipDRjCOCcTgLGalJmxYufAD0E/QHV9g3LjSsGDhik/QjTEaTdgaEsQQINEFJjwEecmr6Yf3lkJmPwsruXWrq+85dc+9V...
camera_add=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKySURBVDjLpVNfSFNRGP+de++2a66Fm3PNdKArUnCaiSijPzCR6qGg3i2itygQetDHXiIf6qWaYBA9+BL0EGhPlZUwQoQo1mpsAxss1Klzc3O72527t+9cU...
camera_delete=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKvSURBVDjLpVNNTxNRFD1vZtoZICkyhdYilFQ0QKSayoJEoyY10UTjgh0LUXcuJW5wSYwfG1caNCxY8RPQxOBHEDEkREJSS2qpIKHWllLol+10pp0Z3x...
camera_edit=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAL6SURBVDjLpVNLaFNBFD3zvtHUpEnaJIhNm6aaVhtKqtWFqBDUgJ+CC11ZqyCKq7oQshdEEReiFCnaVTdFcSF2I8Uv9QPWD2lKmqpVqW1f09CXNP+X5D3n...
camera_error=>'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAALVSURBVDjLpVO7T1NRGP/dR18iF+iTQktEkHdDCjHgIGAX40AMMhrkD3AxcWBxMnExTigDPhYJcdFFHHxEo5HBVKlaCk1bFJJiaQuhpbS0ve29x3Ov0ji...

 view all matches for this distribution


Icon-Theme-Helper

 view release on metacpan or  search on metacpan

lib/Icon/Theme/Helper.pm  view on Meta::CPAN

		if (defined($icon)) {
			return $icon;
		}
	}

	#checks it for a calendar
	if ($mimetype =~ /calendar/) {
		$icon=$self->getIcon('MimeTypes', 'calendar');
		if (defined($icon)) {
			return $icon;
		}
	}
	if ($mimetype =~ /calendar/) {
		$icon=$self->getIcon('MimeTypes', 'stock_calendar');
		if (defined($icon)) {
			return $icon;
		}
	}
	if ($mimetype =~ /calendar/) {
		$icon=$self->getIcon('MimeTypes', 'x-office-calendar');
		if (defined($icon)) {
			return $icon;
		}
	}

 view all matches for this distribution


IkiWiki-Plugin-syntax

 view release on metacpan or  search on metacpan

examples/plugin-info.html  view on Meta::CPAN

            <TD>C</TD>
        </TR>

        
        <TR>
            <TD>calendar</TD>
            <TD></TD>
            <TD>calendar(1) input file</TD>
        </TR>

        
        <TR>
            <TD>catalog</TD>

 view all matches for this distribution


Image-CCV

 view release on metacpan or  search on metacpan

ccv-src/lib/3rdparty/sqlite3/sqlite3.c  view on Meta::CPAN

** All other code has file scope.
**
** SQLite processes all times and dates as Julian Day numbers.  The
** dates and times are stored as the number of days since noon
** in Greenwich on November 24, 4714 B.C. according to the Gregorian
** calendar system. 
**
** 1970-01-01 00:00:00 is JD 2440587.5
** 2000-01-01 00:00:00 is JD 2451544.5
**
** This implemention requires years to be expressed as a 4-digit number
** which means that only dates between 0000-01-01 and 9999-12-31 can
** be represented, even though julian day numbers allow a much wider
** range of dates.
**
** The Gregorian calendar system is used for all dates and times,
** even those that predate the Gregorian calendar.  Historians usually
** use the Julian calendar for dates prior to 1582-10-15 and for some
** dates afterwards, depending on locale.  Beware of this difference.
**
** The conversion algorithms are implemented based on descriptions
** in the following text:
**

ccv-src/lib/3rdparty/sqlite3/sqlite3.c  view on Meta::CPAN

  return 0;
}

/*
** Convert from YYYY-MM-DD HH:MM:SS to julian day.  We always assume
** that the YYYY-MM-DD is according to the Gregorian calendar.
**
** Reference:  Meeus page 61
*/
static void computeJD(DateTime *p){
  int Y, M, D, A, B, X1, X2;

ccv-src/lib/3rdparty/sqlite3/sqlite3.c  view on Meta::CPAN

/*
** Find the current time (in Universal Coordinated Time).  Write into *piNow
** the current time and date as a Julian Day number times 86_400_000.  In
** other words, write into *piNow the number of milliseconds since the Julian
** epoch of noon in Greenwich on November 24, 4714 B.C according to the
** proleptic Gregorian calendar.
**
** On success, return SQLITE_OK.  Return SQLITE_ERROR if the time and date 
** cannot be found.
*/
static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){

ccv-src/lib/3rdparty/sqlite3/sqlite3.c  view on Meta::CPAN

/*
** Find the current time (in Universal Coordinated Time).  Write into *piNow
** the current time and date as a Julian Day number times 86_400_000.  In
** other words, write into *piNow the number of milliseconds since the Julian
** epoch of noon in Greenwich on November 24, 4714 B.C according to the
** proleptic Gregorian calendar.
**
** On success, return SQLITE_OK.  Return SQLITE_ERROR if the time and date 
** cannot be found.
*/
static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){

 view all matches for this distribution


Image-CairoSVG

 view release on metacpan or  search on metacpan

lib/Image/CairoSVG.pod  view on Meta::CPAN


<table>
<tr>
<td>
<img height="250"
     src="https://benkasminbullock.github.io/supertinyiconscairosvg//svg/calendar.svg"
     width="250">
</td>

<td>
<img height="250"
     src="https://benkasminbullock.github.io/supertinyiconscairosvg//png/calendar.png"
     width="250">
</td>
</tr>

<tr>

 view all matches for this distribution


Image-EXIF-DateTime-Parser

 view release on metacpan or  search on metacpan

lib/Image/EXIF/DateTime/Parser.pm  view on Meta::CPAN


While parsing standards-compliant EXIF Date/Time string is easy, allowing for
the various ways different non-standards-compliant implementations mangle these
strings is neither easy nor pleasant. This module encapsulates this complexity
for you. It provides a parser which takes an EXIF Date/Time string and returns
time in "calendar time" format, aka. time_t.

=head2 EXPORTS

Nothing.

lib/Image/EXIF/DateTime/Parser.pm  view on Meta::CPAN

=head1 SECURITY

The module untaints the input string and passes the numbers (and spaces in some
cases) as arguments to POSIX::mktime. Thus as long as mktime can deal with
numbers and/or spaces on its input, the worst that can happen is that an
invalid date/time string will produce a surprising calendar time value or an
undef.

=head1 CAVEATS

=head2 Non-canonical time strings

 view all matches for this distribution


Image-ExifTool

 view release on metacpan or  search on metacpan

lib/Image/ExifTool.pm  view on Meta::CPAN

    HDP  => 'image/vnd.ms-photo',
    HDR  => 'image/vnd.radiance',
    HTML => 'text/html',
    ICC  => 'application/vnd.iccprofile',
    ICO  => 'image/x-icon', #PH (NC)
    ICS  => 'text/calendar',
    IDML => 'application/vnd.adobe.indesign-idml-package',
    IIQ  => 'image/x-raw',
    IND  => 'application/x-indesign',
    INX  => 'application/x-indesign-interchange', #PH (NC)
    ISO  => 'application/x-iso9660-image',

 view all matches for this distribution


Image-Magick-CommandParser

 view release on metacpan or  search on metacpan

data/convert.list.txt  view on Meta::CPAN

	message/rfc822              email message
	message/rfc822              email message
	message/rfc822              email message
	message/x-gnu-rmail         GNU mail message
	model/vrml                  VRML document
	text/calendar               vCalendar/iCalendar
	text/calendar               vCalendar/iCalendar
	text/calendar               vCalendar/iCalendar
	text/calendar               vCalendar/iCalendar
	text/css                    Cascading Style Sheets
	text/css                    Cascading Style Sheets
	text/csv                    CSV document
	text/directory              Electronic Business Card
	text/directory              Electronic Business Card

 view all matches for this distribution


JOAP

 view release on metacpan or  search on metacpan

JOAP/Types.pod  view on Meta::CPAN

represents true.

=item 'dateTime.iso8601'

A string representation for a date/time combination in the gregorian
calendar. The format is very specific, as follows:

    YYYY-MM-DDTHH:MM:SS[.ffff]TZ

Here, YYYY is the four-digit year (actually, the year can be greater
than four digits, or negative). MM is the 2-digit month of the year,

 view all matches for this distribution


JQuery

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

#lib/JQuery/jquery_js/plugins/openajax/lib/jQuery/OpenAjax.js
#lib/JQuery/jquery_js/plugins/openajax/META.json
#lib/JQuery/jquery_js/plugins/compat-1.0/jquery.compat-1.0.js
lib/JQuery/jquery_js/plugins/datePicker/datePicker_source.js
#lib/JQuery/jquery_js/plugins/datePicker/demo/jquery-1.1.js
#lib/JQuery/jquery_js/plugins/datePicker/demo/calendar.png
#lib/JQuery/jquery_js/plugins/datePicker/demo/jquery.js
#lib/JQuery/jquery_js/plugins/datePicker/demo/datePicker.js
#lib/JQuery/jquery_js/plugins/datePicker/demo/index.html
#lib/JQuery/jquery_js/plugins/datePicker/demo/styles.css
lib/JQuery/jquery_js/plugins/format/jquery.format.pack.js

 view all matches for this distribution


JS-YUI-Loader

 view release on metacpan or  search on metacpan

lib/JS/YUI/Loader.pm  view on Meta::CPAN


=head2 button

Button Control (widget)

=head2 calendar

Calendar Control (widget)

=head2 charts

 view all matches for this distribution


JSCalendar-Duration

 view release on metacpan or  search on metacpan

lib/JSCalendar/Duration.pm  view on Meta::CPAN

  my $duration = seconds_to_duration('86400');

=head1 DESCRIPTION

This module converts between a duration of time as specified by seconds and
a JSCalendar duration (L<https://tools.ietf.org/html/draft-ietf-calext-jscalendar-00#section-3.2.3>).

=head1 PERL VERSION

This module should work on any version of perl still receiving updates from
the Perl 5 Porters.  This means it should work on any version of perl released

lib/JSCalendar/Duration.pm  view on Meta::CPAN


=head1 SEE ALSO

=over 4

=item L<https://tools.ietf.org/html/draft-ietf-calext-jscalendar-00#section-3.2.3>

The JSCalendar duration spec.

=back

lib/JSCalendar/Duration.pm  view on Meta::CPAN

#pod   my $duration = seconds_to_duration('86400');
#pod
#pod =head1 DESCRIPTION
#pod
#pod This module converts between a duration of time as specified by seconds and
#pod a JSCalendar duration (L<https://tools.ietf.org/html/draft-ietf-calext-jscalendar-00#section-3.2.3>).
#pod
#pod =head1 EXPORTS
#pod
#pod =head2 seconds_to_duration
#pod

lib/JSCalendar/Duration.pm  view on Meta::CPAN

#pod
#pod =head1 SEE ALSO
#pod
#pod =over 4
#pod
#pod =item L<https://tools.ietf.org/html/draft-ietf-calext-jscalendar-00#section-3.2.3>
#pod
#pod The JSCalendar duration spec.
#pod
#pod =back
#pod

 view all matches for this distribution


JSON-Feed

 view release on metacpan or  search on metacpan

t/data/therecord.json  view on Meta::CPAN

    {
      "title": "Special #2 - Brent Simmons",
      "date_published": "2014-05-29T05:00:00-07:00",
      "id": "http://therecord.co/2014/05/29/brent_simmons",
      "url": "http://therecord.co/2014/05/29/brent_simmons",
      "content_html": "<p>This episode was recorded 26 May 2014 live and in person at Brent’s office in sunny, lovely Ballard.</p>\n\n<p>You can <a href=\"http://therecord.co/downloads/TheRecord-sp1e2-BrentSimmons.m4a\">download the m4a file</a> or...
      "attachments": [
        {
          "url": "http://therecord.co/downloads/TheRecord-sp1e2-BrentSimmons.m4a",
          "mime_type": "audio/x-m4a",
          "size_in_bytes": 75344101

t/data/therecord.json  view on Meta::CPAN

    {
      "title": "Special #1 - Chris Parrish",
      "date_published": "2014-05-09T05:30:00-07:00",
      "id": "http://therecord.co/2014/05/09/chris_parrish",
      "url": "http://therecord.co/2014/05/09/chris_parrish",
      "content_html": "<p>This episode was recorded 6 May 2014 live and in person at Brent’s office in lovely, sunny Ballard.</p>\n\n<p>You can <a href=\"http://therecord.co/downloads/TheRecord-sp1e1-ChrisParrish.m4a\">download the m4a file</a> or ...
      "attachments": [
        {
          "url": "http://therecord.co/downloads/TheRecord-sp1e1-ChrisParrish.m4a",
          "mime_type": "audio/x-m4a",
          "size_in_bytes": 89970236

t/data/therecord.json  view on Meta::CPAN

    {
      "title": "Seattle Before the iPhone #8 - Nathaniel Irons",
      "date_published": "2014-04-11T10:45:00-08:00",
      "id": "http://therecord.co/2014/04/11/nat_irons",
      "url": "http://therecord.co/2014/04/11/nat_irons",
      "content_html": "<p>This episode was recorded 16 May 2013 live and in person at <a href=\"http://www.omnigroup.com/\">Omni’s</a> lovely offices overlooking Lake Union in Seattle.</p>\n\n<p>You can <a href=\"http://therecord.co/downloads/TheRe...
      "attachments": [
        {
          "url": "http://therecord.co/downloads/TheRecord-s1e8-NatIrons.m4a",
          "mime_type": "audio/x-m4a",
          "size_in_bytes": 57712499

 view all matches for this distribution


JaM

 view release on metacpan or  search on metacpan

lib/JaM/mime.types  view on Meta::CPAN

multipart/parallel
multipart/related
multipart/report
multipart/signed
multipart/voice-message
text/calendar
text/css			css
text/directory
text/enriched
text/html			html htm
text/plain			asc txt

 view all matches for this distribution


Java-JCR

 view release on metacpan or  search on metacpan

lib/Java/JCR/Calendar.pm  view on Meta::CPAN


If no time zone is specified during deflation, Java will be told to assume the default time zone. The default is generally the local time zone, but may vary depending upon your JVM configuration.

=item locale

I'm not certain if this is actually significant to how the JCR stores a calendar object, but I've included it for completeness (and it doesn't require much in the way of extra effort either way).

The locale must be specified using the ISO-639 and ISO-3166 standards with the possiblity of vendor or browser-specific variant codes. See the Javadoc for C<java.util.Locale> if you want more specific details.

If no locale is specified during deflation, the default Java locale will be used.

lib/Java/JCR/Calendar.pm  view on Meta::CPAN


The hash given to the inflation function will always have this value set to false. However, your inflation function may be as lenient or strict as desired. The Calendar implementation on your JVM should return valid dates, so it shouldn't be an issue...

=back

All dates are, obviously, according to the Gregorian calendar, which is due to the fact that the Calendar API of Java only fully supports Gregorian-style calendars. However, since we're using Perl, we're not limited to that calendar. If you want to, ...

The inflation function, C<\&inflater>, can expect a single argument, which is the hash (as described above), containing all the above fields filled. The inflation function must return an object of the specified class, C<$class>, or throw an exception...

During inflation, the hash will be created by reading in the fields set on the C<java.util.Calendar> object returned by the JCR.

lib/Java/JCR/Calendar.pm  view on Meta::CPAN

    return !defined $class                    ? 0
         :  defined $date_conversions{$class} ? 1
         :                                      0;
}

sub _perl_date_to_java_calendar {
    my ($date) = @_;

    my $class = blessed $date;

    croak 'Cannot use an unblessed date object' if not defined $class;

lib/Java/JCR/Calendar.pm  view on Meta::CPAN


    my $conversion = $date_conversions{$class};

    my $deflater = $conversion->{deflater};

    return Java::JCR::JavaUtils::hash_to_calendar($deflater->($date));
}

sub _java_calendar_to_perl_date {
    my ($calendar, $class) = @_;

    $class ||= $default_date_class;

    croak 'Cannot convert date from Java to Perl: ',
          'No date class was given and no default is available.'

lib/Java/JCR/Calendar.pm  view on Meta::CPAN


    my $conversion = $date_conversions{$class};

    my $inflater = $conversion->{inflater};

    return $inflater->(Java::JCR::JavaUtils::calendar_to_hash($calendar));
}

eval 'use DateTime';
if (!$@) {
    __PACKAGE__->register_date_conversion(

 view all matches for this distribution


JavaScript-ExtJS-V3

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

share/ext-3.4.1/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-top-bg.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/panel/panel-default-framed-corners.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/panel/panel-default-framed-sides.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/progress/progress-default-bg.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/blue-loading.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/calendar.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/glass-bg.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/hd-sprite.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/icon-error.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/icon-info.gif
share/ext-3.4.1/docs/extjs/resources/themes/images/default/shared/icon-question.gif

MANIFEST  view on Meta::CPAN

share/ext-3.4.1/examples/button/buttons.html
share/ext-3.4.1/examples/button/buttons.js
share/ext-3.4.1/examples/button/images/add.gif
share/ext-3.4.1/examples/button/images/add16.gif
share/ext-3.4.1/examples/button/images/add24.gif
share/ext-3.4.1/examples/calendar/app/calendar-list.js
share/ext-3.4.1/examples/calendar/app/event-list.js
share/ext-3.4.1/examples/calendar/app/test-app.js
share/ext-3.4.1/examples/calendar/calendar-all-debug.js
share/ext-3.4.1/examples/calendar/calendar-all.js
share/ext-3.4.1/examples/calendar/index.html
share/ext-3.4.1/examples/calendar/resources/css/calendar.css
share/ext-3.4.1/examples/calendar/resources/css/examples.css
share/ext-3.4.1/examples/calendar/resources/images/default/arrow.gif
share/ext-3.4.1/examples/calendar/resources/images/default/bg.gif
share/ext-3.4.1/examples/calendar/resources/images/default/calendar-sprites.gif
share/ext-3.4.1/examples/calendar/resources/images/default/ext-cal-edit-hd.png
share/ext-3.4.1/examples/calendar/resources/images/default/page-next.gif
share/ext-3.4.1/examples/calendar/resources/images/default/page-prev.gif
share/ext-3.4.1/examples/calendar/src/CalendarPanel.js
share/ext-3.4.1/examples/calendar/src/EventEditForm.js
share/ext-3.4.1/examples/calendar/src/EventEditWindow.js
share/ext-3.4.1/examples/calendar/src/EventRecord.js
share/ext-3.4.1/examples/calendar/src/Ext.calendar.js
share/ext-3.4.1/examples/calendar/src/WeekEventRenderer.js
share/ext-3.4.1/examples/calendar/src/dd/CalendarDD.js
share/ext-3.4.1/examples/calendar/src/dd/CalendarScrollManager.js
share/ext-3.4.1/examples/calendar/src/dd/DayViewDD.js
share/ext-3.4.1/examples/calendar/src/dd/StatusProxy.js
share/ext-3.4.1/examples/calendar/src/templates/BoxLayoutTemplate.js
share/ext-3.4.1/examples/calendar/src/templates/DayBodyTemplate.js
share/ext-3.4.1/examples/calendar/src/templates/DayHeaderTemplate.js
share/ext-3.4.1/examples/calendar/src/templates/DayViewTemplate.js
share/ext-3.4.1/examples/calendar/src/templates/MonthViewTemplate.js
share/ext-3.4.1/examples/calendar/src/views/CalendarView.js
share/ext-3.4.1/examples/calendar/src/views/DayBodyView.js
share/ext-3.4.1/examples/calendar/src/views/DayHeaderView.js
share/ext-3.4.1/examples/calendar/src/views/DayView.js
share/ext-3.4.1/examples/calendar/src/views/MonthDayDetailView.js
share/ext-3.4.1/examples/calendar/src/views/MonthView.js
share/ext-3.4.1/examples/calendar/src/views/WeekView.js
share/ext-3.4.1/examples/calendar/src/widgets/CalendarPicker.js
share/ext-3.4.1/examples/calendar/src/widgets/DateRangeField.js
share/ext-3.4.1/examples/calendar/src/widgets/ReminderField.js
share/ext-3.4.1/examples/chart/bar.gif
share/ext-3.4.1/examples/chart/chart.gif
share/ext-3.4.1/examples/chart/charts.html
share/ext-3.4.1/examples/chart/charts.js
share/ext-3.4.1/examples/chart/pie-chart.html

MANIFEST  view on Meta::CPAN

share/ext-3.4.1/examples/shared/screens/anchor.gif
share/ext-3.4.1/examples/shared/screens/animated-dataview.png
share/ext-3.4.1/examples/shared/screens/blank.gif
share/ext-3.4.1/examples/shared/screens/border-layout.gif
share/ext-3.4.1/examples/shared/screens/buttons.gif
share/ext-3.4.1/examples/shared/screens/calendar.gif
share/ext-3.4.1/examples/shared/screens/chart-pie.gif
share/ext-3.4.1/examples/shared/screens/chart-reload.gif
share/ext-3.4.1/examples/shared/screens/chart-stacked.gif
share/ext-3.4.1/examples/shared/screens/charts.gif
share/ext-3.4.1/examples/shared/screens/chooser.gif

MANIFEST  view on Meta::CPAN

share/ext-3.4.1/resources/images/default/s.gif
share/ext-3.4.1/resources/images/default/shadow-c.png
share/ext-3.4.1/resources/images/default/shadow-lr.png
share/ext-3.4.1/resources/images/default/shadow.png
share/ext-3.4.1/resources/images/default/shared/blue-loading.gif
share/ext-3.4.1/resources/images/default/shared/calendar.gif
share/ext-3.4.1/resources/images/default/shared/glass-bg.gif
share/ext-3.4.1/resources/images/default/shared/hd-sprite.gif
share/ext-3.4.1/resources/images/default/shared/large-loading.gif
share/ext-3.4.1/resources/images/default/shared/left-btn.gif
share/ext-3.4.1/resources/images/default/shared/loading-balls.gif

MANIFEST  view on Meta::CPAN

share/ext-3.4.1/resources/images/yourtheme/s.gif
share/ext-3.4.1/resources/images/yourtheme/shadow-c.png
share/ext-3.4.1/resources/images/yourtheme/shadow-lr.png
share/ext-3.4.1/resources/images/yourtheme/shadow.png
share/ext-3.4.1/resources/images/yourtheme/shared/blue-loading.gif
share/ext-3.4.1/resources/images/yourtheme/shared/calendar.gif
share/ext-3.4.1/resources/images/yourtheme/shared/glass-bg.gif
share/ext-3.4.1/resources/images/yourtheme/shared/hd-sprite.gif
share/ext-3.4.1/resources/images/yourtheme/shared/large-loading.gif
share/ext-3.4.1/resources/images/yourtheme/shared/left-btn.gif
share/ext-3.4.1/resources/images/yourtheme/shared/loading-balls.gif

 view all matches for this distribution


( run in 0.690 second using v1.01-cache-2.11-cpan-c333fce770f )