repo_name
stringlengths
4
116
path
stringlengths
4
379
size
stringlengths
1
7
content
stringlengths
3
1.05M
license
stringclasses
15 values
emundus/v6
plugins/fabrik_element/captcha/layouts/fabrik-element-captcha-nocaptcha.php
247
<?php defined('JPATH_BASE') or die; $d = $displayData; ?> <div class ="g-recaptcha" data-sitekey="<?php echo $d->site_key; ?>"></div> <script src="https://www.google.com/recaptcha/api.js?hl=<?php echo $d->lang; ?>" async defer></script>
gpl-2.0
CERT-Polska/n6sdk
n6sdk/data_spec/__init__.py
26527
# -*- coding: utf-8 -*- # Copyright (c) 2013-2016 NASK. All rights reserved. """ .. note:: For basic information how to use the classes defined in this module -- please consult the :ref:`data_spec_class` chapter of the tutorial. """ import collections from pyramid.decorator import reify from n6sdk.data_spe...
gpl-2.0
zturtleman/mm3d
src/implui/animexportwin.cc
9198
/* Maverick Model 3D * * Copyright (c) 2004-2007 Kevin Worcester * * 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...
gpl-2.0
AlexKotikov/calcWithBrackets
src/org/kotikov/calc/PageBuilder.java
8010
package org.kotikov.calc; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.swing.text.Position; /* * Класс преобразует: [4|1+2, 3|*3, 2|+4, 1|-5, 0|/6] В структуру: [4|1+2, 3|*3, 2|+4, 1|-5, 0|/6] 1|-------- 4|1+2 2|-------- 3|*3 3|------...
gpl-2.0
prosthetichead/Arcadia
Arcadia/TextChanger.cpp
640
#include "TextChanger.h" TextChanger::TextChanger(assetHandle* ah_ref ) { ah = ah_ref; changeTimer = 0; index = 0; } TextChanger::~TextChanger(void) { } void TextChanger::setText(std::vector<std::string> textVector, int speed) { text = textVector; changeSpeed = speed; changeTimer = 0; index = 0; } void ...
gpl-2.0
aaronr/Quantum-GIS
src/app/legend/qgsapplegendinterface.cpp
3811
/*************************************************************************** qgsapplegendinterface.cpp -------------------------------------- Date : 19-Nov-2009 Copyright : (C) 2009 by Andres Manz Email : manz dot andres at gmail dot com *******************...
gpl-2.0
imfaber/imfaber_v2
vendor/doctrine/collections/lib/Doctrine/Common/Collections/Collection.php
8571
<?php /* * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS B...
gpl-2.0
guod08/druid
server/src/test/java/io/druid/segment/realtime/plumber/MessageTimeRejectionPolicyFactoryTest.java
1633
/* * Druid - a distributed column store. * Copyright (C) 2012, 2013 Metamarkets Group Inc. * * 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 you...
gpl-2.0
ReagentX/heidnerComputerScienceProjects
Temp Sardegna Stuff/Constructions/BoatRunner.java
248
/** * Write a description of class BoarRunner here. * * Chris Sardegna * 10/22/13 */ public class BoatRunner { public BoatRunner(){ } public static void main(String args []){ Boat boat1 = new Boat(); } }
gpl-2.0
alinelena/aten
src/command/measure.cpp
4435
/* *** Measurement Commands *** src/command/measure.cpp Copyright T. Youngs 2007-2016 This file is part of Aten. Aten 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 3 of the License, or (...
gpl-2.0
doodz/AppSshForm
ApptestSsh/ApptestSsh/View/Base/LocalOmvViewModel.cs
3528
using Doods.StdFramework.Interfaces; using Doods.StdFramework.Views.PopupPages; using Omv.Rpc.StdClient.Clients; using Omv.Rpc.StdClient.Datas; using Omv.Rpc.StdClient.Services; using Rg.Plugins.Popup.Extensions; using System.Threading.Tasks; namespace ApptestSsh.Core.View.Base { public enum ProgressContentViewS...
gpl-2.0
akashche/tzdbgen
src/main/java/build/tools/tzdb/support/com/redhat/openjdk/support7/LongUtils.java
1446
/* * Copyright 2015 Red Hat, Inc. * * 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, or (at your * option) any later version. * * This program is distributed in the hope...
gpl-2.0
stalepig/deep-mucosal-imaging
CURRENT-dmi_0.2/Batch_stitch.py
912
import glob import os from ij import IJ from ij.io import DirectoryChooser dc = DirectoryChooser("Choose directory of LSM files...") dirPath = dc.getDirectory() if dirPath is not None: fileList = glob.glob(dirPath+"*.lsm") for path in fileList: basename = os.path.splitext(os.path.basename(path))[0] outputPath =...
gpl-2.0
qkitgroup/qkit
qkit/drivers/Keithley_2000.py
4848
# filename: Keithley_2000.py # version 0.1 written by JB,JNV, HR@KIT 2017- # QKIT driver for a Keithley Multimeter 2000 # 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 ...
gpl-2.0
mgratch/metroinvestments
wp-content/plugins/pods/classes/fields/phone.php
9142
<?php /** * @package Pods\Fields */ class PodsField_Phone extends PodsField { /** * Field Type Group * * @var string * @since 2.0 */ public static $group = 'Text'; /** * Field Type Identifier * * @var string * @since 2.0 */ public static $type = 'pho...
gpl-2.0
shunghsiyu/OpenJML_XOR
OpenJML/tests/tests/deprecation.java
2184
package tests; /** This tests that extensions are prohibited by -strict. * (I suppose we should test that every non-extension is allowed by -strict, but we don't.) */ import org.junit.Test; import com.sun.tools.javac.main.OptionName; public class deprecation extends TCBase { String opt = OptionNa...
gpl-2.0
fritsch/xbmc
xbmc/interfaces/legacy/ModuleXbmc.cpp
15818
/* * Copyright (C) 2005-2013 Team XBMC * http://kodi.tv * * 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, or (at your option) * any later version. * * T...
gpl-2.0
edna-pws/soto
wp-content/plugins/tiny-compress-images/src/class-tiny-compress-fopen.php
2803
<?php /* * Tiny Compress Images - WordPress plugin. * Copyright (C) 2015 Voormedia B.V. * * 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) * a...
gpl-2.0
neilxdsouza/codehelper
src/global_variables.cpp
267
#include "global_variables.h" #include "ui_navigation_order.h" namespace global_variables { int nGraphNodes; std::vector<int> topologicalOrder; std::string output_code_directory_prefix = "output/CppCodeGenerator/"; UiNavigationOrderType ui_navigation_order; }
gpl-2.0
yama/zencart1302-ja
zc_install/techsupp.php
16631
<? //You must enter YOUR email address ($myemail on line below). $myemail ="YOUR_EMAIL_ADDRESS_GOES_HERE"; // **************************************************************** // * TECHSUPP.PHP // * v1.2f June 22, 2005 // * // * Tech Support tool to collect server and Zen Cart config info // * Results can t...
gpl-2.0
DNPA/OcfaArch
datainput/kaas/src/kaas.cpp
8764
// The Open Computer Forensics Architecture. // Copyright (C) 2003..2006 KLPD <ocfa@dnpa.nl> // // 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
Tjdowdell/Susan_Batchelor_Website
wp-content/plugins/appointment-booking/backend/modules/calendar/resources/js/ng-appointment_dialog.js
30310
;(function() { var module = angular.module('appointmentDialog', ['ui.date', 'customerDialog']); /** * DataSource service. */ module.factory('dataSource', function($q, $rootScope, $filter) { var ds = { loaded : false, data : { staff : [], ...
gpl-2.0
hydrodog/lightwcsp
hydroprot/server.cc
3858
#include <iostream> #include <cstdlib> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #include <arpa/inet.h> #include <sys/wait.h> #include <sys/stat.h> #include <signal.h> #include <cstring> #include <string> #include <csignal> #include ...
gpl-2.0
FFMG/myoddweb.piger
monitor/api/python/Python-3.7.2/Lib/test/test_functools.py
82757
import abc import builtins import collections import collections.abc import copy from itertools import permutations import pickle from random import choice import sys from test import support import threading import time import typing import unittest import unittest.mock from weakref import proxy import contextlib imp...
gpl-2.0
nigelb/hbase-cluster-launch
hbase_cluster_launcher/launch.py
1867
#hbase_cluster-launcher is a tool for launching HBase clusters on #Openstack clouds # #Copyright (C) 2013 NigelB # #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, ...
gpl-2.0
projectestac/wordpress-gce
third-party/nesbot/carbon/src/Carbon/Lang/sc.php
374
<?php namespace SimpleCalendar\plugin_deps; /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alpha...
gpl-2.0
optimized4u/ProjectTrackingWebsite
ProjectTrackingServices/Areas/HelpPage/App_Start/HelpPageConfig.cs
6517
// Uncomment the following to provide samples for PageResult<T>. Must also add the Microsoft.AspNet.WebApi.OData // package to your project. ////#define Handle_PageResultOfT using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using ...
gpl-2.0
jescarri/mqtt-ruby-push_to_rest
bin/mttq-temp-display.rb
6250
#!/usr/bin/ruby #################################################################################### # Author: Jesus Carrillo jesuscarrillo8 at gmail.com #################################################################################### # License: GPL V2 ###############################################################...
gpl-2.0
marktriggs/vufind
web/services/MyResearch/Account.php
4757
<?php /** * Account action for MyResearch module * * PHP version 5 * * Copyright (C) Villanova University 2007. * * 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 p...
gpl-2.0
learnsqr/cursoZf2
module/cinema/src/cinema/Module.php
502
<?php namespace cinema; use ZF\Apigility\Provider\ApigilityProviderInterface; class Module implements ApigilityProviderInterface { public function getConfig() { return include __DIR__ . '/../../config/module.config.php'; } public function getAutoloaderConfig() { return array( ...
gpl-2.0
s3rvac/fit-projects
PDB/nbproject/src/zoo/ObjectData.java
1638
/** * Project: PDB 2008 * Authors: Ondrej Lengal, xlenga00@stud.fit.vutbr.cz * Libor Polcak, xpolca03@stud.fit.vutbr.cz * Boris Prochazka, xproch63@stud.fit.vutbr.cz * Petr Zemek, xzemek02@stud.fit.vutbr.cz * * @brief Data of a drawable object from a db. * */ pac...
gpl-2.0
newmind/uvnc_rds
uvnc_settings/uvnc_settings/inifile.cpp
2641
#include "stdafx.h" #include "inifile.h" IniFile::IniFile() { char WORKDIR[MAX_PATH]; if (GetModuleFileName(NULL, WORKDIR, MAX_PATH)) { char* p = strrchr(WORKDIR, '\\'); if (p == NULL) return; *p = '\0'; } strcpy(myInifile,""); strcat(myInifile,WORKDIR);//set the directory strcat(myInifile,"\\"); strcat...
gpl-2.0
mviitanen/marsmod
mcp/src/minecraft/net/minecraft/block/BlockLever.java
14444
package net.minecraft.block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.util.AxisAlignedBB; import net.minecraft.uti...
gpl-2.0
BarloworldTransport/MAXSelenium
MAX_CreateNewUser.php
2993
<?php // Set error reporting level for this script error_reporting(E_ALL); // : Includes // : End /** * MAX_CreateNewUser.php * * @package MAX_CreateNewUser * @author Clinton Wright <cwright@bwtrans.com> * @copyright 2013 onwards Barloworld Transport (Pty) Ltd * @license GNU GPL * @link http://www.gnu.org/lic...
gpl-2.0
Chubaskin/buscarautos
components/com_expautospro/controllers/expimages.php
4348
<?php /****************************************************************************************\ ** @name EXP Autos 2.0 ** ** @package Joomla 1.6 ** ** @author EXP TEAM::Alexey Kurguz (Grusha) ...
gpl-2.0
RicardoLans/KraakJeRot
ResourceFramework/obj/Debug/UserControls/NPCs/Arms/RightArm1.g.i.cs
1985
#pragma checksum "D:\GitHub\KraakJeRot\ResourceFramework\UserControls\NPCs\Arms\RightArm1.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "B1259B4B06362553C3A1C7C0A01E6CDD" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // ...
gpl-2.0
hmatuschek/intrinsic-noise-analyzer
app/models/variableruledelegate.cc
2297
#include "variableruledelegate.hh" #include "../views/variableruleeditor.hh" #include <QApplication> #include <sstream> using namespace iNA; SpeciesRuleDelegate::SpeciesRuleDelegate(iNA::Ast::Model &model, QObject *parent) : QItemDelegate(parent), _model(model) { // Pass... } QWidget * SpeciesRuleDelegate::cr...
gpl-2.0
Ankama/harvey
src/com/ankamagames/dofus/harvey/numeric/longs/sets/interfaces/ICompositeContinuousLongSet.java
642
/** * */ package com.ankamagames.dofus.harvey.numeric.longs.sets.interfaces; import java.util.List; import com.ankamagames.dofus.harvey.engine.common.sets.interfaces.ICompositeContinuousSet; import org.eclipse.jdt.annotation.NonNullByDefault; /** * @author sgros * */ @NonNullByDefault public interface IComposi...
gpl-2.0
saltmktg/meetingtomorrow.com
wp-content/plugins/nelio-ab-testing/includes/admin/alternatives/post-alt-exp-edition-page-controller.php
8328
<?php /** * Copyright 2013 Nelio Software S.L. * This script is distributed under the terms of the GNU General Public * License. * * This script 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 ve...
gpl-2.0
ctomiao2/ScrewTurnWiki
FSProviders/SqlCECommandBuilder.cs
4013
 using System; using System.Collections.Generic; using System.Text; using ScrewTurn.Wiki.Plugins.SqlCommon; using System.Data.Common; using System.Data.SqlClient; using System.Data.SqlServerCe; namespace ScrewTurn.Wiki.Plugins.FSProviders { /// <summary> /// Implements a command builder for SQL CE. /// </summary>...
gpl-2.0
osreboot/Telekinetic-Reality
src/com/osreboot/tr/main/Help.java
4231
package com.osreboot.tr.main; import java.util.ArrayList; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.Material; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.meta.ItemMeta; public class Help { public static ItemStack intro, sc...
gpl-2.0
paperblag/karizia
wp-content/themes/twentythirteen/content.php
2262
<?php /** * The default template for displaying content * * Used for both single and index/archive/search. * * @package WordPress * @subpackage Twenty_Thirteen * @since Twenty Thirteen 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( has_post_t...
gpl-2.0
cwrc/CWRC-Writer
src/js/modules/selection.js
2019
define(['jquery','jquery.snippet'], function($, snippet) { /** * @class Selection * @param {Object} config * @param {Writer} config.writer * @param {String} config.parentId */ return function(config) { var w = config.writer; var lastUpdate = new Date().getTime(); $('#'+config.parent...
gpl-2.0
streamsupport/streamsupport
src/tests/java/org/openjdk/tests/tck/ThreadLocalRandom8Test.java
8829
/* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ */ package org.openjdk.tests.tck; import java8.util.concurrent.ThreadLocalRandom; import java.util.concurrent.atomic.AtomicInte...
gpl-2.0
stweil/TYPO3.CMS
typo3/sysext/workspaces/Configuration/RequestMiddlewares.php
1374
<?php /** * Definitions for middlewares provided by EXT:workspaces */ return [ 'frontend' => [ 'typo3/cms-workspaces/preview' => [ 'target' => \TYPO3\CMS\Workspaces\Middleware\WorkspacePreview::class, 'after' => [ // A preview user will override an existing logged-i...
gpl-2.0
WillDignazio/hotspot
src/share/vm/runtime/globals.hpp
302505
/* * Copyright (c) 1997, 2015, Oracle and/or its affiliates. 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 ...
gpl-2.0
collective/ECSpooler
lib/soapwrapper.py
7578
# -*- coding: utf-8 -*- # $Id$ # import os #import sys #import time import logging #import threading #from threading import Thread #from urllib2 import URLError #from copy import deepcopy #from types import StringTypes # Python build-in xmlrpclib import xmlrpclib # spyne from spyne.decorator import srpc, rpc from s...
gpl-2.0
xharbour/core
contrib/hbzlib/zipcomp.cpp
15094
/* * $Id: zipcomp.cpp 9685 2012-09-16 05:42:35Z andijahja $ */ /* * Harbour Project source code: * Zlib low level interface for Harbour * * Copyright 2000-2001 Luiz Rafael Culik <culik@sl.conex.net> * www - http://www.harbour-project.org * * This program is free software; you can redistribute it and/or modify...
gpl-2.0
Automattic/wp-calypso
client/my-sites/backup/rewind-flow/rewind-config-editor.tsx
2625
import { useTranslate } from 'i18n-calypso'; import { FunctionComponent, ChangeEvent } from 'react'; import FormCheckbox from 'calypso/components/forms/form-checkbox'; import FormLabel from 'calypso/components/forms/form-label'; import type { RewindConfig } from './types'; import './style.scss'; interface Props { cu...
gpl-2.0
vdm-io/Joomla-Component-Builder
admin/views/components_mysql_tweaks/tmpl/default_head.php
1841
<?php /** * @package Joomla.Component.Builder * * @created 30th April, 2015 * @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com> * @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder> * @github Joomla Component Builder <https://github.com/vdm-io/Jo...
gpl-2.0
rolandoislas/PeripheralsPlusPlus
src/api/java/forestry/api/recipes/ICarpenterManager.java
2557
/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.recipes; im...
gpl-2.0
middle8media/IFE
wp-content/plugins/restrict-content-pro/includes/admin/members-page.php
10818
<?php function rcp_members_page() { global $rcp_options, $rcp_db_name, $wpdb; $current_page = admin_url( '/admin.php?page=rcp-members' ); ?> <div class="wrap"> <?php if(isset($_GET['edit_member'])) : include('edit-member.php'); elseif(isset($_GET['view_member'])) : include('view-member.php'); else...
gpl-2.0
Lythimus/lptv
apache-solr-3.6.0/solr/client/ruby/flare/config/environments/production.rb
1334
# The ASF licenses this file to You 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 applicable law or agreed to in writing, softw...
gpl-2.0
pamfilos/invenio
modules/websubmit/lib/websubmitadmincli.py
22182
# -*- coding: utf-8 -*- ## ## This file is part of Invenio. ## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 CERN. ## ## Invenio 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 ve...
gpl-2.0
constellationsoftware/meteor
packages/stream/stream_tests.js
301
Tinytest.add("stream - status", function (test) { // Very basic test. Just see that it runs and returns something. Not a // lot of coverage, but enough that it would have caught a recent bug. var status = Meteor.status(); test.equal(typeof status, "object"); test.isTrue(status.status); });
gpl-2.0
arturoc/ofForum
library/core/class.email.php
11356
<?php if (!defined('APPLICATION')) exit(); /** * Object Representation of an email. * * All public methods return $this for * chaining purposes. ie. $Email->Subject('Hi')->Message('Just saying hi!')- * To('joe@vanillaforums.com')->Send(); * * @author Mark O'Sullivan <markm@vanillaforums.com> * @author Todd B...
gpl-2.0
amirchrist/phpwcms
include/inc_module/mod_glossary/inc/cnt.sql.php
799
<?php /** * phpwcms content management system * * @author Oliver Georgi <og@phpwcms.org> * @copyright Copyright (c) 2002-2015, Oliver Georgi * @license http://opensource.org/licenses/GPL-2.0 GNU GPL-2 * @link http://www.phpwcms.de * **/ // ---------------------------------------------------------------- // obl...
gpl-2.0
amirus2303/projet-test-gulp
wp-content/themes/activebox/location.php
896
<section class="bg_blue"> <div class="container"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="row padding_top_70 padding_bottom_70 text-center"> <div class="col-xs-4"> <h3 class="light">Location</h3> <p class="location"><?php th...
gpl-2.0
jgabriellima/lincsgp
application/models/DbTable/Orcamento.php
125
<?php class Application_Model_DbTable_Orcamento extends Zend_Db_Table_Abstract { protected $_name = 'orcamento'; } ?>
gpl-2.0
gwupe/Gwupe
BlitsMeAgent/Exceptions/LoginException.cs
747
using System; namespace Gwupe.Agent.Exceptions { public class LoginException : Exception { public bool AuthFailure; public bool InvalidDetails; public string Failure; public const String INCORRECT_PASSWORD = "INCORRECT_PASSWORD"; public const String EMPTY_DE...
gpl-2.0
cblichmann/idajava
javasrc/src/de/blichmann/idajava/natives/loader_t.java
1407
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.0 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ------------------------------...
gpl-2.0
tomlanyon/python-virtinst
virtinst/VirtualNetworkInterface.py
13592
# # Copyright 2006-2009 Red Hat, Inc. # Jeremy Katz <katzj@redhat.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 versi...
gpl-2.0
leupibr/BakeryDMS
src/views/bootstrap/class.RewindWorkflow.php
4863
<?php // BakeryDMS. PHP based document management system with workflow support. // Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2010 Matteo Lucarelli // Copyright (C) 2010 Uwe Steinmann // Copyright (C) 2014-2015 Bruno Leupi, Tobias Maestrini // // This program is fre...
gpl-2.0
oat-sa/qti-sdk
src/qtism/data/state/MatchTableEntryCollection.php
1623
<?php /** * 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; under version 2 * of the License (non-upgradable). * * This program is distributed in the hope that it will be useful, * but WIT...
gpl-2.0
saikiran321/wordpress
wp-content/plugins/classi/library/widget/category_widget.php
4333
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ class CC_Widget_Categories extends WP_Widget { function __construct() { $widget_ops = array('classname' => 'cc_widget_categories', 'description' => __("A list or dropdown of categories for place")); ...
gpl-2.0
Yamatoo/DiamondCore
src/server/game/Handlers/LFGHandler.cpp
27458
/* * Copyright (C) 2013 DiamonEMU <http://diamondemu.freeforums.org/> * Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> * * 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 Founda...
gpl-2.0
st4rdog/cmdos
Assets/_Scripts/Managers/Game/CursorManagerS.cs
1488
using UnityEngine; using System.Collections; public class CursorManagerS : MonoBehaviour { public GameObject cursorMain; public GameObject cursorInstance; public float smoothSpeed = 50f; public Vector3 cursorOffset; public LayerMask layerMask; //============================================ // EVENTS //=====...
gpl-2.0
enpitut/glasses
Calendar_html/sessionManager.php
1466
<?php /* * 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. */ session_start(); session_regenerate_id(); $command = filter_input(INPUT_POST, "command"); if ($command == 'checkLogin') { ...
gpl-2.0
zearan/icinga2
lib/base/logger.cpp
5950
/****************************************************************************** * Icinga 2 * * Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) * * * ...
gpl-2.0
netroby/jdk9-shenandoah-hotspot
src/share/vm/gc_implementation/shared/gcUtil.hpp
7756
/* * Copyright (c) 2002, 2013, Oracle and/or its affiliates. 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 ...
gpl-2.0
joomla-framework/cache
Tests/NoneTest.php
3003
<?php /** * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ namespace Joomla\Cache\Tests; use Joomla\Cache; use Joomla\Test\TestHelper; use PHPUnit\Framework\TestCase; /** * Tests for the Joomla\Cache...
gpl-2.0
gratefulfrog/lib
python/pymol/gui.py
1493
#A* ------------------------------------------------------------------- #B* This file contains source code for the PyMOL computer program #C* Copyright (c) Schrodinger, LLC. #D* ------------------------------------------------------------------- #E* It is unlawful to modify or remove this copyright notice. #F* -------...
gpl-2.0
sebhz/caprice32
src/argparse.cpp
4790
#include "argparse.h" #include <getopt.h> #include <iostream> #include <fstream> #include "SDL.h" #include "cap32.h" #include "keyboard.h" #include "stringutils.h" #include "log.h" extern bool log_verbose; const struct option long_options[] = { {"autocmd", required_argument, nullptr, 'a'}, {"cfg_file", requir...
gpl-2.0
outersky/sep
src/main/java/cn/hillwind/sep/RowHandler.java
167
package cn.hillwind.sep; import java.util.List; /** * */ public interface RowHandler<T> { void process(String sheetName, Row row) ; List<T> getResult(); }
gpl-2.0
jhagon/lab_marks
app/controllers/pages_controller.rb
2994
class PagesController < ApplicationController before_filter :authenticate, :only => [:statistics, :marklist] def home @title="Home" end def contact @title="Contact" end def about @title="About" end def help @title="Help" end def statistics @title="Statistics" @sheets = ...
gpl-2.0
repunyc/repu.nyc
wp-content/plugins/wysija-newsletters/views/front.php
378
<?php defined('WYSIJA') or die('Restricted access'); class WYSIJA_view_front extends WYSIJA_view{ var $controller=''; function WYSIJA_view_front(){ } /** * deprecated, but kept for conflict with plugin Magic action box * until it's fixed. * @param type $print *...
gpl-2.0
lakers/RobloxWiki
skins/chameleon/components/TabList.php
2837
<?php /** * File holding the TabList class * * @copyright (C) 2013, Stephan Gambke * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 (or later) * * This file is part of the MediaWiki extension Chameleon. * The Chameleon extension is free software: you can redistribute it...
gpl-2.0
arnaudchenyensu/I9-App
twitter-like/app/routes.php
2165
<?php /* |-------------------------------------------------------------------------- | Application Routes |-------------------------------------------------------------------------- | | Here is where you can register all of the routes for an application. | It's a breeze. Simply tell Laravel the URIs it should respond ...
gpl-2.0
tube42/9P
core/src/se/tube42/p9/view/StarItem.java
1843
package se.tube42.p9.view; import com.badlogic.gdx.graphics.*; import com.badlogic.gdx.graphics.g2d.*; import com.badlogic.gdx.audio.*; import com.badlogic.gdx.Input.*; import se.tube42.lib.tweeny.*; import se.tube42.lib.ks.*; import se.tube42.lib.scene.*; import se.tube42.lib.item.*; import se.tube42.lib.util.*; imp...
gpl-2.0
zanderkyle/zandergraphics
administrator/components/com_phocafont/views/phocafontfont/tmpl/edit.php
1970
<?php defined('_JEXEC') or die; JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); JHtml::_('behavior.keepalive'); JHtml::_('formbehavior.chosen', 'select'); $class = $this->t['n'] . 'RenderAdminView'; $r = new $class(); ?> <script type="text/javascript"> Joomla.submitbutton = function...
gpl-2.0
kaluli/Wordpress-Site
original/wp-content/themes/realhomes/template-parts/carousel_partners.php
2604
<?php $show_partners = get_option('theme_show_partners'); if($show_partners == 'true'){ ?> <div class="container page-carousel"> <div class="row"> <div class="span12"> <section class="brands-carousel clearfix"> <h3><span><?php echo $partners_tit...
gpl-2.0
gitpan/hyperic-sigar
bindings/java/src/org/hyperic/sigar/cmd/Iostat.java
5603
/* * Copyright (C) [2004, 2005, 2006], Hyperic, Inc. * This file is part of SIGAR. * * SIGAR is free software; you can redistribute it and/or modify * it under the terms version 2 of the GNU General Public License as * published by the Free Software Foundation. This program is distributed * in the hope that it ...
gpl-2.0
fgx/fgx
src/mpmap/mpmapwidget.cpp
3713
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=- // FGx FlightGear Launcher // mpmapwidget.cpp // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=- // (c) 2010-2012 // Yves Sablonier, Pete Morgan // Geoff McLane // GNU GPLv2, see main.cpp and shipped licence.txt for furth...
gpl-2.0
killbug2004/reko
src/Arch/X86/X86Rewriter.cs
21190
#region License /* * Copyright (C) 1999-2015 John Källén. * * 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, or (at your option) * any later version. * * This program ...
gpl-2.0
ruuk/script.module.sharesocial
oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.py
8446
# -*- coding: utf-8 -*- """ oauthlib.oauth2.rfc6749.grant_types ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ """ from __future__ import unicode_literals, absolute_import import json from oauthlib.common import log from .base import GrantTypeBase from .. import errors from ..request_validator import RequestValidator class Re...
gpl-2.0
silasakk/dev-df
wp-content/themes/dongfeng/template-parts/content-none.php
1139
<?php /** * Template part for displaying a message that posts cannot be found. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package dongfeng */ ?> <section class="no-results not-found"> <header class="page-header"> <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'dongfeng' ); ?></h...
gpl-2.0
GeoTechSystems/GeoTechMobile
app/src/main/java/com/jhlabs/map/proj/DenoyerProjection.java
1473
/* Copyright 2006 Jerry Huxtable 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 applicable law or agreed to in writing, software d...
gpl-2.0
genesint/UHRC
sites/all/modules/custom/drpl01/views/admin-recommendation-table.tpl.php
3396
<?php $IFRAME = isset($_GET['IFRAME']) ? $_GET['IFRAME'] : ""; $SEARCH = isset($_GET['SEARCH']) ? $_GET['SEARCH'] : ""; ?> <script> function download_file(otype) { var ids = parent.jQuery("#iframe-dashboard").contents().find(".ohrc-id"); var qq = ""; for (var i = 0; i < ids.length; i++) { qq += ids[...
gpl-2.0
NeXXEnt/WMS-Official
wms30/views/shipping/take/bin.php
961
<div class="background"></div> <div class="modal draggable modal-form" id="take-bin"> <div class="close-modal"> <a class="button negative" href="/shipping/items"><img src="/pics/icons/cross.png">Close</a> </div> <h1>Take</h1> <h2>From: <?= $warehouse->name ?></h2> <hr> <?= form_open("/shipping/items/-1/...
gpl-2.0
rtdean93/engagepeeps
accounts/plugins/feed_reader/feed_reader_controller.php
627
<?php /** * Feed Reader parent controller for all Feed Reader child controllers to inherit from * * @package blesta * @subpackage blesta.plugins.feed_reader * @copyright Copyright (c) 2010, Phillips Data, Inc. * @license http://www.blesta.com/license/ The Blesta License Agreement * @link http://www.bles...
gpl-2.0
GeneSurvey/TcgaGSData
src/org/mda/bcb/tcgagsdata/neighbors/FN_RNASeq.java
995
/* TcgaGSData Copyright 2014, 2015, 2016 University of Texas MD Anderson Cancer Center 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 v...
gpl-2.0
jyhong836/CellularAutomata3D
src/com/cellular3d/CA3DClientConfigureJDialog.java
2547
package com.cellular3d; import java.awt.Dialog; import java.awt.Frame; import java.awt.GraphicsConfiguration; import java.awt.Window; import javax.swing.JDialog; public class CA3DClientConfigureJDialog extends JDialog { public CA3DClientConfigureJDialog() { // TODO Auto-generated constructor stub } public CA3...
gpl-2.0
educatorplugin/ibeducator
includes/functions.php
21580
<?php /** * Get the plugin's settings. * * @return array */ function ib_edu_get_settings() { return get_option( 'ib_educator_settings', array() ); } /** * Get the plugin's option. * * @param string $option_key * @param string $option_section * @return mixed */ function ib_edu_get_option( $option_key, $opti...
gpl-2.0
xpander54/wp-drz
wp-content/themes/everything/drone/tpl/theme-options.php
527
<?php ?> <div class="wrap"> <h2><?php echo get_admin_page_title(); ?></h2> <?php settings_errors('general'); ?> <form method="post" action="<?php echo self::WP_THEME_OPTIONS_URI; ?>"> <?php settings_fields($this->theme->id); ?> <div class="drone-theme-options"> <?php echo $group->html()->html...
gpl-2.0
tdalman/crossfire
utils/cre/CREPrePostPanel.cpp
14561
#include "CREPrePostPanel.h" #include "CRERulePanel.h" #include <QtGui> #include "QuestConditionScript.h" #include "QuestManager.h" #include "Quest.h" CRESubItemList::CRESubItemList(QWidget* parent) : CRESubItemWidget(parent) { QGridLayout* layout = new QGridLayout(this); mySubItems = new QListWidget(this); ...
gpl-2.0
studio-montana/custom
core/tools/gallery/load.php
1649
<?php /** * @package Custom * @author Sébastien Chandonay www.seb-c.com / Cyril Tissot www.cyriltissot.com * License: GPL2 * Text Domain: custom * * Copyright 2016 Sébastien Chandonay (email : please contact me from my website) * * This program is free software; you can redistribute it and/or modify * it under...
gpl-2.0
hassankbrian/LoveItLocal
wp-content/plugins/wc-shortcodes/includes/templates/nav-filtering.php
1378
<?php $args = array( 'orderby' => 'name', ); $taxonomy = $atts['taxonomy']; $whitelist = $atts['terms']; if ( ! empty( $taxonomy ) ) { $terms = get_terms( $taxonomy, $args ); if ( ! is_wp_error( $terms ) || empty( $terms ) ) { $links = array(); $links[] = "<a href='#' data-filter='*' title='All Tags' class='w...
gpl-2.0
mviitanen/marsmod
mcp/temp/src/minecraft/net/minecraft/block/BlockWoodSlab.java
1875
package net.minecraft.block; import java.util.List; import java.util.Random; import net.minecraft.block.BlockSlab; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Blocks; import net.minecr...
gpl-2.0
hydrodog/LiquiZ
LiquiZ/src/org/adastraeducation/liquiz/Audio.java
759
package org.adastraeducation.liquiz; public class Audio implements Displayable { private String source; private String type; public Audio(String source){ this.source = source; } public Audio(String source, String type){ this.source = source; } //<source src="horse.ogg" type="audio/ogg"> //<source src...
gpl-2.0
BartDM/GreenshotPlugin
Greenshot/Memento/IMemento.cs
1766
/* * Greenshot - a free and open source screenshot tool * Copyright (C) 2007-2015 Thomas Braun, Jens Klingen, Robin Krom * * For more information see: http://getgreenshot.org/ * The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/ * * This program is free software:...
gpl-2.0