code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30
values | license stringclasses 15
values | size int64 3 1.01M |
|---|---|---|---|---|---|
/**
* Copyright 2015 Telefonica Investigación y Desarrollo, S.A.U
*
* This file is part of iotagent project.
*
* iotagent is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License,... | telefonicaid/fiware-IoTAgent-Cplusplus | src/util/service_collection.cc | C++ | agpl-3.0 | 3,710 |
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
frappe.provide("erpnext.accounts");
frappe.provide("erpnext.journal_entry");
frappe.ui.form.on("Journal Entry", {
setup: function(frm) {
frm.get_field('accounts').grid.editable_fields =... | anandpdoshi/erpnext | erpnext/accounts/doctype/journal_entry/journal_entry.js | JavaScript | agpl-3.0 | 15,981 |
/**
* Created by
* Pratish Shrestha <pratishshrestha@lftechnology.com>
* on 4/19/16.
*/
var jsdom = require('jsdom').jsdom;
var exposedProperties = ['window', 'navigator', 'document', 'localStorage'];
global.document = jsdom('');
global.window = document.defaultView;
global.localStorage = {getItem: ()=>{}, setIt... | leapfrogtechnology/vyaguta-resource | frontend/test/setup.js | JavaScript | agpl-3.0 | 850 |
package roart.db.thread;
import java.util.Deque;
import java.util.concurrent.ConcurrentLinkedDeque;
import org.apache.commons.lang3.tuple.Pair;
import org.hibernate.query.Query;
import roart.db.model.HibernateUtil;
public class Queues {
public static final Deque<Object> queue = new ConcurrentLinkedDeque<Object>... | rroart/stockstat | common/db/src/main/java/roart/db/thread/Queues.java | Java | agpl-3.0 | 513 |
import analytics
import anyjson
from channels import Group
from django.conf import settings
from django.utils.translation import ugettext_lazy as _
from rest_framework import serializers
from lily.accounts.api.serializers import RelatedAccountSerializer
from lily.api.fields import SanitizedHtmlCharField
from lily.api.... | HelloLily/hellolily | lily/cases/api/serializers.py | Python | agpl-3.0 | 9,977 |
<?php
/**
* Copyright 2015-2018 ppy Pty. Ltd.
*
* This file is part of osu!web. osu!web is distributed with the hope of
* attracting more community contributions to the core ecosystem of osu!.
*
* osu!web is free software: you can redistribute it and/or modify
* it under the terms of the Affero G... | kj415j45/osu-web | resources/lang/cs/multiplayer.php | PHP | agpl-3.0 | 2,698 |
/*
Bacula® - The Network Backup Solution
Copyright (C) 2006-2014 Free Software Foundation Europe e.V.
The main author of Bacula is Kern Sibbald, with contributions from many
others, a complete list can be found in the file AUTHORS.
You may use this file and others of this release according to the
l... | rkorzeniewski/bacula | bacula/src/findlib/drivetype.c | C | agpl-3.0 | 2,948 |
/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the G... | RestComm/jss7 | map/map-api/src/main/java/org/restcomm/protocols/ss7/map/api/smstpdu/ValidityEnhancedFormatData.java | Java | agpl-3.0 | 1,222 |
<script src="./dist/runtime.bundle.js?v=4454171a3629744946c7"></script><script src="./dist/main_ui.bundle.js?v=70aaa5b585f983f6b592"></script> | aydancoskun/timetrex-community-edition | interface/html5/dist/_js.main_ui.template.html | HTML | agpl-3.0 | 142 |
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2008-2013 AvanzOSC S.L. All Rights Reserved
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the... | Daniel-CA/odoo-addons | __unported__/avanzosc_module_doc/wizard/create_module_documentation.py | Python | agpl-3.0 | 3,050 |
#pragma once
#include "../Interface/Thread.h"
#include "../Interface/Database.h"
#include "../Interface/Query.h"
#include "../Interface/Pipe.h"
#include "../Interface/File.h"
#include "../urbackupcommon/os_functions.h"
#include "ChunkPatcher.h"
#include "server_prepare_hash.h"
#include "FileIndex.h"
#includ... | uroni/urbackup_backend | urbackupserver/server_hash.h | C | agpl-3.0 | 6,101 |
package org.cmdbuild.common.utils;
import org.apache.commons.lang3.ArrayUtils;
public class Arrays {
private Arrays() {
// prevents instantiation
}
@SuppressWarnings("unchecked")
public static <T> T[] append(final T[] original, final T element) {
return (T[]) ArrayUtils.add(original, element);
}
public s... | jzinedine/CMDBuild | cmdbuild-commons/src/main/java/org/cmdbuild/common/utils/Arrays.java | Java | agpl-3.0 | 585 |
# --
# Kernel/Output/HTML/HeaderMetaTicketSearch.pm
# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
# --
# $Id: HeaderMetaTicketSearch.pm,v 1.13 2012-11-20 14:58:36 mh Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# ... | djoudi/otrs-gitimport-test | Kernel/Output/HTML/HeaderMetaTicketSearch.pm | Perl | agpl-3.0 | 2,136 |
{% extends "base.html" %}
{% import "projects/_helpers.html" as helper %}
{% import "account/_helpers.html" as account_helper %}
{% block content %}
<div class="banner">
<div class="container">
<div class="row">
<div class="col-md-4">
<h1>{{ brand }}</h1>
... | jeffersonrpn/pybossa-contribua-theme | templates/home/index.html | HTML | agpl-3.0 | 5,494 |
<%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>
<%inherit file="../main.html" />
<%namespace name='static' file='/static_content.html'/>
<%block name="bodyclass">register verification-process step-photos</%block>
<%block name="title"><title>${_("Register fo... | praveen-pal/edx-platform | lms/templates/verify_student/photo_verification.html | HTML | agpl-3.0 | 17,751 |
namespace Kcsara.Database.Api
{
using System.Web.Http.Filters;
using log4net;
public class ExceptionFilter : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext context)
{
LogManager.GetLogger("Kcsara.Database.Api").Error(context.Request.RequestUri.Abso... | mcosand/KCSARA-Database | src/website-api/ExceptionFilter.cs | C# | agpl-3.0 | 401 |
<?php
/*********************************************************************************
* Zurmo is a customer relationship management program developed by
* Zurmo, Inc. Copyright (C) 2013 Zurmo Inc.
*
* Zurmo is free software; you can redistribute it and/or modify it under
* the terms of t... | sandeep1027/zurmo_ | app/protected/modules/workflows/tests/unit/WorkflowTriggersUtilBaseTest.php | PHP | agpl-3.0 | 9,793 |
--Automatically generated by SWGEmu Spawn Tool v0.12 loot editor.
knife_donkuwah = {
minimumLevel = 0,
maximumLevel = -1,
customObjectName = "",
directObjectTemplate = "object/weapon/melee/knife/knife_donkuwah.iff",
craftingValues = {
{"mindamage",14,26,0},
{"maxdamage",32,62,0},
{"attackspeed",3.9,2.7,1},
... | Tatwi/legend-of-hondo | MMOCoreORB/bin/scripts/loot/items/weapon/knife_donkuwah.lua | Lua | agpl-3.0 | 1,535 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jqCouch :: Tests</title>
<lin... | thepug/Speeqe | speeqeweb/webroot/scripts/jqcouch/testsuite/main.html | HTML | agpl-3.0 | 900 |
<?php
/**
* Base class that represents a row from the 'log' table.
*
*
*
* @package propel.generator.atica.om
*/
abstract class BaseLog extends BaseObject implements Persistent
{
/**
* Peer class name
*/
const PEER = 'LogPeer';
/**
* The Peer class.
* Instance provides a conv... | iesoretania/atica.old | server/build/classes/atica/om/BaseLog.php | PHP | agpl-3.0 | 48,207 |
<?php
/* Project: EQdkp-Plus
* Package: EQdkp-plus
* Link: http://eqdkp-plus.eu
*
* Copyright (C) 2006-2016 EQdkp-Plus Developer Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Founda... | EQdkpPlus/core | libraries/tinyMCE/tinyMCE.class.php | PHP | agpl-3.0 | 21,374 |
/*
* The Kuali Financial System, a comprehensive financial management system for higher education.
*
* Copyright 2005-2017 Kuali, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundat... | quikkian-ua-devops/will-financials | kfs-ar/src/main/java/org/kuali/kfs/module/ar/businessobject/lookup/CustomerLookupableHelperServiceImpl.java | Java | agpl-3.0 | 4,861 |
# -*- coding: utf-8 -*-
import traceback
from ckan.lib.helpers import json
from ckanext.harvest.model import HarvestObject, HarvestObjectExtra
from ckanext.harvest.harvesters import HarvesterBase
from ckanext.geocat.utils import search_utils, csw_processor, ogdch_map_utils, csw_mapping # noqa
from ckanext.geocat.uti... | opendata-swiss/ckanext-geocat | ckanext/geocat/harvester.py | Python | agpl-3.0 | 13,479 |
require File.dirname(__FILE__) + '/../test_helper'
class NotifyActivityToProfilesJobTest < ActiveSupport::TestCase
should 'notify just the community in tracker with add_member_in_community verb' do
person = fast_create(Person)
community = fast_create(Community)
action_tracker = fast_create(ActionTracke... | joenio/noosfero | test/unit/notify_activity_to_profiles_job_test.rb | Ruby | agpl-3.0 | 10,155 |
class AddStartFinishToRound < ActiveRecord::Migration
def change
add_column :rounds, :started_at, :datetime
add_column :rounds, :finished_at, :datetime
end
end
| bschmeck/two_sixes | db/migrate/20140728171953_add_start_finish_to_round.rb | Ruby | agpl-3.0 | 172 |
/*
Copyright 2015 Daniel Nichter
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is dist... | daniel-nichter/ticker | ticker_test.go | GO | agpl-3.0 | 6,115 |
DELETE FROM `weenie` WHERE `class_Id` = 12509;
INSERT INTO `weenie` (`class_Id`, `class_Name`, `type`, `last_Modified`)
VALUES (12509, 'portallakeblessedcottages', 7, '2019-02-10 00:00:00') /* Portal */;
INSERT INTO `weenie_properties_int` (`object_Id`, `type`, `value`)
VALUES (12509, 1, 65536) /* ItemType - P... | LtRipley36706/ACE-World | Database/3-Core/9 WeenieDefaults/SQL/Portal/Portal/12509 Lake Blessed Cottages Portal.sql | SQL | agpl-3.0 | 2,135 |
# -*- coding: utf-8 -*-
##############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the L... | odoo-arg/odoo_l10n_ar | l10n_ar_account_check_sale/__manifest__.py | Python | agpl-3.0 | 1,674 |
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Master Subscription
* Agreement ("License") which can be viewed at
* http://www.sugarcrm.com/crm/e... | harish-patel/ecrm | modules/Campaigns/vardefs.php | PHP | agpl-3.0 | 11,710 |
/*
* This program is part of the ForLAB software.
* Copyright © 2010 Clinton Health Access Initiative(CHAI)
*
* The ForLAB software was made possible in part through the support of the President's Emergency Plan for AIDS Relief (PEPFAR) through the U.S. Agency for International Development (USAID) under the Supp... | forlab/ForLAB | LQT.GUI/MorbidityUserCtr/FrmImportCPN.Designer.cs | C# | agpl-3.0 | 13,431 |
/*
* Copyright (c) 2014 Villu Ruusmann
*
* This file is part of JPMML-Evaluator
*
* JPMML-Evaluator is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your... | jpmml/jpmml-evaluator | pmml-evaluator/src/test/java/org/jpmml/evaluator/regression/EmptyTargetCategoryTest.java | Java | agpl-3.0 | 1,959 |
/*
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
* License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
*/
/*
Top-level react component for editing MediaWiki documents
*/
import { createEditor } from "../frame-tree/editor";
import { aux_file } from "../frame-tree/util";
import { se... | tscholl2/smc | src/smc-webapp/frame-editors/wiki-editor/editor.ts | TypeScript | agpl-3.0 | 1,654 |
<?php /* Smarty version Smarty-3.1.12, created on 2015-11-10 01:10:50
compiled from "/home/gam/themes/Backend/ExtJs/backend/base/component/Shopware.DragAndDropSelector.js" */ ?>
<?php /*%%SmartyHeaderCode:16345463015641360a29c610-70602129%%*/if(!defined('SMARTY_DIR')) exit('no direct access allowed');
$_valid ... | gamchantoi/AgroSHop-UTUAWARDS | var/cache/production_201510221322/templates/backend_en_GB_a0ba8/50/9b/22/509b22d314bafb4e224fdd533479988e42d56279.snippet.Shopware.DragAndDropSelector.js.php | PHP | agpl-3.0 | 12,293 |
var mongoose = require('mongoose');
var es = require('event-stream');
var config = require('../lib/config/config');
var _ = require('lodash');
require('../lib/config/mongoose')(mongoose, config);
var Situation = mongoose.model('Situation');
Situation.find({ status: 'test' }).stream()
.pipe(es.map(function (situa... | sgmap/mes-aides-api | migrations/rsa-isolement.js | JavaScript | agpl-3.0 | 1,192 |
# == Schema Information
#
# Table name: homepages
#
# id :integer not null, primary key
# movement_id :integer
# draft :boolean default(FALSE)
#
class Homepage < ActiveRecord::Base
include ActsAsClickableFromEmail
belongs_to :movement
has_many :homepage_contents, dependent: :... | PurposeOpen/Platform | app/models/homepage.rb | Ruby | agpl-3.0 | 1,433 |
/*
* Copyright 2017 the Isard-vdi project authors:
* Josep Maria Viñolas Auquer
* Alberto Larraz Dalmases
* License: AGPLv3
*/
var href = location.href;
url=href.match(/([^\/]*)\/*$/)[1];
if (url!="Desktops") {
kind='template'
} else {
$('#global_actions').css('display','block');
kind='desktop'
}... | isard-vdi/isard | webapp/webapp/webapp/static/admin/js/domains.js | JavaScript | agpl-3.0 | 41,015 |
class AddSourceBeforeToMigrationLog < ActiveRecord::Migration
def change
add_column :migration_logs, :source_before, :text
end
end
| draknor/migro | db/migrate/20150502160325_add_source_before_to_migration_log.rb | Ruby | agpl-3.0 | 139 |
<?php
include_once ("../config.php");
if ( nbt_get_privileges_for_userid ( $_SESSION[INSTALL_HASH . '_nbt_userid'] ) == 4 ) {
nbt_remove_table_data_column ( $_POST['element'], $_POST['column'] );
}
$tableelementid = $_POST['element'];
include ('./tabledata.php');
?> | bgcarlisle/Numbat | forms/removetabledatacolumn.php | PHP | agpl-3.0 | 276 |
##############################################################################
#
# OSIS stands for Open Student Information System. It's an application
# designed to manage the core business of higher education institutions,
# such as universities, faculties, institutes and professional schools.
# The core ... | uclouvain/osis | ddd/logic/learning_unit/use_case/read/get_effective_class_service.py | Python | agpl-3.0 | 2,220 |
import React from 'react'
import PropTypes from 'prop-types'
import { ToastContainer } from 'react-toastify'
import { createBrowserHistory } from 'history'
import { Router, Redirect, Switch, Route, useLocation } from 'react-router'
import { BondeSessionProvider, BondeSessionUI } from 'bonde-core-tools'
import { Loading... | nossas/bonde-client | packages/bonde-admin-canary/src/Root/index.js | JavaScript | agpl-3.0 | 2,346 |
/*
* Tanaguru - Automated webpage assessment
* Copyright (C) 2008-2016 Tanaguru.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at you... | Tanaguru/Tanaguru | rules/rgaa3-2016/src/test/java/org/tanaguru/rules/rgaa32016/Rgaa32016Rule130203Test.java | Java | agpl-3.0 | 5,725 |
<?php
/*
* Xibo - Digital Signage - http://www.xibo.org.uk
* Copyright (C) 2011-13 Daniel Garner
*
* This file is part of Xibo.
*
* Xibo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either ve... | gractor/xibo-cms | lib/data/dataset.data.class.php | PHP | agpl-3.0 | 19,090 |
/*
* Copyright (C) 1998, 2000-2007, 2010, 2011, 2012, 2013 SINTEF ICT,
* Applied Mathematics, Norway.
*
* Contact information: E-mail: tor.dokken@sintef.no
* SINTEF ICT, Department of Applied Mathematics,
* P.O. Box 124 Blindern, ... | akva2/GoTools | compositemodel/include/GoTools/compositemodel/CompleteEdgeNet.h | C | agpl-3.0 | 5,154 |
<?php
$GLOBALS["dictionary"]["Employee"]=array (
'table' => 'users',
'fields' =>
array (
'id' =>
array (
'name' => 'id',
'vname' => 'LBL_ID',
'type' => 'id',
'required' => true,
),
'user_name' =>
array (
'name' => 'user_name',
'vname' => 'LBL_USER_NAME'... | bupendra/Fieldtrip | cache/modules/Employees/Employeevardefs.php | PHP | agpl-3.0 | 19,988 |
/* Theme LESS assets */
/* Fonts */
/* Responsive */
/* Grid */
/* Navigation */
.nav-pills-active-bg-color {
border-radius: 15px;
}
.inputs-style:focus {
box-shadow: none;
}
.flex {
display: flex;
}
.nav-item-before-reset {
height: auto;
width: auto;
background-image: none;
}
.hero {
background-size: cov... | ViderumGlobal/ckanext-tayside | ckanext/tayside/fanstatic/css/tayside.css | CSS | agpl-3.0 | 10,288 |
# Copyright (C) 2020 Shannon M. Hauck, http://www.smhauck.com
#
# This file is part of Project Useful.
#
# Project Useful is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the Licens... | wbhauck/ProjectUseful | test/controllers/pages_controller_test.rb | Ruby | agpl-3.0 | 1,028 |
/*
* The Kuali Financial System, a comprehensive financial management system for higher education.
*
* Copyright 2005-2017 Kuali, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundat... | quikkian-ua-devops/will-financials | kfs-kns/src/main/java/org/kuali/kfs/kns/kim/permission/package-info.java | Java | agpl-3.0 | 866 |
+++
title = "Release notes for Grafana 7.3.10"
[_build]
list = false
+++
<!-- Auto generated by update changelog github action -->
# Release notes for Grafana 7.3.10
### Bug fixes
- **Security**: Fix API permissions issues related to team-sync CVE-2021-28146, CVE-2021-28147. (Enterprise)
- **Security**: Usage insig... | grafana/grafana | docs/sources/release-notes/release-notes-7-3-10.md | Markdown | agpl-3.0 | 378 |
/*
* core.css
*
* Copyright (c) 2004 David Holroyd, and contributors
* See the file 'COPYING' for terms of use
*
* Part of the Docbook-CSS stylesheet
* http://www.badgers-in-foil.co.uk/projects/docbook-css/
*/
/* Generated 2002-12-12 */
abbrev, accel, acronym, action, application, artpagenums, aut... | RajkumarSelvaraju/FixNix_CRM | erp/xmlrpc/doc/docbook-css/core.css | CSS | agpl-3.0 | 3,689 |
import logging
from lxml import etree
from pkg_resources import resource_string
from xmodule.raw_module import RawDescriptor
from .x_module import XModule
from xblock.core import Integer, Scope, String, List, Float, Boolean
from xmodule.open_ended_grading_classes.combined_open_ended_modulev1 import CombinedOpenEndedV... | pdehaye/theming-edx-platform | common/lib/xmodule/xmodule/combined_open_ended_module.py | Python | agpl-3.0 | 21,389 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>basic_seq_packet_socket::close (1 of 2 overloads)</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" ... | cris-iisc/mpc-primitives | crislib/libscapi/lib/boost_1_64_0/doc/html/boost_asio/reference/basic_seq_packet_socket/close/overload1.html | HTML | agpl-3.0 | 5,147 |
/**
* Copyright (C) 2000 - 2013 Silverpeas
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* As a spe... | CecileBONIN/Silverpeas-Components | classifieds/classifieds-war/src/main/java/com/silverpeas/classifieds/servlets/ClassifiedsRequestRouter.java | Java | agpl-3.0 | 5,037 |
class Api::StatsController < Api::ApiController
def show
unless params[:events].present? || params[:visits].present?
return render json: {}, status: :bad_request
end
ds = Ahoy::DataSource.new
if params[:events].present?
event_types = params[:events].split ','
event_types.each do |e... | eloy/participacion | app/controllers/api/stats_controller.rb | Ruby | agpl-3.0 | 571 |
/*
* (c) Copyright Ascensio System SIA 2010-2019
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGP... | ONLYOFFICE/core | Common/DocxFormat/Source/DocxFormat/External/External.h | C | agpl-3.0 | 2,393 |
# Use this hook to configure devise mailer, warden hooks and so forth.
# Many of these configuration options can be set straight in your model.
Devise.setup do |config|
# The secret key used by Devise. Devise uses this key to generate
# random tokens. Changing this key will render invalid all existing
# confirmat... | eloy/participacion | config/initializers/devise.rb | Ruby | agpl-3.0 | 13,108 |
// Copyright (c) 2006, 2007 Julio M. Merino Vidal
// Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
// Copyright (c) 2009 Boris Schaeling
// Copyright (c) 2010 Felipe Tanus, Boris Schaeling
// Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
//
// Distributed under the Boost Software License, Version 1.0. (... | cris-iisc/mpc-primitives | crislib/libscapi/lib/boost_1_64_0/libs/process/test/wargs_cmd.cpp | C++ | agpl-3.0 | 2,661 |
.synopsis, .classsynopsis
{
background: #eeeeee;
border: solid 1px #aaaaaa;
padding: 0.5em;
}
.programlisting
{
background: #eeeeff;
border: solid 1px #aaaaff;
padding: 0.5em;
}
.variablelist
{
padding: 4px;
margin-left: 3em;
}
.variablelist td:first-child
{
vertical-align: top;
... | ONLYOFFICE/core | DesktopEditor/xml/libxml2/doc/devhelp/style.css | CSS | agpl-3.0 | 886 |
package android.support.v7.view.menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import java.util.ArrayList;
public final class h extends BaseAdapter {
final /* synthetic */ g a;
private int b = -1;
public h(g gVar) {
this.a = gVar;
a();
... | WenbinHou/PKUAutoGateway.Android | Reference/IPGWAndroid/android/support/v7/view/menu/h.java | Java | agpl-3.0 | 1,526 |
<!-- | template to change password -->
<?php
// deny direct access
defined('TS_INIT') OR die('Access denied!');
?>
<h1><?php $this->set('SHOWSETLOGIN__H1'); ?></h1>
<p>
<?php $this->set('SHOWSETLOGIN__INFOTEXT'); ?>
</p>
<form action="?event=setLogin" method="post" class="ts_form">
<fieldset>
<legend><?php ech... | nfrickler/tsunic | admin/templates/showSetLogin.tpl.php | PHP | agpl-3.0 | 678 |
<?php
// created: 2015-03-22 17:52:16
$dictionary["yo_Sales"]["fields"]["yo_amortizationschedule_yo_sales"] = array (
'name' => 'yo_amortizationschedule_yo_sales',
'type' => 'link',
'relationship' => 'yo_amortizationschedule_yo_sales',
'source' => 'non-db',
'module' => 'yo_AmortizationSchedule',
'bean_name'... | shoaib-fazal16/yourown | custom/Extension/modules/yo_Sales/Ext/Vardefs/yo_amortizationschedule_yo_sales_yo_Sales.php | PHP | agpl-3.0 | 443 |
package de.static_interface.sinkcity.database.rows;
import de.static_interface.sinkcity.database.tables.CityTable;
import de.static_interface.sinklibrary.database.Row;
import de.static_interface.sinklibrary.database.annotation.Column;
import de.static_interface.sinklibrary.database.annotation.ForeignKey;
public class... | Static-Interface/SinkCity | src/main/java/de/static_interface/sinkcity/database/rows/CityRankRow.java | Java | agpl-3.0 | 590 |
# Copyright 2020 Tecnativa - Alexandre Díaz
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from copy import deepcopy
from xml.sax.saxutils import escape
from lxml import etree as ElementTree
from odoo import SUPERUSER_ID, api
def _merge_views(env, xmlids):
old_view_ids = env["ir.ui.view"].searc... | OCA/website | website_legal_page/hooks.py | Python | agpl-3.0 | 4,340 |
using System.Collections;
using System.Collections.Generic;
using GameRunTests;
using NaughtyAttributes;
using UnityEngine;
public partial class TestAction
{
public bool ShowSetTile => SpecifiedAction == ActionType.SetTile;
[AllowNesting] [ShowIf(nameof(ShowSetTile))] public SetTile SetTileData;
[System.Serializa... | unitystation/unitystation | UnityProject/Assets/Tests/PlayModeTests/RunTests/ActionTypes/ActionSetTile.cs | C# | agpl-3.0 | 1,178 |
/*
**********************************************************************
* Copyright (C) 1997-2015, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
*
* File USCRIPT.H
*
* Modification History:
*
* Da... | ONLYOFFICE/core | UnicodeConverter/icubuilds-mac/icu/unicode/uscript.h | C | agpl-3.0 | 25,849 |
/**
* Created with IntelliJ IDEA.
* User: issa
* Date: 3/16/14
* Time: 9:08 PM
* To change this template use File | Settings | File Templates.
*/
function DistrictStockedOutController($scope,$location,$routeParams,dashboardMenuService,messageService,StockedOutFacilitiesByDistrict) {
$scope.filterObj... | vimsvarcode/elmis | modules/openlmis-web/src/main/webapp/public/js/dashboard/controller/district-stocked-out-controller.js | JavaScript | agpl-3.0 | 5,612 |
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may u... | enricoros/k-qt-creator-inspector | src/plugins/qmldesigner/core/include/nodeinstanceview.h | C | lgpl-2.1 | 6,001 |
/*
* Authors:
* 钟峰(Popeye Zhong) <zongsoft@gmail.com>
*
* Copyright (C) 2010-2016 Zongsoft Corporation <http://www.zongsoft.com>
*
* This file is part of Zongsoft.CoreLibrary.
*
* Zongsoft.CoreLibrary is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Publ... | Zongsoft/Zongsoft.CoreLibrary | src/Services/CommandBase`1.cs | C# | lgpl-2.1 | 3,855 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qitemselectio... | kobolabs/qt-everywhere-4.8.0 | doc/html/qitemselectionrange-members.html | HTML | lgpl-2.1 | 5,753 |
/*
* 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.
*/
package bean;
import java.util.List;
import javax.persistence.EntityManager;
/**
*
* @author Matthew
*/
public abstract class Abst... | adrienelium/Projet-DAD-Exia | J2EE/JSFWithEntityClass/src/java/bean/AbstractFacade.java | Java | lgpl-2.1 | 1,964 |
/*
This file is part of libmicrohttpd
Copyright (C) 2006-2017 Christian Grothoff (and other contributing authors)
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; eithe... | ghaderer/libmicrohttpd | src/include/microhttpd.h | C | lgpl-2.1 | 122,270 |
// The libMesh Finite Element Library.
// Copyright (C) 2002-2016 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
// 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 ... | dknez/libmesh | src/partitioning/parmetis_partitioner.C | C++ | lgpl-2.1 | 27,749 |
package horse.ponecraft.pegasus;
import horse.ponecraft.pegasus.items.ItemGemShard;
import horse.ponecraft.pegasus.tinkers.PegasusToolEvents;
import horse.ponecraft.pegasus.tinkers.PegasusToolMod;
import horse.ponecraft.pegasus.tinkers.TConstructIMC;
import java.util.ArrayList;
import java.util.List;
import net.mine... | EmptyAudio/horse.ponecraft | src/main/java/horse/ponecraft/pegasus/Pegasus.java | Java | lgpl-2.1 | 5,795 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- Created by texi2html 1.76 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>... | baoboa/Crystal-Space | docs/html/manual/XMLServices-Intro.html | HTML | lgpl-2.1 | 5,283 |
<?php
namespace wcf\system\devtools;
use wcf\system\SingletonFactory;
use wcf\util\FileUtil;
use wcf\util\JSON;
/**
* Enables the rapid deployment of new installations using a central configuration file
* in the document root. Requires the developer mode to work.
*
* @author Alexander Ebert
* @copyright 2001-201... | MenesesEvandro/WCF | wcfsetup/install/files/lib/system/devtools/DevtoolsSetup.class.php | PHP | lgpl-2.1 | 4,565 |
/**
* @file element_compare.c
* @brief element.h implementation
* @author Aleix Conchillo Flaque <aconchillo@gmail.com>
* @date Thu Aug 27, 2009 01:38
*
* @if copyright
*
* Copyright (C) 2009 Aleix Conchillo Flaque
*
* SCEW is free software; you can redistribute it and/or
* modify it under the t... | aconchillo/scew | scew/element_compare.c | C | lgpl-2.1 | 3,575 |
/*
* This file is part of ofono-qt
*
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
*
* Contact: Alexander Kanavin <alex.kanavin@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 a... | nemomobile-graveyard/libofono-qt | lib/ofonomodemmanager.h | C | lgpl-2.1 | 1,776 |
//--------------------------------------------------------------------------
// Code generated by the SmartSoft MDSD Toolchain Version 0.8.0
// The SmartSoft Toolchain has been developed by:
//
// ZAFH Servicerobotic Ulm
// Christian Schlegel (schlegel@hs-ulm.de)
// University of Applied Sciences
// Prittwitzstr. 10
//... | carlos22/SmartSoftCorba | src/components/SmartPTUServer/src/BaseStateTask.hh | C++ | lgpl-2.1 | 2,133 |
#############################################################################
##
## Copyright (C) 2017 The Qt Company Ltd.
## Contact: https://www.qt.io/licensing/
##
## This file is part of the test suite of PySide2.
##
## $QT_BEGIN_LICENSE:GPL-EXCEPT$
## Commercial License Usage
## Licensees holding valid commercial ... | qtproject/pyside-pyside | tests/QtMultimediaWidgets/qmultimediawidgets.py | Python | lgpl-2.1 | 2,146 |
#!/usr/bin/env python3
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This file is part of libgpiod.
#
# Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
#
'''Simplified reimplementation of the gpioset tool in Python.'''
import gpiod
import sys
if __name__ == '__main__':
if len(sys.argv) < 3... | brgl/libgpiod | bindings/python/examples/gpioset.py | Python | lgpl-2.1 | 793 |
/***************************************************************************
copyright : (C) 2002 - 2008 by Scott Wheeler
email : wheeler@kde.org
copyright : (C) 2006 by Aaron VonderHaar
email : avh4@users.sourceforge.net
*****************************... | epik/wAMP | plugin/src/taglib/mpeg/id3v2/frames/generalencapsulatedobjectframe.cpp | C++ | lgpl-2.1 | 5,475 |
import { FieldSchema, ValueSchema } from '@ephox/boulder';
import { Fun, Optional, Result } from '@ephox/katamari';
export interface SidebarInstanceApi {
element: () => HTMLElement;
}
export interface SidebarSpec {
icon?: string;
tooltip?: string;
onShow?: (api: SidebarInstanceApi) => void;
onSetup?: (api: ... | TeamupCom/tinymce | modules/bridge/src/main/ts/ephox/bridge/components/sidebar/Sidebar.ts | TypeScript | lgpl-2.1 | 1,121 |
/*
LV2 UI Extension
Copyright 2009-2014 David Robillard <d@drobilla.net>
Copyright 2006-2011 Lars Luthman <lars.luthman@gmail.com>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permi... | jnetterf/calf | src/calf/lv2_ui.h | C | lgpl-2.1 | 14,989 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,4... | jiangbo212/netty-init | html-docs/contents/9da407eeeff5d884dffc718318681c24.html | HTML | lgpl-2.1 | 7,620 |
/******************************************************************************
JUserNotification.h
Interface for the JUserNotification class.
Copyright © 1994-96 by John Lindal. All rights reserved.
******************************************************************************/
#ifndef _H_JUserNotification
#de... | mbert/mulberry-lib-jx | libjcore/code/JUserNotification.h | C | lgpl-2.1 | 1,627 |
using MaxBootstrap.Core.View;
namespace MaxBootstrap.UI.Views.Error
{
public interface IErrorViewmodel : IViewmodel
{
string ErrorMessageText { get; }
}
}
| Frogman7/MaxBootstrap | Source/MaxBootstrap.UI/Views/Error/IErrorViewmodel.cs | C# | lgpl-2.1 | 179 |
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
require_once('tiki-setup... | tikiorg/tiki | validate-ajax.php | PHP | lgpl-2.1 | 1,053 |
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# docs/Makefile. Generated from Makefile.in by configure.
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Softwa... | thahemp/osg-android | 3rdparty/curl/docs/Makefile | Makefile | lgpl-2.1 | 23,854 |
/***
Copyright (c) 2013 Hércules S. S. José
Este arquivo é parte do programa EncontreAquiPeças.
EncontreAquiPeças é um software livre; você pode redistribui-lo e/ou
modificá-lo dentro dos termos da Licença Pública Geral Menor GNU como
publicada pela Fundação do Software Livre (FSF); na ... | herculeshssj/encontreaquipecas | src/br/com/hslife/encontreaquipecas/entity/AuditoriaDados.java | Java | lgpl-2.1 | 2,693 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>bufferPool</title>
<!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code... | jiangbo212/netty-init | html-docs/contents/2d53f0aa53d93769b62c018cae522d87.html | HTML | lgpl-2.1 | 7,532 |
<!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_07) on Tue Jul 29 17:23:27 CEST 2008 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
Uses of Class org.fo... | Fosstrak/fosstrak.github.io | reader/testapidocs/org/fosstrak/reader/rprm/core/mgmt/agent/snmp/table/class-use/RowObjectContainerTest.html | HTML | lgpl-2.1 | 6,847 |
#region netDxf library licensed under the MIT License
//
// netDxf library
// Copyright (c) 2019-2021 Daniel Carvajal (haplokuon@gmail.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), ... | haplokuon/netDxf | netDxf/BezierCurveCubic.cs | C# | lgpl-2.1 | 12,917 |
// -*- C++ -*-
/* GG is a GUI for SDL and OpenGL.
Copyright (C) 2003-2008 T. Zachary Laine
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 ... | tzlaine/GG | GG/MultiEditFwd.h | C | lgpl-2.1 | 3,284 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- q3asciicache.qdoc -->
<head>
<title>Qt 4.6: Q3AsciiCache Class Reference</title>
<link href="classic.css" rel="st... | kobolabs/qt-everywhere-opensource-src-4.6.2 | doc/html/q3asciicache.html | HTML | lgpl-2.1 | 17,007 |
/****************************************************************************
This file is part of the GLC-lib library.
Copyright (C) 2005-2008 Laurent Ribon (laumaya@users.sourceforge.net)
http://glc-lib.sourceforge.net
GLC-lib is free software; you can redistribute it and/or modify
it under the terms of the GN... | laumaya/GLC_lib | src/lib/maths/glc_line3d.h | C | lgpl-2.1 | 3,157 |
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:L... | xkfz007/vlc | build/win32/include/qt4/src/gui/embedded/qscreendriverfactory_qws.cpp | C++ | lgpl-2.1 | 6,673 |
/*
* pkcs15.h: OpenSC PKCS#15 header file
*
* Copyright (C) 2001, 2002 Juha Yrjölä <juha.yrjola@iki.fi>
*
* 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 ... | puccia/OpenSC | src/libopensc/pkcs15.h | C | lgpl-2.1 | 34,394 |
/*
* libvirt-host.h
* Summary: APIs for management of hosts
* Description: Provides APIs for the management of hosts
*
* Copyright (C) 2006-2014 Red Hat, Inc.
*
* 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... | andreabolognani/libvirt | include/libvirt/libvirt-host.h | C | lgpl-2.1 | 25,314 |
/* dlvhex -- Answer-Set Programming with external interfaces.
* Copyright (C) 2005-2007 Roman Schindlauer
* Copyright (C) 2006-2015 Thomas Krennwallner
* Copyright (C) 2009-2016 Peter Schüller
* Copyright (C) 2011-2016 Christoph Redl
* Copyright (C) 2015-2016 Tobias Kaminski
* Copyright (C) 2015-2016 Antonius Wei... | hexhex/core | include/dlvhex2/PluginContainer.h | C | lgpl-2.1 | 4,832 |
"""LDAP protocol proxy server"""
from twisted.internet import reactor, defer
from ldaptor.protocols.ldap import ldapserver, ldapconnector, ldapclient
from ldaptor.protocols import pureldap
class Proxy(ldapserver.BaseLDAPServer):
protocol = ldapclient.LDAPClient
client = None
waitingConnect = []
unbou... | antong/ldaptor | ldaptor/protocols/ldap/proxy.py | Python | lgpl-2.1 | 3,381 |
// The libMesh Finite Element Library.
// Copyright (C) 2002-2012 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
// 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 ... | certik/libmesh | include/mesh/tecplot_io.h | C | lgpl-2.1 | 3,538 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.