view release on metacpan or search on metacpan
lib/ACME/MSDN/SPUtility.pm view on Meta::CPAN
This is a Implementation of part of MSDN SPUtility.
L<http://msdn.microsoft.com/en-us/library/ms441219.aspx>
This module does the following things:
Checks whether the Taiwan calendar is hidden based on the specified Web site and locale ID.
Checks if the China Gov really Lost Their Brain based on the specified Web site and locale ID.
Checks if Bill-GAY$ and his 'Stuffz' lost thier Balls at Halloween based on the specified Web site and locale ID.
	use ACME::MSDN::SPUtility;
lib/ACME/MSDN/SPUtility.pm view on Meta::CPAN
	return $self;
}
=head2 HideTaiwan
Checks whether the Taiwan calendar is hidden based on the specified Web site and locale ID.
=cut
sub HideTaiwan {
	my $self = shift;
view release on metacpan or search on metacpan
t/data/python_quotes.txt view on Meta::CPAN
    "The Mayans looked on the integers as gods."
    "What did the Mayans think of integer division?"
      -- Ivan Van Laningham and an unknown audience member at IPC7
Y2K problem? The Mayans didn't have a *millennium*-2K problem!
      -- Eric S. Raymond at IPC7, on learning that the Mayan calendar takes
         28 octillion years to wrap around
"Generic identifier" -- think about it too much and your head explodes.
      -- Sean McGrath at IPC7, discussing SGML terminology
view release on metacpan or search on metacpan
lib/API/Basecamp.pm view on Meta::CPAN
The attachments method returns a new instance representative of the API
I<Attachments> resource requested. This method accepts a list of path
segments which will be used in the HTTP request. The following documentation
can be used to find more information. L<https://github.com/basecamp/bcx-api/blob/master/sections/attachments.md>.
=head2 calendar_events
    $basecamp->calendar_events;
The calendar_events method returns a new instance representative of the API
I<Calendar Events> resource requested. This method accepts a list of path
segments which will be used in the HTTP request. The following documentation
can be used to find more information. L<https://github.com/basecamp/bcx-api/blob/master/sections/calendar_events.md>.
=head2 calendars
    $basecamp->calendars;
The calendars method returns a new instance representative of the API
I<Calendars> resource requested. This method accepts a list of path
segments which will be used in the HTTP request. The following documentation
can be used to find more information. L<https://github.com/basecamp/bcx-api/blob/master/sections/calendars.md>.
=head2 comments
    $basecamp->projects('605816632')->comments;
view release on metacpan or search on metacpan
lib/API/Google.pm view on Meta::CPAN
    
    $gapi->refresh_access_token_silent('someuser@gmail.com');
    
    $gapi->api_query({ 
      method => 'post', 
      route => 'https://www.googleapis.com/calendar/v3/calendars/'.$calendar_id.'/events',
      user => 'someuser@gmail.com'
    }, $json_payload_if_post);
=head1 CONFIGURATION
lib/API/Google.pm view on Meta::CPAN
=head2 build_http_transaction 
$gapi->build_http_transaction({ 
  user => 'someuser@gmail.com',
  method => 'post',
  route => 'https://www.googleapis.com/calendar/users/me/calendarList',
  payload => { key => value }
})
=head2 api_query
lib/API/Google.pm view on Meta::CPAN
Examples of usage:
  $gapi->api_query({ 
      method => 'get', 
      route => 'https://www.googleapis.com/calendar/users/me/calendarList'',
      user => 'someuser@gmail.com'
    });
  $gapi->api_query({ 
      method => 'post', 
      route => 'https://www.googleapis.com/calendar/v3/calendars/'.$calendar_id.'/events',
      user => 'someuser@gmail.com'
  }, $json_payload_if_post);
=head1 AUTHOR
view release on metacpan or search on metacpan
html/manual/ars_DateToJulianDate.html view on Meta::CPAN
    <h2>
      <code>ars_DateToJulianDate(control, year, month, day)</code>
    </h2>
    <p>
      Converts a year, month, and day value to a Julian date. The Julian date is the number of days
      since noon, Universal Time, on January 1, 4713 BCE (on the Julian calendar). The changeover
      from the Julian calendar to the Gregorian calendar occurred in October, 1582. The Julian
      calendar is used for dates on or before October 4, 1582. The Gregorian calendar is used for
      dates on or after October 15, 1582.
    </p>
    <dl>
      <dt class="c1">
        On success
view release on metacpan or search on metacpan
applications/htmlroot/CalendarPopup.js view on Meta::CPAN
// to the URL instead.
// Please DO NOT link directly to my .js files from your site. Copy
// the files to your server and use them there. Thank you.
// ===================================================================
function CalendarPopup(){var c;if(arguments.length>0){c = new PopupWindow(arguments[0]);}else{c = new PopupWindow();c.setSize(150,175);}c.offsetX = -152;c.offsetY = 25;c.autoHide();c.monthNames = new Array("January","February","March","April","May","...
function CP_copyMonthNamesToWindow(){if(typeof(window.MONTH_NAMES)!="undefined" && window.MONTH_NAMES!=null){window.MONTH_NAMES = new Array();for(var i=0;i<this.monthNames.length;i++){window.MONTH_NAMES[window.MONTH_NAMES.length] = this.monthNames[i]...
function CP_tmpReturnFunction(y,m,d){if(window.CP_targetInput!=null){var dt = new Date(y,m-1,d,0,0,0);if(window.CP_calendarObject!=null){window.CP_calendarObject.copyMonthNamesToWindow();}window.CP_targetInput.value = formatDate(dt,window.CP_dateForm...
function CP_tmpReturnMonthFunction(y,m){alert('Use setReturnMonthFunction() to define which function will get the clicked results!\nYou clicked: year='+y+' , month='+m);}
function CP_tmpReturnQuarterFunction(y,q){alert('Use setReturnQuarterFunction() to define which function will get the clicked results!\nYou clicked: year='+y+' , quarter='+q);}
function CP_tmpReturnYearFunction(y){alert('Use setReturnYearFunction() to define which function will get the clicked results!\nYou clicked: year='+y);}
function CP_setReturnFunction(name){this.returnFunction = name;}
function CP_setReturnMonthFunction(name){this.returnMonthFunction = name;}
applications/htmlroot/CalendarPopup.js view on Meta::CPAN
function CP_showNavigationDropdowns(){this.isShowNavigationDropdowns =(arguments.length>0)?arguments[0]:true;}
function CP_showYearNavigationInput(){this.isShowYearNavigationInput =(arguments.length>0)?arguments[0]:true;}
function CP_hideCalendar(){if(arguments.length > 0){window.popupWindowObjects[arguments[0]].hidePopup();}else{this.hidePopup();}}
function CP_refreshCalendar(index){var calObject = window.popupWindowObjects[index];if(arguments.length>1){calObject.populate(calObject.getCalendar(arguments[1],arguments[2],arguments[3],arguments[4],arguments[5]));}else{calObject.populate(calObject....
function CP_showCalendar(anchorname){if(arguments.length>1){if(arguments[1]==null||arguments[1]==""){this.currentDate=new Date();}else{this.currentDate=new Date(parseDate(arguments[1]));}}this.populate(this.getCalendar());this.showPopup(anchorname);}
function CP_select(inputobj, linkname, format){var selectedDate=(arguments.length>3)?arguments[3]:null;if(!window.getDateFromFormat){alert("calendar.select: To use this method you must also include 'date.js' for date formatting");return;}if(this.disp...
function getCalendarStyles(){var result = "";var p = "";if(this!=null && typeof(this.cssPrefix)!="undefined" && this.cssPrefix!=null && this.cssPrefix!=""){p=this.cssPrefix;}result += "<STYLE>\n";result += "."+p+"cpYearNavigation,."+p+"cpMonthNavigat...
function CP_getCalendar(){var now = new Date();if(this.type == "WINDOW"){var windowref = "window.opener.";}else{var windowref = "";}var result = "";if(this.type == "WINDOW"){result += "<HTML><HEAD><TITLE>Calendar</TITLE>"+this.getStyles()+"</HEAD><BO...
view release on metacpan or search on metacpan
acelib/timesubs.c view on Meta::CPAN
  timeStruct (&ts2, t2, &wantMonth2, &wantDay2, &wantHours2, &wantMins2, &wantSecs2) ;
  if (!wantDay1 || !wantDay2)
    return FALSE ;
  ts1.tm_sec = ts2.tm_sec = 0 ;	/* zero hours:mins:secs so get calendar days */
  ts1.tm_min = ts2.tm_min = 0 ;
  ts1.tm_hour = ts2.tm_hour = 0 ;
  d = difftime (mktime (&ts2), mktime (&ts1)) ;
view release on metacpan or search on metacpan
lib/Acme/CPANLists/Import/PERLANCAR/Advent/2014.pm view on Meta::CPAN
package Acme::CPANLists::Import::PERLANCAR::Advent::2014;
our $DATE = '2016-11-07'; # DATE
our $VERSION = '0.001'; # VERSION
our @Module_Lists = ({description=>"This list is generated by extracting module names mentioned in [http://blogs.perl.org/users/perlancar/2014/12/perlancars-2014-advent-calendar.html] (retrieved on 2016-11-07). Visit the URL for the full contents.",e...
1;
# ABSTRACT: Modules mentioned in PERLANCAR's 2014 advent calendar article series
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::CPANLists::Import::PERLANCAR::Advent::2014 - Modules mentioned in PERLANCAR's 2014 advent calendar article series
=head1 VERSION
This document describes version 0.001 of Acme::CPANLists::Import::PERLANCAR::Advent::2014 (from Perl distribution Acme-CPANLists-Import-PERLANCAR-Advent-2014), released on 2016-11-07.
=head1 DESCRIPTION
This module is generated by extracting module names mentioned in L<http://blogs.perl.org/users/perlancar/2014/12/perlancars-2014-advent-calendar.html> (retrieved on 2016-11-07). Visit the URL for the full contents.
=head1 MODULE LISTS
=head2 Modules mentioned in PERLANCAR's 2014 advent calendar article series
This list is generated by extracting module names mentioned in [http://blogs.perl.org/users/perlancar/2014/12/perlancars-2014-advent-calendar.html] (retrieved on 2016-11-07). Visit the URL for the full contents.
=over
=item * L<JSON::Path>
view release on metacpan or search on metacpan
lib/Acme/CPANModules/Import/CPANRatings/User/perlancar.pm view on Meta::CPAN
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-29'; # DATE
our $DIST = 'Acme-CPANModules-Import-CPANRatings-User-perlancar'; # DIST
our $VERSION = '0.002'; # VERSION
our $LIST = {description=>"This list is generated by scraping CPANRatings (cpanratings.perl.org) user page.",entries=>[{description=>"\nI'm not sure this really "befits a ::Tiny distribution" just because it's a thin wrapper of something. P...
1;
# ABSTRACT: List of modules mentioned by CPANRatings user perlancar
__END__
lib/Acme/CPANModules/Import/CPANRatings/User/perlancar.pm view on Meta::CPAN
Author: L<JONASBN|https://metacpan.org/author/JONASBN>
The idea is good, but a couple of things prevents me from using this interface.
<br><br>First, the use of TryCatch (which brings the Moose ecosystem) makes the startup overhead too high for my taste (about 0.5s on my PC). Which is rather unfortunate because Date::Holidays itself does not use Moose.
<br><br>Second, the interface assumes that a country has a single set of holidays, which is too restrictive in some cases. A more flexible/general interface would allow adding more calendars based not only on country but also religion, special commun...
<br>
=item L<Furl>
view release on metacpan or search on metacpan
lib/Acme/CPANModules/Import/CPANRatings/User/stevenharyanto.pm view on Meta::CPAN
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-29'; # DATE
our $DIST = 'Acme-CPANModules-Import-CPANRatings-User-stevenharyanto'; # DIST
our $VERSION = '0.002'; # VERSION
our $LIST = {description=>"This list is generated by scraping CPANRatings (cpanratings.perl.org) user page.",entries=>[{description=>"\n(REMOVED)\n",module=>"Log::Any",rating=>undef},{description=>"\nProvides a thin/lightweight OO interface for \$?, ...
1;
# ABSTRACT: List of modules mentioned by CPANRatings user stevenharyanto
__END__
lib/Acme/CPANModules/Import/CPANRatings/User/stevenharyanto.pm view on Meta::CPAN
As an alternative, one can also do:
<br><br>alias d='
<br><br>TZ=UTC date; # show date in UTC
<br><br>date       ; # show date in local timezone
<br><br>cal -3     ; # show monthly calendar for curmon-1, curmon, curmon+1
<br>
'
<br><br>
view release on metacpan or search on metacpan
devdata/https_mojolicious.io_blog_2017_12_08_day-8-mocking-a-rest-api view on Meta::CPAN
certain routes: <a href="http://mojolicious.org/perldoc/Mojolicious/Guides/Rendering#Template-variants">Template
variants</a>.
These variant templates will be used instead of the original template,
but only if they are available. Read more on <a href="/blog/2017/12/07/day-7-using-template-variants-for-a-beta-landing-page/">how to use template
variants yesterday on the advent
calendar</a>.</p>
<p>By setting the template variant to the application "mode", we can easily
switch between multiple sets of templates by adding <code>-m <mode></code> to the
command we run.</p>
view release on metacpan or search on metacpan
devdata/https_mojolicious.io_blog_2018_12_01_welcome-mojoconf-recap_ view on Meta::CPAN
            <div class="post-content">
              <section id="section-1">
                  <p>Welcome to another year of the Mojolicious Advent Calendar!
2018 has been very good to Mojolicious and I could think of no better way to kick off this calendar than with a recap of the 2018 Nordic Perl Workshop and MojoConf held in Oslo, Norway.</p>
              </section>
              <section id="section-2">
                  <h2>Sidetrip to Western Norway</h2>
view release on metacpan or search on metacpan
lib/Acme/CPANModules/Import/PERLANCAR/Advent/2014.pm view on Meta::CPAN
our $DATE = '2018-09-22'; # DATE
our $VERSION = '0.001'; # VERSION
our $LIST = {
  description => "This list is generated by extracting module names mentioned in [http://blogs.perl.org/users/perlancar/2014/12/perlancars-2014-advent-calendar.html] (retrieved on 2016-11-07). Visit the URL for the full contents.",
  entries     => [
                   { module => "JSON::Path" },
                   { module => "DBIx::Compare" },
                   { module => "Reply" },
                   { module => "Reply::Plugin::DataDumpColor" },
lib/Acme/CPANModules/Import/PERLANCAR/Advent/2014.pm view on Meta::CPAN
                   { module => "Sys::Run::Safer" },
                   { module => "chart" },
                   { module => "Games::ArrangeNumber" },
                   { module => "Games::Hangman" },
                 ],
  summary     => "Modules mentioned in PERLANCAR's 2014 advent calendar article series",
};
1;
# ABSTRACT: Modules mentioned in PERLANCAR's 2014 advent calendar article series
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::CPANModules::Import::PERLANCAR::Advent::2014 - Modules mentioned in PERLANCAR's 2014 advent calendar article series
=head1 VERSION
This document describes version 0.001 of Acme::CPANModules::Import::PERLANCAR::Advent::2014 (from Perl distribution Acme-CPANModulesBundle-Import-PERLANCAR-Advent-2014), released on 2018-09-22.
=head1 DESCRIPTION
Modules mentioned in PERLANCAR's 2014 advent calendar article series.
This list is generated by extracting module names mentioned in [http://blogs.perl.org/users/perlancar/2014/12/perlancars-2014-advent-calendar.html] (retrieved on 2016-11-07). Visit the URL for the full contents.
=head1 INCLUDED MODULES
=over
view release on metacpan or search on metacpan
devdata/http_advent.perldancer.org_2018_13 view on Meta::CPAN
<div id="content">
<div class="pod-document"><h1><a name="the_twelve_days_of_dancer"></a>The Twelve Days of Dancer</h1>
<p>Hello and goodbye, 2018! It seems like we hardly knew you. It's been a few 
years since our last calendar, and while everyone here is busy with other 
projects, we still wanted to give you a mini-advent-calendar this year. 
Welcome to the Twelve Days of Dancer!</p>
<p>This year's calendar features twelve posts that cover a wide range of topics.
We feature several new authors, cover some new ground (for us!) with an
article on accessibility, and even have a crossover post showing how Dancer
can be used with other frameworks.</p>
<p>Without further ado, let's dance!</p>
<h2><a name="state_of_the_dancer"></a>State of the Dancer</h2>
view release on metacpan or search on metacpan
lib/Acme/EyeDrops.pm view on Meta::CPAN
=head1 SEE ALSO
Acme::EyeDrops lightning talk by Flavio Poletti at YAPC::Europe 2008 at F<http://yapc.tv/>.
Acme::EyeDrops in JPerl Advent Calendar (Japanese)
at F<http://perl-users.jp/articles/advent-calendar/2009/casual/08.html>.
The history of Acme::Bleach, Acme::EyeDrops and related modules
at F<http://www.perlmonks.org/?node_id=967004>.
Software Art page at F<http://www.runme.org/>.
view release on metacpan or search on metacpan
lib/Acme/Free/Public/APIs.pm view on Meta::CPAN
When C<--details> is added, it shows the full amount of information:
  shell>freeapi apis --id 321 --details
  id:            321
  title:         (ð
) Church Calendar API
  site URL:      https://freepublicapis.com/church-calendar-api
  methods:       2
  health:        100
  documentation: http://calapi.inadiutorium.cz/api-doc
  description:   The Church Calendar API provides access to calendar data for any day, allowing users to retrieve various liturgical celebrations and details. It supports multiple languages and enables specific queries for feast names and calendar de...
  Found 1 API
=item C<random>
This subcommand takes no arguments. When run it prints out to C<STDOUT> all
view release on metacpan or search on metacpan
META.yml
Makefile.PL
README
README.mkdn
dist.ini
examples/calendar.pl
examples/window.pl
lib/Acme/Gtk2/Ex/Builder.pm
t/release-pod-coverage.t
t/release-pod-syntax.t
weaver.ini
view release on metacpan or search on metacpan
author/en2kana.csv view on Meta::CPAN
cab,ãã£ã
cable,ã±ã¼ãã«
cafe,ã«ãã§
cage,ã±ã¼ã¸
cake,ã±ã¼ã
calendar,ã«ã¬ã³ãã¼
call,ã³ã¼ã«
camera,ã«ã¡ã©
camp,ãã£ã³ã
campus,ãã£ã³ãã¹
can,ãã£ã³
view release on metacpan or search on metacpan
    - Well, the theme has changed enough that I can consider it
      new: it's now a subclass of Acme::MetaSyntactic::Locale
      and supports Basque, Catalan, Corsican, Danish, Dutch, English,
      Estonian, Finnish, French, German, Italian, Latin, Latvian,
      Polish, Portuguese, Spanish, Swahili, Swedish, Welsh and Yiddish
      lists (as well as the Pataphysical calendar).
    - You've being doing this three times already! What does it mean?
    - I must admit that it's the only way I've found to add something
      new each week and still manage to have only 100 themes when I
      reach version 1.00...
view release on metacpan or search on metacpan
OneHundredNotOut.pm view on Meta::CPAN
needed a way of representing the state of a poker game, so I wrote
L<Games::Poker::TexasHold'em> to do that. And also because it was a
fantastic abuse of the C<'> package separator.
Oh, and another of my early modules that refused to die was
L<Oxford::Calendar>, which converts between the academic calendar and
the rest of the world's. It all counts, you know.
=head2 The Future
I've had mixed feelings on Perl 6, starting with my very public
view release on metacpan or search on metacpan
=pod
=head1 NAME
Acme::PIA::Export - Export contacts, calendars or todos from Arcor's PIA messaging
=head1 DESCRIPTION
This module is intended to help export data from the PIA messaging web application
that comes with the free Arcor mail account at www.arcor.de
If you expirience problems you can also give the parameter "DEBUG" => 1
to get verbose output from all functions.
=item export( SCOPE )
Export all objects for the given scope (contacts, calendar etc.) and stores them in the
Acme::PIA::Export object.
ATTENTION: Only "contacts" scope is implemented up to now! Look out for future releases.
=item entries()
	"HOMEPAGE_PRVT" => 54,
	"HOMEPAGE_BUSI" => 55,
	"NICKNAME_PRVT" => 62,
	"LAST_MODIFIED" => 71
	},
		"calendar" => {
	}
);
our %ordered_fields = (
		"HOMEPAGE_PRVT" ,
		"HOMEPAGE_BUSI" ,
		"NICKNAME_PRVT" ,
		"LAST_MODIFIED" 
	],
	"calendar" => [
	]
);
our %scopes = (
	"contacts"	=>	"contacts",
	"calendar"	=>	"calendar"
);
sub new {
	my $self = {};
	my $class = shift;
view release on metacpan or search on metacpan
local/lib/perl5/Future.pm view on Meta::CPAN
L<https://docs.google.com/presentation/d/1UkV5oLcTOOXBXPh8foyxko4PR28_zU_aVx6gBms7uoo/edit>
=item *
"Futures advent calendar 2013"
L<http://leonerds-code.blogspot.co.uk/2013/12/futures-advent-day-1.html>
=back
view release on metacpan or search on metacpan
 my @e=map sprintf("%02d%02d", reverse(easter($_))), 1800..300000;
 print "First: ".min(@e)." Last: ".max(@e)."\n"; # First: 0322 Last: 0425
Note: The Spencer Jones formula differs Oudins used in C<easter()> in some years
before 1498. However, in that period the Julian calendar with a different formula was
used anyway. Countries introduced the current Gregorian calendar between 1583 and 1926.
=cut
sub easter { use integer;my$Y=shift;my$C=$Y/100;my$L=($C-$C/4-($C-($C-17)/25)/3+$Y%19*19+15)%30;
             (($L-=$L>28||($L>27?1-(21-$Y%19)/11:0))-=($Y+$Y/4+$L+2-$C+$C/4)%7)<4?($L+28,3):($L-3,4) }
=head2 leapyear
B<Input:> A year. A four digit number.
B<Output:> True (1) or false (0) of whether the year is a leap year or
not. (Uses current calendar even for periods before leapyears was used).
 print join(", ",grep leapyear($_), 1900..2014)."\n";
 1904, 1908, 1912, 1916, 1920, 1924, 1928, 1932, 1936, 1940, 1944, 1948, 1952, 1956,
 1960, 1964, 1968, 1972, 1976, 1980, 1984, 1988, 1992, 1996, 2000, 2004, 2008, 2012
view release on metacpan or search on metacpan
patches/Makefile_iup.mingw view on Meta::CPAN
CF_iup   = -c  -Wall -O2 -Iinclude -Isrc -Isrc/win -Ietc   -D_WIN32_WINNT=0x0501 -D_WIN32_IE=0x600 -DWINVER=0x0501 -DNOTREEVIEW -DUNICODE -DIUP_DLL $(CF_iup_EXTRA)
LF_iup   = -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -luuid -loleaut32 -lole32 -lcomctl32 $(LF_iup_EXTRA)
SLIB_iup = ./lib/$(BUILDNICK)/libiup.a
DLIB_iup = ./lib/$(BUILDNICK)/libiup.dll.a
ILIB_iup = ./lib/$(BUILDNICK)/iup_alien_.dll
OBJS_iup = ./obj/$(BUILDNICK)/iup/iup_array.o ./obj/$(BUILDNICK)/iup/iup_callback.o ./obj/$(BUILDNICK)/iup/iup_dlglist.o ./obj/$(BUILDNICK)/iup/iup_attrib.o ./obj/$(BUILDNICK)/iup/iup_focus.o ./obj/$(BUILDNICK)/iup/iup_font.o ./obj/$(BUILDNICK)/iup/i...
./obj/$(BUILDNICK)/iup/iup_array.o : src/iup_array.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iup_callback.o : src/iup_callback.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iup_dlglist.o : src/iup_dlglist.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iup_attrib.o : src/iup_attrib.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
patches/Makefile_iup.mingw view on Meta::CPAN
./obj/$(BUILDNICK)/iup/iupwin_touch.o : src/win/iupwin_touch.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_tabs.o : src/win/iupwin_tabs.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_menu.o : src/win/iupwin_menu.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_list.o : src/win/iupwin_list.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_tree.o : src/win/iupwin_tree.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_calendar.o : src/win/iupwin_calendar.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwin_datepick.o : src/win/iupwin_datepick.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwindows_main.o : src/win/iupwindows_main.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwindows_help.o : src/win/iupwindows_help.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
./obj/$(BUILDNICK)/iup/iupwindows_info.o : src/win/iupwindows_info.c ; gcc $(CF_ALL) $(CF_iup) $^ -o $@
view release on metacpan or search on metacpan
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-top-bg.gif
share/docs/extjs/resources/themes/images/default/panel/panel-default-framed-corners.gif
share/docs/extjs/resources/themes/images/default/panel/panel-default-framed-sides.gif
share/docs/extjs/resources/themes/images/default/progress/progress-default-bg.gif
share/docs/extjs/resources/themes/images/default/shared/blue-loading.gif
share/docs/extjs/resources/themes/images/default/shared/calendar.gif
share/docs/extjs/resources/themes/images/default/shared/glass-bg.gif
share/docs/extjs/resources/themes/images/default/shared/hd-sprite.gif
share/docs/extjs/resources/themes/images/default/shared/icon-error.gif
share/docs/extjs/resources/themes/images/default/shared/icon-info.gif
share/docs/extjs/resources/themes/images/default/shared/icon-question.gif
share/examples/button/buttons.html
share/examples/button/buttons.js
share/examples/button/images/add.gif
share/examples/button/images/add16.gif
share/examples/button/images/add24.gif
share/examples/calendar/app/calendar-list.js
share/examples/calendar/app/event-list.js
share/examples/calendar/app/test-app.js
share/examples/calendar/calendar-all-debug.js
share/examples/calendar/calendar-all.js
share/examples/calendar/index.html
share/examples/calendar/resources/css/calendar.css
share/examples/calendar/resources/css/examples.css
share/examples/calendar/resources/images/default/arrow.gif
share/examples/calendar/resources/images/default/bg.gif
share/examples/calendar/resources/images/default/calendar-sprites.gif
share/examples/calendar/resources/images/default/ext-cal-edit-hd.png
share/examples/calendar/resources/images/default/page-next.gif
share/examples/calendar/resources/images/default/page-prev.gif
share/examples/calendar/src/CalendarPanel.js
share/examples/calendar/src/EventEditForm.js
share/examples/calendar/src/EventEditWindow.js
share/examples/calendar/src/EventRecord.js
share/examples/calendar/src/Ext.calendar.js
share/examples/calendar/src/WeekEventRenderer.js
share/examples/calendar/src/dd/CalendarDD.js
share/examples/calendar/src/dd/CalendarScrollManager.js
share/examples/calendar/src/dd/DayViewDD.js
share/examples/calendar/src/dd/StatusProxy.js
share/examples/calendar/src/templates/BoxLayoutTemplate.js
share/examples/calendar/src/templates/DayBodyTemplate.js
share/examples/calendar/src/templates/DayHeaderTemplate.js
share/examples/calendar/src/templates/DayViewTemplate.js
share/examples/calendar/src/templates/MonthViewTemplate.js
share/examples/calendar/src/views/CalendarView.js
share/examples/calendar/src/views/DayBodyView.js
share/examples/calendar/src/views/DayHeaderView.js
share/examples/calendar/src/views/DayView.js
share/examples/calendar/src/views/MonthDayDetailView.js
share/examples/calendar/src/views/MonthView.js
share/examples/calendar/src/views/WeekView.js
share/examples/calendar/src/widgets/CalendarPicker.js
share/examples/calendar/src/widgets/DateRangeField.js
share/examples/calendar/src/widgets/ReminderField.js
share/examples/chart/bar.gif
share/examples/chart/chart.gif
share/examples/chart/charts.html
share/examples/chart/charts.js
share/examples/chart/pie-chart.html
share/examples/shared/screens/anchor.gif
share/examples/shared/screens/animated-dataview.png
share/examples/shared/screens/blank.gif
share/examples/shared/screens/border-layout.gif
share/examples/shared/screens/buttons.gif
share/examples/shared/screens/calendar.gif
share/examples/shared/screens/chart-pie.gif
share/examples/shared/screens/chart-reload.gif
share/examples/shared/screens/chart-stacked.gif
share/examples/shared/screens/charts.gif
share/examples/shared/screens/chooser.gif
share/resources/images/default/s.gif
share/resources/images/default/shadow-c.png
share/resources/images/default/shadow-lr.png
share/resources/images/default/shadow.png
share/resources/images/default/shared/blue-loading.gif
share/resources/images/default/shared/calendar.gif
share/resources/images/default/shared/glass-bg.gif
share/resources/images/default/shared/hd-sprite.gif
share/resources/images/default/shared/large-loading.gif
share/resources/images/default/shared/left-btn.gif
share/resources/images/default/shared/loading-balls.gif
share/resources/images/yourtheme/s.gif
share/resources/images/yourtheme/shadow-c.png
share/resources/images/yourtheme/shadow-lr.png
share/resources/images/yourtheme/shadow.png
share/resources/images/yourtheme/shared/blue-loading.gif
share/resources/images/yourtheme/shared/calendar.gif
share/resources/images/yourtheme/shared/glass-bg.gif
share/resources/images/yourtheme/shared/hd-sprite.gif
share/resources/images/yourtheme/shared/large-loading.gif
share/resources/images/yourtheme/shared/left-btn.gif
share/resources/images/yourtheme/shared/loading-balls.gif
view release on metacpan or search on metacpan
share/vendor/css/bootstrap.css view on Meta::CPAN
.icon-plane {
  background-position: -168px -120px;
}
.icon-calendar {
  background-position: -192px -120px;
}
.icon-random {
  width: 16px;
view release on metacpan or search on metacpan
t/test-data/to-split/29.xml view on Meta::CPAN
        <urls>
          <url>http://searchenginewatch.com/searchday/article.php/3612406</url>
        </urls>
      </acquisitionData>
      <canonicalDocument>        
        <section>Links to the week's topics from search engine forums across the web. What Top 5 Skills Would You Study to Become a Better SEO? Search Engine Watch Forums "What skills would you put on your Matrix 'must have' list for your career path...
      <metaData>
        <meta name="title">Search Engine Forums Spotlight</meta>
        <meta name="dc:type">text/html</meta>
      </metaData>
      <links>
view release on metacpan or search on metacpan
lib/Amazon/S3/FastUploader/File.pm view on Meta::CPAN
    ".h"       => "text/x-c",
    ".hh"      => "text/x-c",
    ".htm"     => "text/html",
    ".html"    => "text/html",
    ".ico"     => "image/vnd.microsoft.icon",
    ".ics"     => "text/calendar",
    ".ifb"     => "text/calendar",
    ".iso"     => "application/octet-stream",
    ".jar"     => "application/java-archive",
    ".java"    => "text/x-java-source",
    ".jnlp"    => "application/x-java-jnlp-file",
    ".jpeg"    => "image/jpeg",
lib/Amazon/S3/FastUploader/File.pm view on Meta::CPAN
    ".tiff"    => "image/tiff",
    ".torrent" => "application/x-bittorrent",
    ".tr"      => "text/troff",
    ".txt"     => "text/plain",
    ".vcf"     => "text/x-vcard",
    ".vcs"     => "text/x-vcalendar",
    ".vrml"    => "model/vrml",
    ".war"     => "application/java-archive",
    ".wav"     => "audio/x-wav",
    ".wma"     => "audio/x-ms-wma",
    ".wmv"     => "video/x-ms-wmv",
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
Adaptive Server Enterprise => <reply> $who, Adaptive Server Enterprise, (formerly Sybase SQL Server). URL: http://www.sybase.com/products/databaseservers/linux/index.html
AddLibs.py => <reply> $who, Allows you to create amusing stories using words you enter.. URL: http://www.serv.net/~strad/AddLibs/
AddressBook => <reply> $who, Portable Personal Information Manager written in perl. URL: http://www.acm.rpi.edu/~jackal/ab.html
addrmuser => <reply> $who, . URL: http://impulse.bitz.net/~posix/addrmuser.tar.gz
ADFlib => <reply> $who, a free, portable, open and documented implementation of the Amiga filesystem. URL: http://perso.club-internet.fr/lclevy/adflib/
ADiCT => <reply> $who, Shared event calendar for independant organisations. URL: http://www.adict.net/
ADL => <reply> $who, Assertion Definition Language. URL: http://www.gr.opengroup.org/adl/
Admin CGI => <reply> $who, Web based user administration with cgi scripts. URL: http://www.daemon.de/admin-cgi.html
adns => <reply> $who, An advanced alternative, asynchronous resolver. URL: http://www.chiark.greenend.org.uk/~ian/adns/
Adora => <reply> $who, Cross-Platform Email Client for Linux and Windows. URL: http://www.sover.net/~senecal/adora.html
AdRotate => <reply> $who, Banner Ad Rotation Program. URL: http://www.vanbrunt.com/adrotate
factpacks/Linux.fact view on Meta::CPAN
Calamaris => <reply> $who, Statistic tool for Squid, NetCache and relatives. URL: http://Calamaris.Cord.de
calc => <reply> $who, C-style arbitrary precision calculator. URL: http://reality.sgi.com/chongo/tech/comp/calc/
Calcium => <reply> $who, powerful & flexible interactive web-based Calendar. URL: http://www.brownbearsw.com/
Calculator => <reply> $who, Simple Command Line Calculator. URL: http://www.mindspring.com/~joelgg/calc.html
Caldera Netware Server for Linux => <reply> $who, Netware 4.10b (with NDS) evaluation for Linux. URL: http://www.caldera.com/products/netware/index.html
Calendars for the Web => <reply> $who, Server based calendar and scheduling application. URL: http://calendar.greathill.com/
Caliban Instant Messaging => <reply> $who, Implementation of OpenPGP-secured Instant Messaging System. URL: http://www.andrew.cmu.edu/~bucy/IM/
Callidac => <reply> $who, Execute arbitrary commands depending on a calling phone number (Euro-ISDN/DSS1). URL: ftp://ftp.unix-ag.uni-siegen.de/user/wiesner/callidac-0_1.tar.gz
calltree => <reply> $who, calltree -   static call tree generator for C programs. URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/index.html
Camden => <reply> $who, PHP/MySQL based customer feedback system with real-time chat. URL: http://nimbus.ocis.temple.edu/~jlabonsk/camden.html
CAMP => <reply> $who, Console Interface for command-line MP3 players. URL: http://dagobah.nu/~inm/camp
factpacks/Linux.fact view on Meta::CPAN
cdrecord => <reply> $who, Allows the creation of both audio and data CDs. URL: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html
cdrecord-filters => <reply> $who, A patch for cdrecord to allow it to accept user-created modules.. URL: http://www.multimania.com/pixels/cdrecord-filters.html
cdrom_speed => <reply> $who, Small program to select cdrom drive speed. URL: http://dmpc.dbp.fmph.uniba.sk/~krivanek/cdrom_speed/
cdsetspd => <reply> $who, allows setting the reading speed of Plextor CDROM drives. URL: http://ourworld.compuserve.com/homepages/mjm5
CDXA => <reply> $who, Play Audio from Playstation CDROM XA files. URL: http://solaris1.mysolution.com/~jcatki/cdxa/
Celebrat => <reply> $who, Very simple non-interactive command-line calendar. URL: http://www.nada.kth.se/~d92-jwa/code/
cell.pl => <reply> $who, Cellular One Text Message Email. URL: http://eric.superblock.net/
centerICQ => <reply> $who, a textmode-based ICQ clone for Linux. URL: http://konst.org.ua/software.centericq.html
Cervisia => <reply> $who, KDE CVS frontend. URL: http://pauli.uni-muenster.de/~gehrmab/cervisia/cervisia.html
CFCC Video Algorithm => <reply> $who, Video coding and compression algorithm for low bit rate channels. URL: http://www.linuxtel.com/
ZMailer => <reply> $who, . URL: http://www.zmailer.org/
factpacks/Linux.fact view on Meta::CPAN
Crystal Space => <reply> $who, A free and portable 3D engine based on portals. URL: http://crystal.linuxgames.com/
cs => <reply> $who, a free and small cscope clone. URL: ftp://cantor.informatik.rwth-aachen.de/pub/unix/
CSCMail => <reply> $who, Gtk E-Mail Client written in Perl. URL: http://www.cyberdeck.org/cscmail/
CSP => <reply> $who, Interpreted C/C++ web pages with ASP-like loadable module. URL: http://ruby.ddiworld.com/jreed/web/csp/index.html
CSSC => <reply> $who, SCCS clone. URL: http://www.free-lunch.demon.co.uk/CSSC/
cst-calendar => <reply> $who, Web based, php3/mysql powered organisationalcalendar. URL: http://www.goulburn.net.au/~hagus/
cstream => <reply> $who, dd(1)-like tool, precise bandwidth limiting/reporting, fifo support. URL: http://www.cons.org/cracauer/cstream.html
csv2html => <reply> $who, Converts CSV files to HTML tables. URL: http://virtual.oltronics.net/~phma/Software/csv2html.html
csvdump => <reply> $who, Dump, process, and mail a MySQL table.. URL: http://oss.gospelcom.net/
ctBLD => <reply> $who, A platform independent builder similar in purpose to make.. URL: http://www.imonk.com/
ctDSM => <reply> $who, C++ Library-Based Distributed Shared Memory. URL: http://www.imonk.com/
factpacks/Linux.fact view on Meta::CPAN
cwc => <reply> $who, Crossword Compiler. URL: http://www.cs.auc.dk/~larsch/cwc/
cwmtx => <reply> $who, C++ Library for matrix, vector and quaternion math. URL: http://www.xs4all.nl/~hkuiper/cwmtx.html
CX => <reply> $who, A platform independant, interface independant, programming language independant,. URL: http://ds.dial.pipex.com/shallow/
CxIV => <reply> $who, Fully threaded discussion system with many features written in C. URL: http://www.leonine.com/~ltemplin/cxiv/
Cxref => <reply> $who, C Cross Referencing & Documenting tool. URL: http://www.gedanken.demon.co.uk/cxref/
CyberScheduler => <reply> $who, Internet-based calendaring andscheduling solution for workgroups. URL: http://www.crosswind.com
CybOrg => <reply> $who, Web-based backoffice application suite. URL: http://www.cyber.com.au/cyber/product/cyborg/
CYCAS => <reply> $who, CAD Software for Linux. URL: http://www.cycas.de/
Cyclone => <reply> $who, Internet Relay Chat Daemon used by SlashNET. URL: ftp://ftp.slashnet.org/pub/cyclone/
Cygnus Java Compiler => <reply> $who, GNU compiler extension that allows compilation of Javasource and byte code. URL: http://sourceware.cygnus.com/java/gcj.html
Cygwin => <reply> $who, Gcc cross-compiler for win32, with UNIX-like API.. URL: http://sourceware.cygnus.com/cygwin/
factpacks/Linux.fact view on Meta::CPAN
DataGate's Connector => <reply> $who, DG Connector is a Web-based Instant Intranet solution.. URL: http://www.datagate.co.uk/products/connector/index.html
Datalink library => <reply> $who, Send data to the Timex DataLink watches. URL: http://datalink.fries.net/
DataManager => <reply> $who, Shared memory ringbuffers client-server library. URL: http://www.anatom.uni-tuebingen.de/~richi/linux/DataManager/datamanager.html
Datasphere => <reply> $who, Non-IRC text-based conferencing package. URL: http://www.wwcn.org/
Datbkr => <reply> $who, Tar based tape backup program with remote SSH support. URL: http://www.psychosis.com/datbkr/
Date::Calc => <reply> $who, Package for all kinds of date calculations based onthe Gregorian calendar. URL: http://www.engelschall.com/u/sb/download/
Date::Pcalc => <reply> $who, All-Perl module for date calculations, based on Date::Calc. URL: http://www.best.com/~nessus/date/pcalc.html
Dave Gnukem => <reply> $who, GGI-based 2D scrolling platform game, similar to Duke Nukem 1. URL: http://www.geocities.com/SoHo/Lofts/2018/djgame.html
daVinci => <reply> $who, daVinci is a X-Window visualization tool for drawing directed graphs automatical. URL: http://www.informatik.uni-bremen.de/~davinci/
Daydream => <reply> $who, Daydream BBS version 2.07. URL: http://daydream.iwn.fi/
DB2 => <reply> $who, Universal Database for Linux. URL: http://www.software.ibm.com/data/db2/linux/
factpacks/Linux.fact view on Meta::CPAN
Eucalyptus => <reply> $who, Advanced MIME email program. URL: http://www.isengard-dev.org/
eud2mbox => <reply> $who, Eudora Mailbox (.mbx) to standard mbox converter. URL: http://provo.doit.wisc.edu/~miner/eud2mbox/
Euphoria => <reply> $who, A great fast extensible language. URL: http://members.aol.com/FilesEu/
Euphoria Programming Language => <reply> $who, Simple, flexible, powerful programming language for Linux, DOS and Windows. URL: http://www.RapidEuphoria.com/
Europa => <reply> $who, multi-player realtime strategic action war game. URL: http://play.mpog.com/europa
Event Calendar => <reply> $who, PHP/PostgreSQL-based online event calendar. URL: http://www.simons-rock.edu/~fluffy/index.php3?link=.%2FEvent+Calendar
Event Monitor Project => <reply> $who, Monitoring tool for heterogeneous networks and systems based on message passing. URL: http://www.gsyc.inf.uc3m.es/~assman/em/
Everybuddy => <reply> $who, Universal Instant Messaging Client. URL: http://www.everybuddy.com/
EveryChat => <reply> $who, Minimalist Perl CGI Chat Program. URL: http://www.everysoft.com/everychat/
Eview => <reply> $who, Viewer for embroiding file formats. URL: http://www.geocities.com/SiliconValley/Way/3340/eview.html
evilwm => <reply> $who, Yet Another 9wm-based Window Manager. URL: http://unifex.netpedia.net/evilwm/
factpacks/Linux.fact view on Meta::CPAN
IBM International Classes for Unicode for C/C++ => <reply> $who, IBM Classes for Unicode (ICU) enable you to write fully cross-platform programs. URL: http://www.alphaworks.ibm.com/tech/icu/
IBM techexplorer => <reply> $who, IBM techexplorer Hypermedia Browser. URL: http://www.software.ibm.com/network/techexplorer/
IBM Visualization Data Explorer => <reply> $who, An application for data visualization.. URL: http://www.ibm.com/dx/
ibs => <reply> $who, The intelligent backup system for Debian GNU/Linux.. URL: http://ibs.brunox.qc.ca/
IBTK => <reply> $who, Basic self-contained no-frills toolkit for Xlib.. URL: http://www.core.binghamton.edu/~insomnia/gatos/src/
Ical => <reply> $who, A tcl/tk based calendar program. URL: http://www.research.digital.com/SRC/personal/Sanjay_Ghemawat/ical/home.html
ICBM => <reply> $who, Distributed MUD/Chat servers and sample client.. URL: http://members.home.com/carlsonj/
ICBM3D/2 => <reply> $who, A 3D. URL: http://www.newbreedsoftware.com/icbm3d2/
ICE Linux-Appletalk => <reply> $who, Complete Graphical Appletalk/Macintosh integration for Linux. URL: http://www.icenetworking.com/products/appletalk/
icecast => <reply> $who, MP3 Audio Broadcasting System. URL: http://www.icecast.org/
IceConf => <reply> $who, A graphical configuration program for IceWM. URL: http://www.ionet.net/~hestgray/files/
factpacks/Linux.fact view on Meta::CPAN
k12admin-server => <reply> $who, A web-based server administration tool for K-12 school systems (server package).. URL: http://k12admin.cmsd.bc.ca/
k3de => <reply> $who, 3Deditor for the KDE which generates sources for POVray. URL: ftp://ftp.kde.org/pub/kde/unstable/apps/graphics/
K4DE => <reply> $who, 3d-Editor for KDE with poor animation and sound posibilities.. URL: http://www.k4de.de/
kaffe => <reply> $who, Complete, PersonalJava 1.1 compliant Java environment. URL: http://www.kaffe.org/
KAGENT => <reply> $who, A simple and extensible mail filter. URL: http://patriot.net/~kurt/kagent/
Kalendar => <reply> $who, Simple, easy to use calendar and to-do list manager. URL: http://www.linuxsupportline.com/~kalendar/index.html
Kalinux => <reply> $who, Online gaming system to find other gamers online.. URL: http://www.kali.net/
Kam => <reply> $who, . URL: http://wetap8.physik.uni-mainz.de/kam/
KanjiPad => <reply> $who, Look up Japanese characters through handwriting. URL: http://www.gtk.org/~otaylor/kanjipad/
Kapm => <reply> $who, An APM-BIOS monitor for the KDE desktop.. URL: http://bodnar42.dhs.org/kapm
Karchiveur => <reply> $who, A little archiver for KDE, like ark but more powerful. URL: http://www-mips.unice.fr/~biederd/eric/karchiveur_en.shtml
factpacks/Linux.fact view on Meta::CPAN
mod_hosts_access => <reply> $who, causes Apache to respect the rules in hosts.allow and hosts.deny. URL: http://www.klomp.org/mod_hosts_access/
mod_jive => <reply> $who, Automatic jiving of static HTML as an apache module. URL: http://www.networkone.net/~triddle/mod_jive/
mod_layout => <reply> $who, Layout module for Apache.. URL: http://www.tangent.org/mod_layout/
mod_litbook => <reply> $who, Experimental design in referencing www documents.. URL: http://www.conman.org/software/mod_litbook/
mod_perl => <reply> $who, Brings together the fullpower of Perl and the Apache HTTP server. URL: http://perl.apache.org/
mod_perl Calendar System => <reply> $who, Web-based calendaring system in mod_perl. URL: http://www.gallanttech.com/resources/documentation/calendar/
mod_roaming => <reply> $who, With mod_roaming you can use Apache as a Netscape Roaming Access server. URL: http://www.klomp.org/mod_roaming/
mod_ssl => <reply> $who, Apache Interface to OpenSSL. URL: http://www.modssl.org/
mod_throttle => <reply> $who, Virtual server throttling for Apache 1.3.x. URL: http://www.snert.com/Software/Throttle/
mod_virgule => <reply> $who, Community site-building tool. URL: http://www.levien.com/free/mod_virgule/
MOIS => <reply> $who, My Own IRC Script for ircII. URL: http://www.stud.uni-karlsruhe.de/~uno4/linux/
factpacks/Linux.fact view on Meta::CPAN
mrouted => <reply> $who, DVMRP multicast routing daemon. URL: ftp://ftp.research.att.com/dist/fenner/mrouted/
MRPC => <reply> $who, A very open and modular remote procedure call system.. URL: http://www.tildeslash.org/mrpc.html
Mrsh => <reply> $who, Tool to issue the same command on many machines (quickly). URL: http://www.net-link.net/~jettero/mrsh/
MRTd => <reply> $who, Routing protocol daemon (BGP, RIP, OSPF) and tools. URL: http://www.mrtd.net/
mrtg => <reply> $who, Multi Router Traffic Grapher. URL: http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html
mscal2html => <reply> $who, Generates an html calendar from a calendar saved as text from an ms/windows app.. URL: http://cblack.mokey.com/mscal2html/
msend => <reply> $who, An implementation of the message send protocol (RFC1312).. URL: http://homepages.tig.com.au/~mrudat/software/msend/home.frames.html
msgboard => <reply> $who, CGI message board that uses MySQL database to store messages.. URL: http://24.28.41.85:800/msgboard-1.0.tar.gz
MSL => <reply> $who, Real time distributed simulation environment interpreter. URL: http://www.hinttech.com/pub/msl/msl-1.2.tar.gz
MSNewsGrabber => <reply> $who, Grabs news headlines and stories from various sites. URL: http://news.saggaf.com/
MSNTP => <reply> $who, Simple Network Time Protocol Utility. URL: ftp://oozelum.csi.cam.ac.uk/dist/msntp-1.5.tar.gz
factpacks/Linux.fact view on Meta::CPAN
Obsequiuem => <reply> $who, Network based MP3 RTP/multicast streaming jukebox. URL: http://obs.freeamp.org/
Obsidian => <reply> $who, OpenSource 3D network game for Linux and SGI. URL: http://www.zog.net.au/computers/obsidian/
OCaml => <reply> $who, Objective Caml is the latest implementation of the Caml dialect of ML. URL: http://caml.inria.fr/ocaml/
ocs-base => <reply> $who, Base system for Linux intranet applications. URL: http://demo.obsidian.co.za
ocsadmin => <reply> $who, ocsadmin is a web admin tool to maintain user accounts. URL: http://demo.obsidian.co.za/
ocscal => <reply> $who, An intranet calendar system featuring shared appointments. URL: http://demo.obsidian.co.za/
ocschat => <reply> $who, Intranet Chat server and embedded java client, assimilated for ocsweb project. URL: http://demo.obsidian.co.za/
ocsemail => <reply> $who, Electronic web email system for you intranet. URL: http://demo.obsidian.co.za/
ocsexplorer => <reply> $who, ocsexplorer is an intranet file explorer for linux. URL: http://demo.obsidian.co.za
ocsfiles => <reply> $who, Front-end to your ftp site, allowing easy uploads and indexing. URL: http://demo.obsidian.co.za/
Octave => <reply> $who, . URL: http://bevo.che.wisc.edu/octave/
factpacks/Linux.fact view on Meta::CPAN
Pizza => <reply> $who, A small, fast and free compiler for Java. URL: http://www.cis.unisa.edu.au/~pizza/
pk => <reply> $who, An Open-Source POSIX Threads embedded real-time kernel. URL: http://www.cornfed.com/pk/
pkgbuild => <reply> $who, The RPM package development environment. URL: http://www.linuxsupportline.com/~davin
pkgview => <reply> $who, X based RPM package viewer. URL: http://www.linuxsupportline.com/~davin/
PKZIP for Linux => <reply> $who, Extracts from TAR, GZIP, UUencode XXencode, MIME and BinHex files.. URL: http://www.pkware.com/
plan => <reply> $who, Networked calendar and day planner. URL: http://www.bitrot.de/plan.html
Planet-Intra => <reply> $who, Instant intranet portal. URL: http://www.planet-intra.com/
play688 => <reply> $who, Play tunes for Ericsson GH688 cellular phones on Linux boxen. URL: http://www.cendio.se/~petli/misc/play688.c
playcd => <reply> $who, A nice cd-playing tool. URL: http://www.stack.nl/~ralf/playcd.html
playdough => <reply> $who, BitchX/EPIC IRC script. URL: http://www.got.net/~brian/
playlist => <reply> $who, Generates lists in plaintext and HTML for a directory tree of music files. URL: http://www.owlnet.rice.edu/~patrickh/playlist.html
factpacks/Linux.fact view on Meta::CPAN
Project Ballantain => <reply> $who, Yet another single floppy router, dialup<->ethernet+IP masq+dhcpd+diald. URL: http://www.linuxsupportline.com/~router/
PROL => <reply> $who, Fast Web Journal/Web Log Hybrid. URL: http://jade.cs.uct.ac.za/prol/
Prometheus Truecolour (PTC) => <reply> $who, A portable, lowlevel framebuffer access library with very fast on the fly conver. URL: http://www.cs.ucl.ac.uk/students/c.nentwich/ptc
Prometheus-Library => <reply> $who, Object-oriented PHP API. URL: http://prometheus.zerodivide.net/index.php3?api=1
Proof General => <reply> $who, Emacs interface for Proof Assistants. URL: http://www.dcs.ed.ac.uk/home/proofgen/
Prospector => <reply> $who, Web-based calendaring program similar to one found at yahoo.. URL: http://www.icebox.org/~tenney/prospector.html
Prostat => <reply> $who, Squid statistic toolkit. URL: http://cache.cnrs.fr/prostat/
ProtectImage => <reply> $who, PERL CGI that protects images from being hotlinked from remote sites. URL: http://www.zebra.net/~irni/
proxy => <reply> $who, Simple Proxy Server. URL: http://www.mindstorm.com/~sparlin/projects.shtml
proxyarp => <reply> $who, A proxyarp daemon for linux.. URL: ftp://guido.dhs.org:50021/proxyarp-0.7.3.tar.gz
prwhod => <reply> $who, An extended rwhod daemon. URL: ftp://ftp.lysator.liu.se/pub/unix/prwhod
pscal => <reply> $who, shell script to create PostScript calendars. URL: ftp://ftp.netcom.com/pub/mb/mbh/pscal-1.7.tar.gz
psgplay => <reply> $who, Music player for all the old Atari tunes.. URL: http://www.nocrew.org/software/psgplay/
psh => <reply> $who, Tooltips for the UNIX shell. URL: http://users.gtn.net/fraserm/psh.html
psiconv => <reply> $who, Psion 5 file conversion utilities and file format documentation. URL: http://huizen.dds.nl/~frodol/psiconv/
psiko => <reply> $who, Boot Manager. URL: http://iaeste.cie.uma.es/lima/
PsiLin => <reply> $who, Graphical interface to connect and convert files between a Psion and Linux. URL: http://www.medsyn.fr/perso/g.delafond/psiolinu.htm
factpacks/Linux.fact view on Meta::CPAN
ROOT => <reply> $who, Comprehensive object oriented framework. URL: http://root.cern.ch/
Root Park => <reply> $who, Build a network that will stand the test of time. URL: http://root.park.free.fr/
Root-Portal => <reply> $who, Background Desktop System Logger. URL: http://driftwood.draconic.com/root-portal/
root-tail => <reply> $who, Allows printing of text directly to the X11 rootwindow. URL: http://208.240.253.47/root-tail/
Rosegarden => <reply> $who, . URL: http://www.bath.ac.uk/~masjpf/rose.html
Rosenet Community Calendar => <reply> $who, Interactive Community Calendar for PHP3 and MySQL. URL: http://modems.rosenet.net/calendar/download/
rotfl => <reply> $who, simple text formatting language. URL: http://www.bangmoney.org/projects/rotfl/
routemon => <reply> $who, Default route monitor for ISDN and PPP links. URL: http://members.xoom.com/Gavrilov_Con/isdn/routemon.html
ROX-Filer => <reply> $who, Drag-and-drop based filemanager.. URL: http://www.ecs.soton.ac.uk/~tal197/rox.php3
Roxen Challenger => <reply> $who, Platform independent webserver featuring strong encryption and SSL3. URL: http://www.roxen.com/
rpcobol => <reply> $who, compiler for cobol74. URL: http://members.xoom.com/rpragana/cobol.html
factpacks/Linux.fact view on Meta::CPAN
sybtable.pl => <reply> $who, Web-based table browser/SQL interface for Sybase databases. URL: http://www.pdamusic.com/computer/sybtable.html
Sybtcl => <reply> $who, Sybase interface for Tcl. URL: http://www.nyx.net/~tpoindex/tcl.html#Sybtcl
Sympa => <reply> $who, A powerful multilingual List Manager- LDAP and SQL features.. URL: http://listes.cru.fr/sympa/
Synaesthesia => <reply> $who, Program to reperesent music from CD or MP3 graphically.. URL: http://yoyo.cc.monash.edu.au/~pfh/synaesthesia.html
Synapse => <reply> $who, 3d Graphical User Interface. URL: http://www.oreality.com
Syncal => <reply> $who, Syncs an ical calendar with a Palm Pilot DateBookDB. URL: http://hopf.math.nwu.edu/syncal/
SyncBuilder => <reply> $who, Build synchronization applications with a Palm device in Java. URL: http://come.to/SyncBuilder/
SyncDet => <reply> $who, Clone detection program for IRC admins. URL: http://mars.superlink.net/jason/small/syncdet.html
syncopt => <reply> $who, A Flexible and Simple Approach to Package Install. URL: http://www.zip.com.au/~cs/syncopt/index.html
Synthesis Toolkit => <reply> $who, C++ classes for software-based sound synthesis/processing. URL: http://ccrma-www.stanford.edu/CCRMA/Software/STK/
sysdaemon => <reply> $who, Unix system monitor daemon and server. URL: http://www.marketrends.net/sysdaemon/
factpacks/Linux.fact view on Meta::CPAN
Tiff2png => <reply> $who, converts TIFF image files to PNG format. URL: http://www.cdrom.com/pub/png/pngcode.html#converters
TiK => <reply> $who, Tcl/Tk version of AOL Instant Messenger. URL: http://www.aim.aol.com/tik/
time catcher => <reply> $who, Counts online time and costs. URL: http://www.s.netic.de/michak/time_catcher.html
Time Navigator => <reply> $who, Backup Server. URL: http://www.quadratec-software.com/
Time Sheets for Networks => <reply> $who, A web based system to record and keep track of jobs in a project. URL: http://members.xoom.com/xeer/ts/tsn.html
TimeMan => <reply> $who, Time manager, calendar, alarm. URL: http://www.bgif.no/neureka/TimeMan/TimeMan.html
Timesheet.php => <reply> $who, PHP application to keep track of hours worked on a project.. URL: http://www.egr.uri.edu/~kovacsp/timesheet/
TimeTable => <reply> $who, Creates a LaTeX source file for a time table.. URL: http://www.straubing.baynet.de/~t.bayer/
TimeTracker => <reply> $who, TimeTracker is an Athena Widget-based program to keep track of time.. URL: http://www.alvestrand.no/harald/titrax/TimeTracker.html
TiMidity++ => <reply> $who, Experimental MIDI to WAVE converter. URL: http://www.goice.co.jp/member/mo/timidity/
YAX YUGO System => <reply> $who, A basic implementation of the YAX Graphic System. URL: http://yax.netpedia.net/
factpacks/Linux.fact view on Meta::CPAN
WaveLAN/IEEE driver => <reply> $who, Kernel network device driver for WaveLAN/IEEE wireless network card. URL: http://www.fasta.fh-dortmund.de/users/andy/wvlan/
WaveTools => <reply> $who, Commandline tools for manipulating mono wavefiles. URL: http://tph.tuwien.ac.at/~oemer/index.html#wt
wavnorm => <reply> $who, Maximize the volume of 16 bit stereo wav files. URL: http://www.zog.net.au/computers/wavnorm/
wb0 => <reply> $who, A quick SVGAlib-based Web browser. URL: http://atrey.karlin.mff.cuni.cz/~clock/wb0/
WBI (Web Intermediaries) Developer Kit for Java => <reply> $who, A programmable proxy for developing and running intermediary web apps.. URL: http://www.almaden.ibm.com/cs/wbi/
Wcal => <reply> $who, Web based calendar/planner especially suitable for multi-user setups. URL: http://www.woods.iki.fi/pub/wcal/
wcd => <reply> $who, . URL: http://www.xs4all.nl/~waterlan/
wchat => <reply> $who, Fully extensible TCP/IP-based Chat Server.. URL: http://www.cryon.com/wchat/
wcII-grab => <reply> $who, Image Grabber for Creative WebCam II. URL: ftp://ftp.ghostfield.cx/pub/people/madcat/
WcIIcam => <reply> $who, Experimental software to drive a CPiA parallel Webcam ( ie Creative WebCam II ). URL: ftp://brijn.nu/vision/wcIIcam0.2.tgz
wcol => <reply> $who, Prefetching proxy server.. URL: http://hayate.aist-nara.ac.jp/products/wcol/
factpacks/Linux.fact view on Meta::CPAN
WebAlbum => <reply> $who, A perl script which produces html photo albums.. URL: http://www.ap.univie.ac.at/users/havlik/Downloads/
Webalizer => <reply> $who, Web server log analysis program. URL: http://www.mrunix.net/webalizer/
webbase => <reply> $who, Internet crawler C library and program. URL: http://www.senga.org/webbase/html/
WebCache::Digest => <reply> $who, A Perl implementation of the Cache Digest protocol. URL: http://wwwcache.ja.net/dev/perlmod/
WebCache::ICP => <reply> $who, A Perl implementation of the Internet Cache Protocol. URL: http://wwwcache.ja.net/dev/perlmod/
WebCal => <reply> $who, A simple browser based calendar program.. URL: http://bulldog.tzo.org/webcal/webcal.html
WebCharts => <reply> $who, Stock charting Java applet for brokers or banks.. URL: http://www.roberthoffman.com/
WebCit => <reply> $who, Web front-end to the Citadel/UX BBS package. URL: http://uncnsrd.mt-kisco.ny.us/citadel/
WebCONTACT => <reply> $who, Web-based contacts, scheduling, projects, and timesheets app.. URL: http://www.webcontact.org/
webcrawl => <reply> $who, . URL: ftp://metalab.unc.edu/pub/Linux/apps/www/mirroring/
WebDiary/ViewMaker => <reply> $who, http://dante.urbanet.ch/~patrick/programm/viewMaker/. URL: http://dante.urbanet.ch/~patrick/programm/#webdiary
WebDNS => <reply> $who, CGI interface for configuring DNS servers. URL: http://www.darkfires.net/webdns/
WebER => <reply> $who, WebER is a simple Java Web Server that implements HTTP/1.0.. URL: http://roncarolo.eu.org/weber/
WebEvent => <reply> $who, WebEvent is web calendar software for your web site.. URL: http://www.MatadorDesign.com/
WebFetch => <reply> $who, Perl5 module infrastructure to export and retrieve news for web display. URL: http://www.webfetch.org/
webfs => <reply> $who, Lightweight HTTP server for static content. URL: http://www.IN-Berlin.DE/User/kraxel/webfs.html
webget => <reply> $who, A CGI frontend and backend to wget written in Perl.. URL: http://www.sgapc.vuurwerk.nl/webget/webget-0.3.tar.gz
WebGlimpse => <reply> $who, Adds search capabilities to WWW site automatically and easily. URL: http://webglimpse.net/
WebGrams => <reply> $who, Web-based greeting card application. URL: http://www.vanbrunt.com/webgrams
factpacks/Linux.fact view on Meta::CPAN
gShield => <reply> $who, gShield (formerly Godot's Modified Modular Firewall), is an aggressive, modular, ipchains-based firewall script. URL: http://muse.linuxgeek.org/files/gShield-1.0.tgz
tdof => <reply> $who, tdof is an APE-derived C++ framework for use in developing telephony applications with native drivers which lack a pre-existing SDK. URL: ftp://www.voxilla.org/pub/tdof/
gg => <reply> $who, gg is a graphical guestbook for the Web. URL: http://www.earth.li/projectpurple/files/gg-0.0.2.tar.gz
ODBC Socket Server => <reply> $who, ODBC Socket Server is an open source database access toolkit that exposes Windows NT ODBC data sources via an XML-based TCP/IP interface. URL: http://odbc.linuxbox.com/download.html
Conglomerate => <reply> $who, Conglomerate will be a system for authoring, storing, transforming, and generally working with structured information like XML/SGML (yes, it will do DocBook, or any other DTD you care to throw at it). URL: http://www.con...
WebCalendar => <reply> $who, WebCalendar is a PHP/MySQL application used to maintain a calendar for one or more persons.. URL: http://www.radix.net/~cknudsen/webcalendar/files/WebCalendar-0.9.tar.gz
SDCC-z80 => <reply> $who, SDCC-z80 is a version of the optimising C compiler SDCC targeted to the 8 bit Zilog Z80. URL: http://earthling.net.nz/~michaelh/snapshots/
SPS4Linux => <reply> $who, SPS4Linux is an implementation of the SPS Language. URL: http://www.eilers.net/sps/
XMagick => <reply> $who, XMagick is a library written in C which allows integration of the ImageMagick library with any X application by providing functions which convert between the native X image format (XImage) and the native ImageMagick format (I...
libiconv => <reply> $who, libiconv provides an iconv() implementation for use on systems which don't have one or whose implementation cannot convert from/to Unicode. URL: ftp://ftp.ilog.fr/pub/Users/haible/gnu/libiconv-0.1.tar.gz
libutf8 => <reply> $who, libutf8 provides UTF-8 locale support for use on systems which don't have UTF-8 locales or whose UTF-8 locales are unreasonably slow. URL: ftp://ftp.ilog.fr/pub/Users/haible/utf8/libutf8-0.6.1.tar.gz
factpacks/Linux.fact view on Meta::CPAN
hello-world => <reply> $who, hello-world is a simple Roxen Web server module demonstrating Roxen's abilities.. URL: http://linux.kub.trollhattan.se/~ian/hello-world-0.6.tar.gz
pakajla.sh => <reply> $who, pakajla.sh is a script which can pack all subdirs in a dir with one command via tar and bzip2; this is very useful if you check out many files from CVS-trees.. URL: http://kabalak.linuxbox.com/scripts.html
avtv => <reply> $who, avtv is an SVGAlib/X11 program to capture and display TV or video input from all Accuview based TV/Video cards. URL: http://home.sprynet.com/~cbagwell/avtv-0.04.tar.gz
ptkRun => <reply> $who, ptkRun is a program similiar to the Microsoft Windows Run dialog. URL: http://nut.dhs.org/code/ptkrun/src/ptkrun-0.14.tar.gz
GalaxyNG => <reply> $who, Galaxy is a game of interstellar war for several players. URL: http://galaxy.pbem.net/Download/galaxyng.tgz
KLuach => <reply> $who, KLuach is a Jewish calendar program for KDE. URL: ftp://moses.wi.mit.edu/pub/kluach/kluach-0.1.tar.gz
Sirobot => <reply> $who, Sirobot is a Perl script that downloads Web pages recursively. URL: http://www.stud.uni-karlsruhe.de/~uno4/linux/download_sirobot.html
Tube => <reply> $who, Tube is a Hotline client written in Java. URL: http://awacs.dhs.org/software/tube/
kNetmon => <reply> $who, kNetmon provides a user interface similar to the "network neighbourhood" of the Windows Explorer. URL: http://www.tu-ilmenau.de/~lekus/software/knetmon-0.99.1.tgz
psrip => <reply> $who, psrip is a small perl-script that extracts images from postscript files.. URL: http://www.clackas.de/assets/data/psrip-1_2.tgz
svncviewer => <reply> $who, svncviewer is a Linux svgalib VNC viewer with German keyboard mapping; the program can also compile with other national keymaps.. URL: http://www.quietsche-entchen.de/download/
factpacks/Linux.fact view on Meta::CPAN
ZZplayer => <reply> $who, Zplayer is a MPEG-I video player for the KDE environement, based on the SMPEG library. URL: ftp://ftp.kde.org/pub/kde/unstable/apps/multimedia/video/zzplayer-0.2.tar.gz
NotLame MP3 encoder => <reply> $who, NotLame is the resultant executable after applying the LAME patch to ISO source code, compiled without GTK frame analyzer support.. URL: http://hive.me.gu.edu.au/not_lame/notlame350_rh6.tgz
xraw => <reply> $who, xraw is a development kit for creating games, demos, and intros under Linux and derivatives. URL: http://www.informatik.fh-wiesbaden.de/~i656/xraw-12081999.tgz
SocratEase => <reply> $who, SocratEase is a web-based training package with everything needed to build, deliver and track online courses. URL: http://www.SocratEase.com/downloads/trial/
SquirrelMail => <reply> $who, SquirrelMail is a PHP4-based Web email client. URL: http://squirrelmail.sourceforge.net/index.php3?page=5
WebEvent Calendar => <reply> $who, WebEvent is a Web-based calendar and scheduling program. URL: http://www.WebEvent.com/cgi-bin/download.cgi
gps3d => <reply> $who, gps is a set of utilities that lets you manipulate your GPS from your Linux box. URL: http://www.mgix.com/gps3d/gps3d-1.1.tar.bz2
jString => <reply> $who, jString is a class for C++ that extends basic string functionality. URL: http://simple.dhs.org/src/jString/jString-0.1.tar.gz
NatesWinEmu => <reply> $who, In the spirit of GTKTrue, NatesWinEmu is a Windows Emulator for Linux. URL: http://www.udlug.org/~nate/NatesWinEmu.c
GtkExtra => <reply> $who, GTKExtra is a useful set of widgets for creating GUIs for the X Window System using GTK+. URL: http://magnet.fsu.edu/~feiguin/gtk/download.html
Demolization => <reply> $who, Demolization is a strategy game which is a cross between Sid Meier's Civilization and Risk. URL: http://demolization.sourceforge.net/downloads.html
view release on metacpan or search on metacpan
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
#include "daterange.h"
#include "kglobal.h"
#include "klocale.h"
#include "kcalendarsystem.h"
#include <QtCore/QSharedData>
#include <QtCore/QDebug>
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
}
bool DateRange::isValid() const
{
    return KGlobal::locale()->calendar()->isValid(d->m_start) && KGlobal::locale()->calendar()->isValid(d->m_end) && d->m_start <= d->m_end;
}
void DateRange::setStart( const QDate& date )
{
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
// static
DateRange DateRange::weekOf( const QDate& date, DateRangeFlags flags )
{
    const int daysInWeek = KGlobal::locale()->calendar()->daysInWeek( date );
    const int weekStartDay = KGlobal::locale()->weekStartDay();
    const int weekEndDay = dateModulo( weekStartDay+daysInWeek-1, daysInWeek );
    const int dayOfWeek = KGlobal::locale()->calendar()->dayOfWeek( date );
    DateRange range;
    if ( weekStartDay > dayOfWeek )
        range.d->m_start = date.addDays( - (dayOfWeek + daysInWeek - weekStartDay) );
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
// static
DateRange DateRange::monthOf( const QDate& date, DateRangeFlags flags )
{
    DateRange range( KGlobal::locale()->calendar()->firstDayOfMonth( date ),
                     KGlobal::locale()->calendar()->lastDayOfMonth( date ) );
    if( flags & ExcludeFutureDays ) {
        const QDate today = QDate::currentDate();
        if( range.start() <= today && range.end() >= today )
            range.setEnd( today );
    }
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
// static
DateRange DateRange::yearOf( const QDate& date, DateRangeFlags flags )
{
    DateRange range( KGlobal::locale()->calendar()->firstDayOfYear( date ),
                     KGlobal::locale()->calendar()->lastDayOfYear( date ) );
    if( flags & ExcludeFutureDays ) {
        const QDate today = QDate::currentDate();
        if( date.year() == today.year() )
            range.setEnd( today );
    }
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
    range.setStart( range.start().addDays( -1 ) );
    // from that on we go back n-1 weeks, for each of those we call daysInWeek
    for( int i = 1; i < n; ++i ) {
        QDate weekDay = range.start();
        weekDay.addDays( -KGlobal::locale()->calendar()->daysInWeek( weekDay ) );
        range.setStart( weekDay );
    }
    // go back to the start of the next week, thus, reverting the -1 we did above
    range.setStart( range.start().addDays( 1 ) );
t/samples/kdelibs/daterange.cpp view on Meta::CPAN
{
    // This month is the first month
    DateRange range = thisMonth( false );
    // move the start n-1 months back
    range.setStart( KGlobal::locale()->calendar()->addMonths(range.start(), n-1 ) );
    return range;
}