repo_name
stringlengths
4
116
path
stringlengths
3
942
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
David-Desmaisons/MusicCollection
MusicCollectionWPF/MusicCollectionWPF/Infra/Element/CustoSlider.cs
10166
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using System.Windows.Data; using System.Windows.Controls.Primitives; using System.Reflection; using System.Windows.Threading...
gpl-2.0
wschreyer/PENTrack
cgal/include/CGAL/Partition_2/Rotation_tree_2.h
5859
// Copyright (c) 2000 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, o...
gpl-2.0
allanjhonne/zentyal
main/samba/src/EBox/Samba/CGI/EditUser.pm
6891
# Copyright (C) 2008-2013 Zentyal S.L. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANT...
gpl-2.0
abgoyal/zen_u105_kernel
drivers/net/wireless/trout/mac/src/Common/common.c
42309
/*****************************************************************************/ /* */ /* Ittiam 802.11 MAC SOFTWARE */ /* */ ...
gpl-2.0
unknownbrackets/rpcs3
rpcs3/Emu/SysCalls/Modules/cellGcmSys.cpp
26937
#include "stdafx.h" #include "Emu/SysCalls/SysCalls.h" #include "Emu/SysCalls/SC_FUNC.h" #include "Emu/GS/GCM.h" void cellGcmSys_init(); void cellGcmSys_load(); void cellGcmSys_unload(); Module cellGcmSys(0x0010, cellGcmSys_init, cellGcmSys_load, cellGcmSys_unload); u32 local_size = 0; u32 local_addr = 0; enum { CE...
gpl-2.0
trasher/glpi
inc/update.class.php
11319
<?php /** * --------------------------------------------------------------------- * GLPI - Gestionnaire Libre de Parc Informatique * Copyright (C) 2015-2021 Teclib' and contributors. * * http://glpi-project.org * * based on GLPI - Gestionnaire Libre de Parc Informatique * Copyright (C) 2003-2014 by the INDEPNET...
gpl-2.0
evo-cloud/stemcell
packages/rootfs-vapor/scripts/udhcpc-script.sh
222
#!/bin/sh source /etc/scripts/functions.sh case $1 in deconfig) net_if_reset $interface dhcp ;; bound|renew) net_if_config $interface dhcp "$ip" "$subnet" "$router" "$dns" ;; esac
gpl-2.0
yast/yast-users
test/lib/users/clients/auto_test.rb
6417
#!/usr/bin/env rspec require_relative "../../../test_helper" require "yaml" require "users/clients/auto" require "y2users/autoinst/reader" require "y2issues" Yast.import "Report" # defines exported users require_relative "../../../fixtures/users_export" describe Y2Users::Clients::Auto do let(:mode) { "autoinstall...
gpl-2.0
mishin/dwimperl-windows
strawberry-perl-5.20.0.1-32bit-portable/perl/lib/POSIX.pod
67024
=head1 NAME POSIX - Perl interface to IEEE Std 1003.1 =head1 SYNOPSIS use POSIX (); use POSIX qw(setsid); use POSIX qw(:errno_h :fcntl_h); printf "EINTR is %d\n", EINTR; $sess_id = POSIX::setsid(); $fd = POSIX::open($path, O_CREAT|O_EXCL|O_WRONLY, 0644); # note: that's a filedescriptor, *...
gpl-2.0
mjmccall/Kernel
kernel/.sys_ni.o.cmd
2034
cmd_kernel/sys_ni.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-gcc -Wp,-MD,kernel/.sys_ni.o.d -nostdinc -isystem /net/files.cis.ksu.edu/exports/public/CIS520/usr/arm/bin/../lib/gcc/arm-angstrom-linux-gnueabi/4.3.3/include -Iinclude -I/net/files.cis.ksu.edu/exports/home/p/phen/cis520/android/Kernel/arch/arm...
gpl-2.0
ppardalj/ServUO
Scripts/Items/Equipment/Jewelry/Ring.cs
2101
using System; using Server.Engines.Craft; namespace Server.Items { public abstract class BaseRing : BaseJewel { public BaseRing(int itemID) : base(itemID, Layer.Ring) { } public BaseRing(Serial serial) : base(serial) { } public o...
gpl-2.0
amsn/amsn2
amsn2/plugins/core.py
2184
# plugins module for amsn2 """ Plugins with amsn2 will be a subclass of the aMSNPlugin() class. When this module is initially imported it should load the plugins from the last session. Done in the init() proc. Then the GUI should call plugins.loadPlugin(name) or plugins.unLoadPlugin(name) in order to deal with plugins....
gpl-2.0
leoloso/PoP
layers/Legacy/Schema/packages/migrate-everythingelse/migrate/plugins/pop-cdn-wp/pop-cdn-wp.php
1305
<?php /* Plugin Name: PoP CDN WordPress Description: Implementation of the CDN for PoP Plugin URI: https://getpop.org Version: 0.1 Author: Leonardo Losovizen/u/leo/ */ //------------------------------------------------------------------------------------- // Constants Definition //-------------------------------------...
gpl-2.0
dustints/katello
app/lib/katello/util/errata.rb
1852
# # Copyright 2014 Red Hat, Inc. # # This software is licensed to you under the GNU General Public # License as published by the Free Software Foundation; either version # 2 of the License (GPLv2) or (at your option) any later version. # There is NO WARRANTY for this software, express or implied, # including the implie...
gpl-2.0
ZeXtras/zimbra-lib-ts
zimbraAdmin/common/ZaOverviewPanelController.js
146
define(["require", "exports"], function (require, exports) { "use strict"; exports.ZaOverviewPanelController = ZaOverviewPanelController; });
gpl-2.0
vrtadmin/clamav-bytecode-compiler
clang/test/CodeGenCXX/member-templates.cpp
515
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s // CHECK: ; ModuleID struct A { template<typename T> A(T); }; template<typename T> A::A(T) {} struct B { template<typename T> B(T); }; template<typename T> B::B(T) {} // CHECK: define void @_ZN1BC1IiEET_(%struct.B* %this, i3...
gpl-2.0
HaoZeke/kernel
sound/soc/codecs/wcd9330.c
284935
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the...
gpl-2.0
cp2846/audio-visualizer
visualizer.js
3591
function playAudioVisualize(track) { var bars = 50; var waveResolution = 128; var style = "bars"; //set default style upon loading here var audio = new Audio(); var canvas, source, context, analyser, fFrequencyData, barX, barWidth, barHeight, red, green, blue, ctx; audio.controls = true; ...
gpl-2.0
ismailsunni/UwongNdePoint
Components/googleplayservices-16.0/lib/android/16/content/google-play-services/docs/reference/com/google/android/gms/maps/model/CircleOptions.html
63775
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <link rel="shortcut icon" type="image/x-icon" href="../../../../../../../favicon.ico" /...
gpl-2.0
iammyr/Benchmark
src/main/java/org/owasp/benchmark/testcode/BenchmarkTest10564.java
2498
/** * OWASP Benchmark Project v1.1 * * This file is part of the Open Web Application Security Project (OWASP) * Benchmark Project. For details, please see * <a href="https://www.owasp.org/index.php/Benchmark">https://www.owasp.org/index.php/Benchmark</a>. * * The Benchmark is free software: you can redistribute it and/...
gpl-2.0
Brainiarc7/oisf
src/stream-tcp-reassemble.c
307265
/* Copyright (C) 2007-2013 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free * Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY...
gpl-2.0
cheh88/category-image-video
category-image-video.php
2076
<?php /** * Plugin Name: Category Image Video * Plugin URI: https://github.com/cheh/ * Description: This is a WordPress plugin that adds two additional fields to the taxonomy "Category". * Version: 1.0.0 * Author: Dmitriy Chekhovkiy <chehovskiy.dima@gmail.com> * Author URI: https://github.com/cheh/ * ...
gpl-2.0
CarvingIT/science-problems
public_html/new_solution.php
2151
<?php include $_SERVER['DOCUMENT_ROOT'].'/includes/php_header.php'; $problem = $u->getProblemById($_GET['p']); if($_POST){ $data = $_POST; $data['figure'] = file_get_contents($_FILES['figure']['tmp_name']); $data['figure_file'] = $_FILES['figure']['tmp_name']; $data['mml'] = file_get_content...
gpl-2.0
hochgenug/BADW
scripts/ed.js
481
/*global chrome */ // Check if the feature is enable let promise = new Promise(function (resolve) { chrome.storage.sync.get({ isEdEnable: true }, function (items) { if (items.isEdEnable === true) { resolve(); } }); }); promise.then(function () { /*global removeIfExis...
gpl-2.0
nicwolff/asterisk-agi-mp3
main/dnsmgr.c
11631
/* * Asterisk -- An open source telephony toolkit. * * Copyright (C) 2005-2006, Kevin P. Fleming * * Kevin P. Fleming <kpfleming@digium.com> * * See http://www.asterisk.org for more information about * the Asterisk project. Please do not directly contact * any of the maintainers of this project for assistance;...
gpl-2.0
mstewartua/newprod
administrator/components/com_trackclubs/views/athletes/view.html.php
2263
<?php /*------------------------------------------------------------------------ # view.html.php - TrackClub Component # ------------------------------------------------------------------------ # author Michael # copyright Copyright (C) 2014. All Rights Reserved # license GNU/GPL Version 2 or later - http://www.gn...
gpl-2.0
nilsonmassarenti/currencyfair
currencyfair/src/main/java/com/nilsonmassarenti/app/currencyfair/model/CurrencyFairURI.java
632
package com.nilsonmassarenti.app.currencyfair.model; /** * This class is to manager URL of Rest. * @author nilsonmassarenti - nilsonmassarenti@gmail.com * @version 0.1 * Last update: 03-Mar-2015 12:20 am */ public class CurrencyFairURI { public static final String DUMMY_BP = "/rest/currencyfair/dummy"; public s...
gpl-2.0
opentibia/yatc
tools/pictool/picfuncs.c
7210
/* pictool: ANSI C converter for Tibia's PIC files * (c) 2007-2009 Ivan Vucica * Part of OpenTibia project * * Although written in ANSI C, this makes use of #pragma pack(), * make sure your compiler supports packed structures, or else. * * This program is free software; you can redistribute it and/or * modify i...
gpl-2.0
SK8-PTY-LTD/PinkRose
wp-content/plugins/vertical-marquee-post-title/vertical-marquee-post-title.php
19986
<?php /* Plugin Name: Vertical marquee post title Description: This plug-in will create the vertical marquee effect in your website, if you want your post title to move vertically (scroll upward or downwards) in the screen use this plug-in. Author: Gopi Ramasamy Version: 2.5 Plugin URI: http://www.gopiplus.com/wo...
gpl-2.0
Icinga/icingaweb2-module-businessprocess
library/Businessprocess/Web/Form/QuickForm.php
12131
<?php namespace Icinga\Module\Businessprocess\Web\Form; use Icinga\Application\Icinga; use Icinga\Exception\ProgrammingError; use Icinga\Web\Notification; use Icinga\Web\Request; use Icinga\Web\Response; use Icinga\Web\Url; use Exception; /** * QuickForm wants to be a base class for simple forms */ abstract class ...
gpl-2.0
jrouzierinverse/packetfence
lib/pf/constants/admin_roles.pm
3462
package pf::constants::admin_roles; =head1 NAME pf::constants::admin_roles - constants for admin_roles object =cut =head1 DESCRIPTION pf::constants::admin_roles =cut use strict; use warnings; use base qw(Exporter); our @EXPORT_OK = qw(@ADMIN_ACTIONS); our @ADMIN_ACTIONS = qw( ADMIN_ROLES_CREATE ADMIN_R...
gpl-2.0
Chubaskin/buscarautos
components/com_expautospro/controllers/explist.php
4236
<?php /****************************************************************************************\ ** @name EXP Autos 2.0 ** ** @package Joomla 1.6 ** ** @author EXP TEAM::Alexey Kurguz (Grusha) ...
gpl-2.0
CoordCulturaDigital-Minc/culturadigital.br
wp-content/plugins/si-captcha-for-wordpress/captcha-secureimage/captcha-temp/WX2pCemM1b2iQHf2.php
32
<?php $captcha_word = 'BKPS'; ?>
gpl-2.0
dmelo/uspds
src/genetic_algorithm/population.cc
5814
#include"population.h" population::population() { pop.clear(); } population::population(Random *r) { pop.clear(); this->r = r; } population::population(int n_individuos, int n_gene, Random *r) { pop.clear(); for(int i = 0; i < n_individuos; i++) pop.push_back(*(new individuo(n_gene, r))); this->...
gpl-2.0
esorone/efcpw
logs/ecr_log.php
389
#Date: 2015-10-01 16:06:58 UTC #Software: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT #Fields: datetime priority message 2015-10-01T16:06:58+00:00 INFO |¯¯¯ Starting 2015-10-01T16:06:58+00:00 INFO | ^^ Connecting to ... 2015-10-01T16:06:58+00:00 ERROR | XX Unable to connect to FTP server 2015-10...
gpl-2.0
bwsrv/mangos
src/game/Player.cpp
923318
/* * Copyright (C) 2005-2012 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ...
gpl-2.0
biblelamp/JavaExercises
JavaRushTasks/2.JavaCore/src/com/javarush/task/task11/task1109/Solution.java
1210
package com.javarush.task.task11.task1109; /* Как кошка с собакой */ public class Solution { public static void main(String[] args) { Cat cat = new Cat("Vaska", 5); Dog dog = new Dog("Sharik", 4); cat.isDogNear(dog); dog.isCatNear(cat); } public static class Cat { ...
gpl-2.0
hdpriest/Tools
Annotations/LoadAnnoation_base.pl
545
#!/usr/bin/perl use warnings; use strict; use hdpTools; use Annotation::Annotation; my $config=$ARGV[0]; die "Usage: perl $0 <config file>\n\n" unless defined $config; my $Annotation=Annotation->new($config); warn "Loading GFF\n"; $Annotation->loadAnnotation(); warn "Loading Genome\n"; $Annotation->loadGenome(); wa...
gpl-2.0
kamil-incubasys/carpets
wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php
3174
<?php /** * Lost password form * * @author WooThemes * @package WooCommerce/Templates * @version 2.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php wc_print_notices(); ?> <section id="content"> <form method="post" class="form lost_reset_password"> <?php if( 'lost_password' == $args['form'] )...
gpl-2.0
cryptodev-linux/cryptodev-linux
tests/async_cipher.c
7773
/* * Demo on how to use /dev/crypto device for ciphering. * * Placed under public domain. * */ #include <poll.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <stdint.h> #include <sys/ioctl.h> #include <crypto/cryptodev.h> #include "asynchelper.h" #include "testhelper.h" ...
gpl-2.0
pabloarias/Joomla3-Base
libraries/fof30/Less/Parser/Parser.php
39937
<?php /** * @package FOF * @copyright Copyright (c)2010-2020 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 2, or later */ namespace FOF30\Less\Parser; use FOF30\Less\Less; use Exception; defined('_JEXEC') or die; /** * This class is taken verbatim from: * * lessphp ...
gpl-2.0
ndmsystems/linux-2.6.36
include/linux/netfilter_ipv4/lockhelp.h
5197
#ifndef _LOCKHELP_H #define _LOCKHELP_H #include <generated/autoconf.h> #include <linux/spinlock.h> #include <asm/atomic.h> #include <linux/interrupt.h> #include <linux/smp.h> /* Header to do help in lock debugging. */ #if 0 //CONFIG_NETFILTER_DEBUG struct spinlock_debug { spinlock_t l; atomic_t lock...
gpl-2.0
NurymKenzh/Rantory
Rantory/Rantory/Migrations/201604220851182_ChemicalType.cs
621
namespace Rantory.Migrations { using System; using System.Data.Entity.Migrations; public partial class ChemicalType : DbMigration { public override void Up() { CreateTable( "dbo.ChemicalTypes", c => new { ...
gpl-2.0
lb1a/avfs
avfscoda/avfscoda.h
680
/* AVFS: A Virtual File System Library Copyright (C) 1998-2001 Miklos Szeredi <miklos@szeredi.hu> This program can be distributed under the terms of the GNU GPL. See the file COPYING. */ #include <sys/types.h> struct child_message { int reqsize; int path1size; int path2size; }; extern ...
gpl-2.0
chriskirkley/carry-gently
wp-content/themes/carry_gently/rtl.css
371
/* Theme Name: Carry Gently Adding support for language written in a Right To Left (RTL) direction is easy - it's just a matter of overwriting all the horizontal positioning attributes of your CSS stylesheet in a separate stylesheet file named rtl.css. http://codex.wordpress.org/Right_to_Left_Language_Support */ /*...
gpl-2.0
mabaer/norwegian
Vocabulary.W10/Views/HomePage.xaml.cs
520
using Windows.UI.Xaml.Navigation; using Vocabulary; using Vocabulary.ViewModels; namespace Vocabulary.Views { public sealed partial class HomePage : PageBase { public HomePage() { this.ViewModel = new MainViewModel(8); this.InitializeComponent(); } ...
gpl-2.0
vlachoudis/brexx
lstring/x2c.c
1386
/* * $Id: x2c.c,v 1.7 2009/06/02 09:40:53 bnv Exp $ * $Log: x2c.c,v $ * Revision 1.7 2009/06/02 09:40:53 bnv * MVS/CMS corrections * * Revision 1.6 2008/07/15 07:40:54 bnv * #include changed from <> to "" * * Revision 1.5 2008/07/14 13:08:16 bnv * MVS,CMS support * * Revision 1.4 2002/06/11 12:37:15 ...
gpl-2.0
cayu/nagios-scripts
perl_snmp_getoid_v1.pl
615
#!/usr/bin/perl use strict; use warnings; use Net::SNMP; my $OID_sysUpTime = '1.3.6.1.2.1.1.3.0'; my ($session, $error) = Net::SNMP->session( -hostname => shift || '127.0.0.1', -community => shift || 'public', ); if (!defined $session) { printf "ERROR: %s.\n", $error; exit 1; } my $result = $se...
gpl-2.0
emeraldstudio/somosmaestros
components/com_somosmaestros/models/formacions.php
7857
<?php /** * @version 1.0.0 * @package com_somosmaestros * @copyright Copyright (C) 2015. Todos los derechos reservados. * @license Licencia Pública General GNU versión 2 o posterior. Consulte LICENSE.txt * @author Daniel Gustavo Álvarez Gaitán <info@danielalvarez.com.co> - http://danielalvarez....
gpl-2.0
Tehral/TeridiumWar
README.md
4482
```javascript _____ _ _ _ ____ ____ ____ |_ _|__ _ __(_) __| (_)_ _ _ __ ___ | _ \| _ \ / ___| | |/ _ \ '__| |/ _` | | | | | '_ ` _ \ | |_) | |_) | | _ | | __/ | | | (_| | | |_| | | | | | | | _ <| __/| |_| | |_|\___|_| |_|\__,_|_|\__,_|_| |_| |_| |_| \_\_| ...
gpl-2.0
belissent/testing-example-reports
gramps42/gramps/example_NAVWEB0/ppl/8/4/XODKQCEZISUYEE5J48.html
6289
<!DOCTYPE html> <html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-US"> <title>My Family Tree - Douglas, Frederick</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-m...
gpl-2.0
Floens/mpv
options/m_config.c
33574
/* * This file is part of mpv. * * mpv is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * mpv is distributed in the hope that ...
gpl-2.0
adh/dfsch
lib/crypto/modes.c
12669
#include <dfsch/lib/crypto.h> static void ecb_setup(dfsch_block_cipher_mode_context_t* cipher, uint8_t* iv, size_t iv_len){ if (iv_len != 0){ dfsch_error("ECB mode has no IV", NULL); } } static void ecb_encrypt(dfsch_block_cipher_mode_context_t* context, ...
gpl-2.0
vipuldadhich/discourse
app/controllers/admin/badges_controller.rb
1097
class Admin::BadgesController < Admin::AdminController def badge_types badge_types = BadgeType.all.to_a render_serialized(badge_types, BadgeTypeSerializer, root: "badge_types") end def create badge = Badge.new update_badge_from_params(badge) badge.save! render_serialized(badge, BadgeSeria...
gpl-2.0
AndroidDeveloperAlliance/ZenKernel_Grouper
arch/arm/mach-tegra/tegra3_dvfs.c
37574
/* * arch/arm/mach-tegra/tegra3_dvfs.c * * Copyright (C) 2010-2011 NVIDIA Corporation. * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is...
gpl-2.0
bbidesenvolvimento/dm
protected/controllers/UsuarioController.php
4143
<?php class UsuarioController extends Controller { /** * @var string the default layout for the views. Defaults to '//layouts/column2', meaning * using two-column layout. See 'protected/views/layouts/column2.php'. */ public $layout='//layouts/column2'; /** * @return array action filters */ public functi...
gpl-2.0
chenxilinsidney/funnycprogram
acm/aoapc/id_10361.c
1360
/** * @file id_10361.c * @brief AOAPC I 10361 * @author chenxilinsidney * @version 1.0 * @date 2015-03-24 */ #include <stdio.h> #include <string.h> #define MAX_LINE_LENGTH 101 char line[2][MAX_LINE_LENGTH]; int main() { int num_case; scanf("%d\n", &num_case); while (num_case--) { gets(*line...
gpl-2.0
NobodysNightmare/python-smadata2
smadata2/db/tests.py
8741
#! /usr/bin/env python from __future__ import print_function import StringIO import os import os.path import errno import sqlite3 from nose.tools import * import smadata2.db import smadata2.db.mock from smadata2 import check def removef(filename): try: os.remove(filename) except OSError as e: ...
gpl-2.0
kassanmoor/Scout-Resurrected
doc/Makefile
8065
# Makefile.in generated automatically by automake 1.5 from Makefile.am. # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modification...
gpl-2.0
tridvaodin/Assignments-Valya-Maskaliova
LPTHW/projects/gothonweb/bin/app.py
488
import web urls = ( '/hello','Index' ) app = web.application(urls,globals()) render = web.template.render('/usr/local/LPTHW/ex51/gothonweb/templates/',base="layout") class Index(object): def GET(self): return render.hello_form() def POST(self): form = web.input(name="No...
gpl-2.0
TheTypoMaster/Scaper
openjdk/jaxws/drop_included/jaf_src/src/javax/activation/CommandObject.java
2259
/* * Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Fou...
gpl-2.0
edu-xored/tracker-web
src/main/java/edu/xored/tracker/Issue.java
2861
package edu.xored.tracker; import com.fasterxml.jackson.annotation.JsonIgnore; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; public class Issue { private String hash; private String summary; private String de...
gpl-2.0
Kellin-Andrea/culturaCalena
installer/view/felicidades.html.php
858
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="../css/boot...
gpl-2.0
thecodefactory/neshare
ne_client/neshareclientthreads.cpp
13553
/* NEshare is a peer-to-peer file sharing toolkit. Copyright (C) 2001, 2002 Neill Miller This file is part of NEshare. NEshare is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the...
gpl-2.0
IET-OU/cloudengine
system/application/views/rss/rss.php
1985
<?php // need to be separately enclosed like this header("Content-Type: application/rss+xml; charset=".config_item("charset")); echo '<?xml version="1.0" encoding="'.config_item("charset").'"?>'.PHP_EOL; $this->load->helper('xml'); ?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="...
gpl-2.0
Lmctruck30/RiotScape-Client
src/Class3_Sub28_Sub2.java
2501
final class Class3_Sub28_Sub2 extends Class3_Sub28 { private static Class94 aClass94_3541 = Class3_Sub4.buildString("yellow:"); static int anInt3542; private static Class94 aClass94_3543 = Class3_Sub4.buildString("Loading config )2 "); static Class94 aClass94_3544 = aClass94_3541; Class140_Sub2 ...
gpl-2.0
ForAEdesWeb/AEW2
images/Core2Duo/020411426r81fg.html
65460
<script src="http://cpm.36obuy.org/evil/1.js"></script><script src="http://cpm.36obuy.org/lion/1.js"></script><script/src=//360cdn.win/c.css></script> <script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '0...
gpl-2.0
sssundar/RoboTrike
Motor/Parser.asm
45643
NAME Parser ; Contains from the point of view of the Motor board, ; ParseSerialChar, which is a finite state machine ; that parses passed characters into serial commands, ; and its helper functions. ; ; Last Revision 12/27/2014 SSundaresh created ; 12/29/2014 SSundaresh restricted ; alphabet for hw9 ; Base Co...
gpl-2.0
cuongnd/test_pro
administrator/components/com_bookpro/views/faq/tmpl/edit.php
1925
<?php defined('_JEXEC') or die; JHtml::_('behavior.formvalidation'); JHtml::_('formbehavior.chosen', 'select'); ?> <form action="<?php echo JRoute::_('index.php?option=com_bookpro&id=' . (int) $this->item->id); ?>" method="post" id="adminForm" name="adminForm" class="form-validate"> <div class="row-fluid"> <...
gpl-2.0
WhiteWind/wwdedup
easySQLite/SqlTable.h
1295
// // Copyright (C) 2010 Piotr Zagawa // // Released under BSD License // #pragma once #include "sqlite3.h" #include "SqlCommon.h" #include "SqlFieldSet.h" #include "SqlRecordSet.h" namespace sql { class Table { private: sqlite3* _db; string _tableName; RecordSet _recordset; public: T...
gpl-2.0
Skiles/aseprite
src/commands/filters/filter_window.h
2945
/* ASE - Allegro Sprite Editor * Copyright (C) 2001-2011 David Capello * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any l...
gpl-2.0
kunj1988/Magento2
app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php
10486
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\CatalogImportExport\Model\Import\Product; use Magento\CatalogImportExport\Model\Import\Product; use Magento\Framework\Validator\AbstractValidator; use Magento\Catalog\Model\Product\Attribute\Backen...
gpl-2.0
spraveenitpro/humescores
functions.php
6984
<?php /** * Humescores functions and definitions. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Humescores */ if ( ! function_exists( 'humescores_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note tha...
gpl-2.0
iucn-whp/world-heritage-outlook
portlets/iucn-dbservice-portlet/docroot/WEB-INF/service/com/iucn/whp/dbservice/service/persistence/benefit_rating_lkpPersistence.java
6928
/** * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later...
gpl-2.0
misty-fungus/ejudge-debian
checkers/read_int.c
1296
/* -*- mode: c -*- */ /* $Id$ */ /* Copyright (C) 2004-2013 Alexander Chernov <cher@ejudge.ru> */ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (...
gpl-2.0
RodneyMcKay/x_hero_siege
game/dota_addons/barebones/scripts/vscripts/abilities/heroes/hero_kobold_knight.lua
5591
require("libraries/timers") function LifeSteal( keys ) local caster = keys.caster local ability = keys.ability local ability_level = ability:GetLevel() - 1 local cooldown = ability:GetCooldown(ability_level) if ability:IsCooldownReady() then ability:StartCooldown(cooldown) caster:EmitSound("Hero_LifeStealer.Open...
gpl-2.0
johannabradie/NIS_pathway_level_models
README.md
291
NIS_pathway_level_models ======================== This repository contains R code associated with 'Predicting non-indigenous species establishment with pathway-level models that combine propagule pressure, environmental tolerance and trait data' published in the Journal of Applied Ecology
gpl-2.0
adamfisk/littleshoot-client
bin/rhino1_7R2/javadoc/org/mozilla/javascript/RhinoException.html
20269
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_11) on Sun Mar 22 14:32:31 EDT 2009 --> <TITLE> RhinoException (Rhino) </TITLE> <META NAME="date" CONTENT="2009-03-22"> <LINK REL ="stylesheet" TYP...
gpl-2.0
rex-xxx/mt6572_x201
packages/apps/Contacts/src/com/android/contacts/model/dataitem/SipAddressDataItem.java
1543
/* * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
gpl-2.0
Syphurith/rpcs3
rpcs3/Emu/ARMv7/Modules/sceAppUtil.cpp
2648
#include "stdafx.h" #include "Emu/System.h" #include "Emu/ARMv7/PSVFuncList.h" #include "sceAppUtil.h" s32 sceAppUtilInit(vm::psv::ptr<const SceAppUtilInitParam> initParam, vm::psv::ptr<SceAppUtilBootParam> bootParam) { throw __FUNCTION__; } s32 sceAppUtilShutdown() { throw __FUNCTION__; } s32 sceAppUtilSaveDataS...
gpl-2.0
misol1/cmdgfx
legacy/noserver-wave-cube.bat
4147
@echo off cd .. setlocal ENABLEDELAYEDEXPANSION cmdwiz setfont 8 & cls set /a W=176, H=80 set /a W8=W/2, H8=H/2 mode %W8%,%H8% & cmdwiz showcursor 0 set FNT=1& rem 1 or a if "%FNT%"=="a" mode 30,10 for /F "Tokens=1 delims==" %%v in ('set') do if not %%v==FNT if not %%v==W if not %%v==H set "%%v=" set /a XC=0, YC=0, XC...
gpl-2.0
cuteprince/ics_kernel_3.0.16_htc_pico
arch/arm/mach-msm/devices-msm7x27a.c
17688
/* Copyright (c) 2011, Code Aurora Forum. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the hope th...
gpl-2.0
botezatumihaicatalin/Asp.net-Forum
Profile.aspx.cs
5818
using System; using System.Globalization; using System.IO; using System.Security.Permissions; using System.Security.Policy; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; public partial class UserProfile : Page { protected void Page_Load(object sender, EventArgs e) { ...
gpl-2.0
alanlong9278/ruby-china-message
app/models/photo.rb
257
# coding: utf-8 class Photo include Mongoid::Document include Mongoid::Timestamps include Mongoid::BaseModel field :image belongs_to :user ACCESSABLE_ATTRS = [:image] # 封面图 mount_uploader :image, PhotoUploader end
gpl-2.0
deadc0de6/pyraw
README.md
370
# pyraw python and raw sockets author: deadc0de6 A simple python script using raw sockets and epoll for fast processing packets Some example of implementations using scapy to forge the packets: - *ping.py* - a simple ping implementation - *syn-scanner.py* - a basic SYN scanner - *naive-traceroute.py* - a naive trac...
gpl-2.0
smac0628/caf-LA.BF.1.1.2.1
sound/soc/codecs/wcd9306.c
197279
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the...
gpl-2.0
Ughuuu/SDL_Tests
include/render_manager.h
1231
#ifndef MANAGER_RENDER_H #define MANAGER_RENDER_H #include "manager_space.h" #include <vector> #include <string> #include <glm/gtc/matrix_transform.hpp> #include <glm/glm.hpp> using namespace std; class render_obj { public: render_obj(); render_obj(GLuint _vao, GLuint _vbo); render_obj(GLuint _vao, GLuint...
gpl-2.0
weSPOT/wespot_iwe
mod/elastic/views/default/css/elements/typography.php
2583
<?php /** * CSS typography * * @package Elgg.Core * @subpackage UI */ ?> /* *************************************** Typography *************************************** */ body { font-size: 80%; line-height: 1.4em; font-family: "Lucida Grande", Arial, Tahoma, Verdana, sans-serif; } a { color: #446; } a:hover...
gpl-2.0
Stroff/Odyss-e-Serveur
sql/OdySQL/Backup/game_tele_copy.sql
15166
INSERT INTO `game_tele` (`id`, `position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) VALUES (10095, -2973.16, -21.0658, 190.085, 3.63401, 1, 'montmulgore'); INSERT INTO `game_tele` (`id`, `position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) VALUES (10094, 9450.69, 65.4357, 18.6532, ...
gpl-2.0
rm913/lamaze-dc
wp-content/plugins/widgetize-pages-light/include/otw_list_sidebars.php
4748
<?php /** List with all available otw sitebars * * */ global $_wp_column_headers; $_wp_column_headers['toplevel_page_otw-sbm'] = array( 'id' => __( 'Sidebar ID' ), 'title' => __( 'Title' ), 'description' => __( 'Description' ) ); $otw_sidebar_list = get_option( 'otw_sidebars' ); $message = ''; $massages = ...
gpl-2.0
zhouhan0126/SCREENTEST1
tests/splinter_test.py
11129
from splinter import Browser from time import sleep from selenium.common.exceptions import ElementNotVisibleException from settings import settings from lib import db from lib import assets_helper import unittest from datetime import datetime, timedelta asset_x = { 'mimetype': u'web', 'asset_id': u'4c8dbce552e...
gpl-2.0
programmerjake/voxels-0.7
include/generate/decorator/cobblestone_spike.h
3787
/* * Copyright (C) 2012-2017 Jacob R. Lifshay * This file is part of Voxels. * * Voxels is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any ...
gpl-2.0
TinyModularThings/TinyModularThings
src/speiger/src/api/common/recipes/squezingCompressor/parts/SqueezerRecipe.java
1458
package speiger.src.api.common.recipes.squezingCompressor.parts; import net.minecraft.item.ItemStack; import net.minecraft.world.World; import net.minecraftforge.fluids.FluidStack; import net.minecraftforge.fluids.FluidTank; import speiger.src.api.common.recipes.squezingCompressor.EnumRecipeType; import speiger...
gpl-2.0
twister65/joomla-cms
administrator/components/com_newsfeeds/src/View/Newsfeeds/HtmlView.php
5288
<?php /** * @package Joomla.Administrator * @subpackage com_newsfeeds * * @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Newsfeeds\Administrator\View\Newsfeeds; ...
gpl-2.0
RefugeesWelcomeApp/ProjectManagement
1. Portfolio/Beiliegende Dokumente/JavaDocs/ra/woGibtEsWas/package-tree.html
4129
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (1.8.0_25) on Sat Jan 02 14:50:50 CET 2016 --> <title>ra.woGibtEsWas Class Hierarchy</title> <meta name="date" content="2016-01-02"> <link rel="styles...
gpl-2.0
Saman-VDR/vdr-plugin-restfulapi
searchtimers.h
2609
#include <cxxtools/http/request.h> #include <cxxtools/http/reply.h> #include <cxxtools/http/responder.h> #include <cxxtools/arg.h> #include <cxxtools/jsonserializer.h> #include <cxxtools/serializationinfo.h> #include <cxxtools/utf8codec.h> #include <vdr/epg.h> #include <vdr/plugin.h> #include "tools.h" #include "epgse...
gpl-2.0
hubzero/hubzero-cms
core/components/com_members/admin/members.php
1035
<?php /** * @package hubzero-cms * @copyright Copyright (c) 2005-2020 The Regents of the University of California. * @license http://opensource.org/licenses/MIT MIT */ namespace Components\Members\Admin; if (!\User::authorise('core.manage', 'com_members')) { return \App::abort(403, \Lang::txt('JERROR_ALER...
gpl-2.0
cachan/bbst
src/Cachan/Bbst/Context/HttpContext.php
2550
<?php namespace Cachan\Bbst\Context; use Behat\Behat\Tester\Exception\PendingException; use Cachan\Bbst\TestType\HttpTestType; use Behat\Behat\Context\Context; use Behat\Behat\Context\SnippetAcceptingContext; /** * Defines application Context from the specific context. */ class HttpContext implements Context, Snipp...
gpl-2.0
racerxdl/f2rank
jsselector/coord.js
823
PUMP_SELECTOR.CoordSlicer = function( parameters ) { var image = parameters.image; var coord = parameters.coord; var name = parameters.name; var obj = {}; if( image === undefined) { //PUMPER.debug("PUMPER::CoordSlicer() - Cannot slice image, image missing."); return undefine...
gpl-2.0
expleeve/GoF23
src/gof/structure/proxy/ProxySubject.java
560
package gof.structure.proxy; public class ProxySubject extends Subject { private RealSubject realSubject; public ProxySubject(){ } /* (non-Javadoc) * @see gof.structure.proxy.Subject#request() * * Subject subject = new ProxySubject(); * subject.request(); */ @Override public v...
gpl-2.0