code
stringlengths
3
1.05M
repo_name
stringlengths
4
116
path
stringlengths
3
942
language
stringclasses
30 values
license
stringclasses
15 values
size
int32
3
1.05M
#### NOTICE: THIS FILE IS AUTOGENERATED #### MODIFICATIONS MAY BE LOST IF DONE IMPROPERLY #### PLEASE SEE THE ONLINE DOCUMENTATION FOR EXAMPLES from swgpy.object import * def create(kernel): result = Tangible() result.template = "object/tangible/wearables/ithorian/shared_ith_vest_s01.iff" result.attribute_template_id = 11 result.stfName("wearables_name","ith_vest_s01") #### BEGIN MODIFICATIONS #### #### END MODIFICATIONS #### return result
anhstudios/swganh
data/scripts/templates/object/tangible/wearables/ithorian/shared_ith_vest_s01.py
Python
mit
462
// // Generated by the J2ObjC translator. DO NOT EDIT! // source: /Users/ex3ndr/Develop/actor-proprietary/actor-apps/core/src/main/java/im/actor/model/modules/messages/OwnReadActor.java // #ifndef _ImActorModelModulesMessagesOwnReadActor_H_ #define _ImActorModelModulesMessagesOwnReadActor_H_ #include "J2ObjC_header.h" #include "im/actor/model/modules/utils/ModuleActor.h" @class AMPeer; @class ImActorModelModulesModules; @interface ImActorModelModulesMessagesOwnReadActor : ImActorModelModulesUtilsModuleActor #pragma mark Public - (instancetype)initWithImActorModelModulesModules:(ImActorModelModulesModules *)messenger; - (void)onMessageReadWithAMPeer:(AMPeer *)peer withLong:(jlong)sortingDate; - (void)onMessageReadByMeWithAMPeer:(AMPeer *)peer withLong:(jlong)sortingDate; - (void)onReceiveWithId:(id)message; @end J2OBJC_EMPTY_STATIC_INIT(ImActorModelModulesMessagesOwnReadActor) FOUNDATION_EXPORT void ImActorModelModulesMessagesOwnReadActor_initWithImActorModelModulesModules_(ImActorModelModulesMessagesOwnReadActor *self, ImActorModelModulesModules *messenger); FOUNDATION_EXPORT ImActorModelModulesMessagesOwnReadActor *new_ImActorModelModulesMessagesOwnReadActor_initWithImActorModelModulesModules_(ImActorModelModulesModules *messenger) NS_RETURNS_RETAINED; J2OBJC_TYPE_LITERAL_HEADER(ImActorModelModulesMessagesOwnReadActor) @interface ImActorModelModulesMessagesOwnReadActor_MessageReadByMe : NSObject { @public AMPeer *peer_; jlong sortDate_; } #pragma mark Public - (instancetype)initWithAMPeer:(AMPeer *)peer withLong:(jlong)sortDate; - (AMPeer *)getPeer; - (jlong)getSortDate; @end J2OBJC_EMPTY_STATIC_INIT(ImActorModelModulesMessagesOwnReadActor_MessageReadByMe) J2OBJC_FIELD_SETTER(ImActorModelModulesMessagesOwnReadActor_MessageReadByMe, peer_, AMPeer *) FOUNDATION_EXPORT void ImActorModelModulesMessagesOwnReadActor_MessageReadByMe_initWithAMPeer_withLong_(ImActorModelModulesMessagesOwnReadActor_MessageReadByMe *self, AMPeer *peer, jlong sortDate); FOUNDATION_EXPORT ImActorModelModulesMessagesOwnReadActor_MessageReadByMe *new_ImActorModelModulesMessagesOwnReadActor_MessageReadByMe_initWithAMPeer_withLong_(AMPeer *peer, jlong sortDate) NS_RETURNS_RETAINED; J2OBJC_TYPE_LITERAL_HEADER(ImActorModelModulesMessagesOwnReadActor_MessageReadByMe) @interface ImActorModelModulesMessagesOwnReadActor_MessageRead : NSObject { @public AMPeer *peer_; jlong sortingDate_; } #pragma mark Public - (instancetype)initWithAMPeer:(AMPeer *)peer withLong:(jlong)sortingDate; - (AMPeer *)getPeer; - (jlong)getSortingDate; @end J2OBJC_EMPTY_STATIC_INIT(ImActorModelModulesMessagesOwnReadActor_MessageRead) J2OBJC_FIELD_SETTER(ImActorModelModulesMessagesOwnReadActor_MessageRead, peer_, AMPeer *) FOUNDATION_EXPORT void ImActorModelModulesMessagesOwnReadActor_MessageRead_initWithAMPeer_withLong_(ImActorModelModulesMessagesOwnReadActor_MessageRead *self, AMPeer *peer, jlong sortingDate); FOUNDATION_EXPORT ImActorModelModulesMessagesOwnReadActor_MessageRead *new_ImActorModelModulesMessagesOwnReadActor_MessageRead_initWithAMPeer_withLong_(AMPeer *peer, jlong sortingDate) NS_RETURNS_RETAINED; J2OBJC_TYPE_LITERAL_HEADER(ImActorModelModulesMessagesOwnReadActor_MessageRead) #endif // _ImActorModelModulesMessagesOwnReadActor_H_
hejunbinlan/actor-platform
actor-apps/core-async-cocoa/src/im/actor/model/modules/messages/OwnReadActor.h
C
mit
3,385
const Credstash = require('nodecredstash'); const credstash = new Credstash({ table: 'credentials-store', awsOpts: { region: process.env.NICBOT_AWS_REGION || 'us-east-1' } }); module.exports = credstash;
yjimk/nicbot
lambda/dynamo/bin/Credstash.js
JavaScript
mit
209
// Package provider holds the different provider implementation. package provider import ( "errors" "fmt" "strings" "text/template" "time" "github.com/BurntSushi/ty/fun" "github.com/cenk/backoff" "github.com/containous/traefik/job" "github.com/containous/traefik/log" "github.com/containous/traefik/safe" "github.com/containous/traefik/types" "github.com/docker/libkv" "github.com/docker/libkv/store" ) // Kv holds common configurations of key-value providers. type Kv struct { BaseProvider `mapstructure:",squash"` Endpoint string `description:"Comma sepparated server endpoints"` Prefix string `description:"Prefix used for KV store"` TLS *ClientTLS `description:"Enable TLS support"` storeType store.Backend kvclient store.Store } func (provider *Kv) createStore() (store.Store, error) { storeConfig := &store.Config{ ConnectionTimeout: 30 * time.Second, Bucket: "traefik", } if provider.TLS != nil { var err error storeConfig.TLS, err = provider.TLS.CreateTLSConfig() if err != nil { return nil, err } } return libkv.NewStore( provider.storeType, strings.Split(provider.Endpoint, ","), storeConfig, ) } func (provider *Kv) watchKv(configurationChan chan<- types.ConfigMessage, prefix string, stop chan bool) error { operation := func() error { events, err := provider.kvclient.WatchTree(provider.Prefix, make(chan struct{})) if err != nil { return fmt.Errorf("Failed to KV WatchTree: %v", err) } for { select { case <-stop: return nil case _, ok := <-events: if !ok { return errors.New("watchtree channel closed") } configuration := provider.loadConfig() if configuration != nil { configurationChan <- types.ConfigMessage{ ProviderName: string(provider.storeType), Configuration: configuration, } } } } } notify := func(err error, time time.Duration) { log.Errorf("KV connection error: %+v, retrying in %s", err, time) } err := backoff.RetryNotify(safe.OperationWithRecover(operation), job.NewBackOff(backoff.NewExponentialBackOff()), notify) if err != nil { return fmt.Errorf("Cannot connect to KV server: %v", err) } return nil } func (provider *Kv) provide(configurationChan chan<- types.ConfigMessage, pool *safe.Pool, constraints types.Constraints) error { provider.Constraints = append(provider.Constraints, constraints...) operation := func() error { if _, err := provider.kvclient.Exists("qmslkjdfmqlskdjfmqlksjazçueznbvbwzlkajzebvkwjdcqmlsfj"); err != nil { return fmt.Errorf("Failed to test KV store connection: %v", err) } if provider.Watch { pool.Go(func(stop chan bool) { err := provider.watchKv(configurationChan, provider.Prefix, stop) if err != nil { log.Errorf("Cannot watch KV store: %v", err) } }) } configuration := provider.loadConfig() configurationChan <- types.ConfigMessage{ ProviderName: string(provider.storeType), Configuration: configuration, } return nil } notify := func(err error, time time.Duration) { log.Errorf("KV connection error: %+v, retrying in %s", err, time) } err := backoff.RetryNotify(safe.OperationWithRecover(operation), job.NewBackOff(backoff.NewExponentialBackOff()), notify) if err != nil { return fmt.Errorf("Cannot connect to KV server: %v", err) } return nil } func (provider *Kv) loadConfig() *types.Configuration { templateObjects := struct { Prefix string }{ // Allow `/traefik/alias` to superesede `provider.Prefix` strings.TrimSuffix(provider.get(provider.Prefix, provider.Prefix+"/alias"), "/"), } var KvFuncMap = template.FuncMap{ "List": provider.list, "ListServers": provider.listServers, "Get": provider.get, "SplitGet": provider.splitGet, "Last": provider.last, } configuration, err := provider.getConfiguration("templates/kv.tmpl", KvFuncMap, templateObjects) if err != nil { log.Error(err) } for key, frontend := range configuration.Frontends { if _, ok := configuration.Backends[frontend.Backend]; ok == false { delete(configuration.Frontends, key) } } return configuration } func (provider *Kv) list(keys ...string) []string { joinedKeys := strings.Join(keys, "") keysPairs, err := provider.kvclient.List(joinedKeys) if err != nil { log.Debugf("Cannot get keys %s %s ", joinedKeys, err) return nil } directoryKeys := make(map[string]string) for _, key := range keysPairs { directory := strings.Split(strings.TrimPrefix(key.Key, joinedKeys), "/")[0] directoryKeys[directory] = joinedKeys + directory } return fun.Values(directoryKeys).([]string) } func (provider *Kv) listServers(backend string) []string { serverNames := provider.list(backend, "/servers/") return fun.Filter(func(serverName string) bool { key := fmt.Sprint(serverName, "/url") if _, err := provider.kvclient.Get(key); err != nil { if err != store.ErrKeyNotFound { log.Errorf("Failed to retrieve value for key %s: %s", key, err) } return false } return provider.checkConstraints(serverName, "/tags") }, serverNames).([]string) } func (provider *Kv) get(defaultValue string, keys ...string) string { joinedKeys := strings.Join(keys, "") keyPair, err := provider.kvclient.Get(strings.TrimPrefix(joinedKeys, "/")) if err != nil { log.Debugf("Cannot get key %s %s, setting default %s", joinedKeys, err, defaultValue) return defaultValue } else if keyPair == nil { log.Debugf("Cannot get key %s, setting default %s", joinedKeys, defaultValue) return defaultValue } return string(keyPair.Value) } func (provider *Kv) splitGet(keys ...string) []string { joinedKeys := strings.Join(keys, "") keyPair, err := provider.kvclient.Get(joinedKeys) if err != nil { log.Debugf("Cannot get key %s %s, setting default empty", joinedKeys, err) return []string{} } else if keyPair == nil { log.Debugf("Cannot get key %s, setting default %empty", joinedKeys) return []string{} } return strings.Split(string(keyPair.Value), ",") } func (provider *Kv) last(key string) string { splittedKey := strings.Split(key, "/") return splittedKey[len(splittedKey)-1] } func (provider *Kv) checkConstraints(keys ...string) bool { joinedKeys := strings.Join(keys, "") keyPair, err := provider.kvclient.Get(joinedKeys) value := "" if err == nil && keyPair != nil && keyPair.Value != nil { value = string(keyPair.Value) } constraintTags := strings.Split(value, ",") ok, failingConstraint := provider.MatchConstraints(constraintTags) if ok == false { if failingConstraint != nil { log.Debugf("Constraint %v not matching with following tags: %v", failingConstraint.String(), value) } return false } return true }
Nitro/traefik
provider/kv.go
GO
mit
6,727
require_relative 'dialect' require_relative 'errors' module Gherkin class TokenMatcher LANGUAGE_PATTERN = /^\s*#\s*language\s*:\s*([a-zA-Z\-_]+)\s*$/ def initialize(dialect_name = 'en') @default_dialect_name = dialect_name change_dialect(dialect_name, nil) reset end def reset change_dialect(@default_dialect_name, nil) unless @dialect_name == @default_dialect_name @active_doc_string_separator = nil @indent_to_remove = 0 end def match_TagLine(token) return false unless token.line.start_with?('@') set_token_matched(token, :TagLine, nil, nil, nil, token.line.tags) true end def match_FeatureLine(token) match_title_line(token, :FeatureLine, @dialect.feature_keywords) end def match_RuleLine(token) match_title_line(token, :RuleLine, @dialect.rule_keywords) end def match_ScenarioLine(token) match_title_line(token, :ScenarioLine, @dialect.scenario_keywords) || match_title_line(token, :ScenarioLine, @dialect.scenario_outline_keywords) end def match_BackgroundLine(token) match_title_line(token, :BackgroundLine, @dialect.background_keywords) end def match_ExamplesLine(token) match_title_line(token, :ExamplesLine, @dialect.examples_keywords) end def match_TableRow(token) return false unless token.line.start_with?('|') # TODO: indent set_token_matched(token, :TableRow, nil, nil, nil, token.line.table_cells) true end def match_Empty(token) return false unless token.line.empty? set_token_matched(token, :Empty, nil, nil, 0) true end def match_Comment(token) return false unless token.line.start_with?('#') text = token.line.get_line_text(0) #take the entire line, including leading space set_token_matched(token, :Comment, text, nil, 0) true end def match_Language(token) return false unless token.line.trimmed_line_text =~ LANGUAGE_PATTERN dialect_name = $1 set_token_matched(token, :Language, dialect_name) change_dialect(dialect_name, token.location) true end def match_DocStringSeparator(token) if @active_doc_string_separator.nil? # open _match_DocStringSeparator(token, '"""', true) || _match_DocStringSeparator(token, '```', true) else # close _match_DocStringSeparator(token, @active_doc_string_separator, false) end end def _match_DocStringSeparator(token, separator, is_open) return false unless token.line.start_with?(separator) media_type = nil if is_open media_type = token.line.get_rest_trimmed(separator.length) @active_doc_string_separator = separator @indent_to_remove = token.line.indent else @active_doc_string_separator = nil @indent_to_remove = 0 end set_token_matched(token, :DocStringSeparator, media_type, separator) true end def match_EOF(token) return false unless token.eof? set_token_matched(token, :EOF) true end def match_Other(token) text = token.line.get_line_text(@indent_to_remove) # take the entire line, except removing DocString indents set_token_matched(token, :Other, unescape_docstring(text), nil, 0) true end def match_StepLine(token) keywords = @dialect.given_keywords + @dialect.when_keywords + @dialect.then_keywords + @dialect.and_keywords + @dialect.but_keywords keyword = keywords.detect { |k| token.line.start_with?(k) } return false unless keyword title = token.line.get_rest_trimmed(keyword.length) set_token_matched(token, :StepLine, title, keyword) return true end private def change_dialect(dialect_name, location) dialect = Dialect.for(dialect_name) raise NoSuchLanguageException.new(dialect_name, location) if dialect.nil? @dialect_name = dialect_name @dialect = dialect end def match_title_line(token, token_type, keywords) keyword = keywords.detect { |k| token.line.start_with_title_keyword?(k) } return false unless keyword title = token.line.get_rest_trimmed(keyword.length + ':'.length) set_token_matched(token, token_type, title, keyword) true end def set_token_matched(token, matched_type, text = nil, keyword = nil, indent = nil, items = []) token.matched_type = matched_type token.matched_text = text && text.chomp token.matched_keyword = keyword token.matched_indent = indent || (token.line && token.line.indent) || 0 token.matched_items = items token.location[:column] = token.matched_indent + 1 token.matched_gherkin_dialect = @dialect_name end def unescape_docstring(text) if @active_doc_string_separator == "\"\"\"" text.gsub("\\\"\\\"\\\"", "\"\"\"") elsif @active_doc_string_separator == "```" text.gsub("\\`\\`\\`", "```") else text end end end end
cucumber/gherkin-ruby
lib/gherkin/token_matcher.rb
Ruby
mit
5,132
import $ from 'jquery'; import initSettingsPanels from '~/settings_panels'; describe('Settings Panels', () => { preloadFixtures('groups/edit.html.raw'); beforeEach(() => { loadFixtures('groups/edit.html.raw'); }); describe('initSettingsPane', () => { afterEach(() => { window.location.hash = ''; }); it('should expand linked hash fragment panel', () => { window.location.hash = '#js-general-settings'; const panel = document.querySelector('#js-general-settings'); // Our test environment automatically expands everything so we need to clear that out first panel.classList.remove('expanded'); expect(panel.classList.contains('expanded')).toBe(false); initSettingsPanels(); expect(panel.classList.contains('expanded')).toBe(true); }); }); it('does not change the text content of triggers', () => { const panel = document.querySelector('#js-general-settings'); const trigger = panel.querySelector('.js-settings-toggle-trigger-only'); const originalText = trigger.textContent; initSettingsPanels(); expect(panel.classList.contains('expanded')).toBe(true); $(trigger).click(); expect(panel.classList.contains('expanded')).toBe(false); expect(trigger.textContent).toEqual(originalText); }); });
axilleas/gitlabhq
spec/javascripts/settings_panels_spec.js
JavaScript
mit
1,316
<?php namespace App\Events\Abstracts; abstract class Event { // }
eahrold/Deployery
app/Events/Abstracts/Event.php
PHP
mit
72
import * as React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <path d="M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" /> , 'OutlinedFlagTwoTone');
callemall/material-ui
packages/material-ui-icons/src/OutlinedFlagTwoTone.js
JavaScript
mit
217
#### NOTICE: THIS FILE IS AUTOGENERATED #### MODIFICATIONS MAY BE LOST IF DONE IMPROPERLY #### PLEASE SEE THE ONLINE DOCUMENTATION FOR EXAMPLES from swgpy.object import * def create(kernel): result = Creature() result.template = "object/mobile/shared_dressed_corvette_neutral_yondalla.iff" result.attribute_template_id = 9 result.stfName("npc_name","zabrak_base_female") #### BEGIN MODIFICATIONS #### #### END MODIFICATIONS #### return result
anhstudios/swganh
data/scripts/templates/object/mobile/shared_dressed_corvette_neutral_yondalla.py
Python
mit
461
// Copyright © 2015, Peter Atashian // Licensed under the MIT License <LICENSE.md> extern crate build; fn main() { build::link("winscard", true) }
Boddlnagg/winapi-rs
lib/winscard/build.rs
Rust
mit
152
#include "f2c.h" #include "blaswrap.h" /* Subroutine */ int slar1v_(integer *n, integer *b1, integer *bn, real * lambda, real *d__, real *l, real *ld, real *lld, real *pivmin, real * gaptol, real *z__, logical *wantnc, integer *negcnt, real *ztz, real * mingma, integer *r__, integer *isuppz, real *nrminv, real *resid, real *rqcorr, real *work) { /* System generated locals */ integer i__1; real r__1, r__2, r__3; /* Builtin functions */ double sqrt(doublereal); /* Local variables */ integer i__; real s; integer r1, r2; real eps, tmp; integer neg1, neg2, indp, inds; real dplus; extern doublereal slamch_(char *); integer indlpl, indumn; extern logical sisnan_(real *); real dminus; logical sawnan1, sawnan2; /* -- LAPACK auxiliary routine (version 3.1) -- */ /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ /* November 2006 */ /* .. Scalar Arguments .. */ /* .. */ /* .. Array Arguments .. */ /* .. */ /* Purpose */ /* ======= */ /* SLAR1V computes the (scaled) r-th column of the inverse of */ /* the sumbmatrix in rows B1 through BN of the tridiagonal matrix */ /* L D L^T - sigma I. When sigma is close to an eigenvalue, the */ /* computed vector is an accurate eigenvector. Usually, r corresponds */ /* to the index where the eigenvector is largest in magnitude. */ /* The following steps accomplish this computation : */ /* (a) Stationary qd transform, L D L^T - sigma I = L(+) D(+) L(+)^T, */ /* (b) Progressive qd transform, L D L^T - sigma I = U(-) D(-) U(-)^T, */ /* (c) Computation of the diagonal elements of the inverse of */ /* L D L^T - sigma I by combining the above transforms, and choosing */ /* r as the index where the diagonal of the inverse is (one of the) */ /* largest in magnitude. */ /* (d) Computation of the (scaled) r-th column of the inverse using the */ /* twisted factorization obtained by combining the top part of the */ /* the stationary and the bottom part of the progressive transform. */ /* Arguments */ /* ========= */ /* N (input) INTEGER */ /* The order of the matrix L D L^T. */ /* B1 (input) INTEGER */ /* First index of the submatrix of L D L^T. */ /* BN (input) INTEGER */ /* Last index of the submatrix of L D L^T. */ /* LAMBDA (input) REAL */ /* The shift. In order to compute an accurate eigenvector, */ /* LAMBDA should be a good approximation to an eigenvalue */ /* of L D L^T. */ /* L (input) REAL array, dimension (N-1) */ /* The (n-1) subdiagonal elements of the unit bidiagonal matrix */ /* L, in elements 1 to N-1. */ /* D (input) REAL array, dimension (N) */ /* The n diagonal elements of the diagonal matrix D. */ /* LD (input) REAL array, dimension (N-1) */ /* The n-1 elements L(i)*D(i). */ /* LLD (input) REAL array, dimension (N-1) */ /* The n-1 elements L(i)*L(i)*D(i). */ /* PIVMIN (input) REAL */ /* The minimum pivot in the Sturm sequence. */ /* GAPTOL (input) REAL */ /* Tolerance that indicates when eigenvector entries are negligible */ /* w.r.t. their contribution to the residual. */ /* Z (input/output) REAL array, dimension (N) */ /* On input, all entries of Z must be set to 0. */ /* On output, Z contains the (scaled) r-th column of the */ /* inverse. The scaling is such that Z(R) equals 1. */ /* WANTNC (input) LOGICAL */ /* Specifies whether NEGCNT has to be computed. */ /* NEGCNT (output) INTEGER */ /* If WANTNC is .TRUE. then NEGCNT = the number of pivots < pivmin */ /* in the matrix factorization L D L^T, and NEGCNT = -1 otherwise. */ /* ZTZ (output) REAL */ /* The square of the 2-norm of Z. */ /* MINGMA (output) REAL */ /* The reciprocal of the largest (in magnitude) diagonal */ /* element of the inverse of L D L^T - sigma I. */ /* R (input/output) INTEGER */ /* The twist index for the twisted factorization used to */ /* compute Z. */ /* On input, 0 <= R <= N. If R is input as 0, R is set to */ /* the index where (L D L^T - sigma I)^{-1} is largest */ /* in magnitude. If 1 <= R <= N, R is unchanged. */ /* On output, R contains the twist index used to compute Z. */ /* Ideally, R designates the position of the maximum entry in the */ /* eigenvector. */ /* ISUPPZ (output) INTEGER array, dimension (2) */ /* The support of the vector in Z, i.e., the vector Z is */ /* nonzero only in elements ISUPPZ(1) through ISUPPZ( 2 ). */ /* NRMINV (output) REAL */ /* NRMINV = 1/SQRT( ZTZ ) */ /* RESID (output) REAL */ /* The residual of the FP vector. */ /* RESID = ABS( MINGMA )/SQRT( ZTZ ) */ /* RQCORR (output) REAL */ /* The Rayleigh Quotient correction to LAMBDA. */ /* RQCORR = MINGMA*TMP */ /* WORK (workspace) REAL array, dimension (4*N) */ /* Further Details */ /* =============== */ /* Based on contributions by */ /* Beresford Parlett, University of California, Berkeley, USA */ /* Jim Demmel, University of California, Berkeley, USA */ /* Inderjit Dhillon, University of Texas, Austin, USA */ /* Osni Marques, LBNL/NERSC, USA */ /* Christof Voemel, University of California, Berkeley, USA */ /* ===================================================================== */ /* .. Parameters .. */ /* .. */ /* .. Local Scalars .. */ /* .. */ /* .. External Functions .. */ /* .. */ /* .. Intrinsic Functions .. */ /* .. */ /* .. Executable Statements .. */ /* Parameter adjustments */ --work; --isuppz; --z__; --lld; --ld; --l; --d__; /* Function Body */ eps = slamch_("Precision"); if (*r__ == 0) { r1 = *b1; r2 = *bn; } else { r1 = *r__; r2 = *r__; } /* Storage for LPLUS */ indlpl = 0; /* Storage for UMINUS */ indumn = *n; inds = (*n << 1) + 1; indp = *n * 3 + 1; if (*b1 == 1) { work[inds] = 0.f; } else { work[inds + *b1 - 1] = lld[*b1 - 1]; } /* Compute the stationary transform (using the differential form) */ /* until the index R2. */ sawnan1 = FALSE_; neg1 = 0; s = work[inds + *b1 - 1] - *lambda; i__1 = r1 - 1; for (i__ = *b1; i__ <= i__1; ++i__) { dplus = d__[i__] + s; work[indlpl + i__] = ld[i__] / dplus; if (dplus < 0.f) { ++neg1; } work[inds + i__] = s * work[indlpl + i__] * l[i__]; s = work[inds + i__] - *lambda; /* L50: */ } sawnan1 = sisnan_(&s); if (sawnan1) { goto L60; } i__1 = r2 - 1; for (i__ = r1; i__ <= i__1; ++i__) { dplus = d__[i__] + s; work[indlpl + i__] = ld[i__] / dplus; work[inds + i__] = s * work[indlpl + i__] * l[i__]; s = work[inds + i__] - *lambda; /* L51: */ } sawnan1 = sisnan_(&s); L60: if (sawnan1) { /* Runs a slower version of the above loop if a NaN is detected */ neg1 = 0; s = work[inds + *b1 - 1] - *lambda; i__1 = r1 - 1; for (i__ = *b1; i__ <= i__1; ++i__) { dplus = d__[i__] + s; if (dabs(dplus) < *pivmin) { dplus = -(*pivmin); } work[indlpl + i__] = ld[i__] / dplus; if (dplus < 0.f) { ++neg1; } work[inds + i__] = s * work[indlpl + i__] * l[i__]; if (work[indlpl + i__] == 0.f) { work[inds + i__] = lld[i__]; } s = work[inds + i__] - *lambda; /* L70: */ } i__1 = r2 - 1; for (i__ = r1; i__ <= i__1; ++i__) { dplus = d__[i__] + s; if (dabs(dplus) < *pivmin) { dplus = -(*pivmin); } work[indlpl + i__] = ld[i__] / dplus; work[inds + i__] = s * work[indlpl + i__] * l[i__]; if (work[indlpl + i__] == 0.f) { work[inds + i__] = lld[i__]; } s = work[inds + i__] - *lambda; /* L71: */ } } /* Compute the progressive transform (using the differential form) */ /* until the index R1 */ sawnan2 = FALSE_; neg2 = 0; work[indp + *bn - 1] = d__[*bn] - *lambda; i__1 = r1; for (i__ = *bn - 1; i__ >= i__1; --i__) { dminus = lld[i__] + work[indp + i__]; tmp = d__[i__] / dminus; if (dminus < 0.f) { ++neg2; } work[indumn + i__] = l[i__] * tmp; work[indp + i__ - 1] = work[indp + i__] * tmp - *lambda; /* L80: */ } tmp = work[indp + r1 - 1]; sawnan2 = sisnan_(&tmp); if (sawnan2) { /* Runs a slower version of the above loop if a NaN is detected */ neg2 = 0; i__1 = r1; for (i__ = *bn - 1; i__ >= i__1; --i__) { dminus = lld[i__] + work[indp + i__]; if (dabs(dminus) < *pivmin) { dminus = -(*pivmin); } tmp = d__[i__] / dminus; if (dminus < 0.f) { ++neg2; } work[indumn + i__] = l[i__] * tmp; work[indp + i__ - 1] = work[indp + i__] * tmp - *lambda; if (tmp == 0.f) { work[indp + i__ - 1] = d__[i__] - *lambda; } /* L100: */ } } /* Find the index (from R1 to R2) of the largest (in magnitude) */ /* diagonal element of the inverse */ *mingma = work[inds + r1 - 1] + work[indp + r1 - 1]; if (*mingma < 0.f) { ++neg1; } if (*wantnc) { *negcnt = neg1 + neg2; } else { *negcnt = -1; } if (dabs(*mingma) == 0.f) { *mingma = eps * work[inds + r1 - 1]; } *r__ = r1; i__1 = r2 - 1; for (i__ = r1; i__ <= i__1; ++i__) { tmp = work[inds + i__] + work[indp + i__]; if (tmp == 0.f) { tmp = eps * work[inds + i__]; } if (dabs(tmp) <= dabs(*mingma)) { *mingma = tmp; *r__ = i__ + 1; } /* L110: */ } /* Compute the FP vector: solve N^T v = e_r */ isuppz[1] = *b1; isuppz[2] = *bn; z__[*r__] = 1.f; *ztz = 1.f; /* Compute the FP vector upwards from R */ if (! sawnan1 && ! sawnan2) { i__1 = *b1; for (i__ = *r__ - 1; i__ >= i__1; --i__) { z__[i__] = -(work[indlpl + i__] * z__[i__ + 1]); if (((r__1 = z__[i__], dabs(r__1)) + (r__2 = z__[i__ + 1], dabs( r__2))) * (r__3 = ld[i__], dabs(r__3)) < *gaptol) { z__[i__] = 0.f; isuppz[1] = i__ + 1; goto L220; } *ztz += z__[i__] * z__[i__]; /* L210: */ } L220: ; } else { /* Run slower loop if NaN occurred. */ i__1 = *b1; for (i__ = *r__ - 1; i__ >= i__1; --i__) { if (z__[i__ + 1] == 0.f) { z__[i__] = -(ld[i__ + 1] / ld[i__]) * z__[i__ + 2]; } else { z__[i__] = -(work[indlpl + i__] * z__[i__ + 1]); } if (((r__1 = z__[i__], dabs(r__1)) + (r__2 = z__[i__ + 1], dabs( r__2))) * (r__3 = ld[i__], dabs(r__3)) < *gaptol) { z__[i__] = 0.f; isuppz[1] = i__ + 1; goto L240; } *ztz += z__[i__] * z__[i__]; /* L230: */ } L240: ; } /* Compute the FP vector downwards from R in blocks of size BLKSIZ */ if (! sawnan1 && ! sawnan2) { i__1 = *bn - 1; for (i__ = *r__; i__ <= i__1; ++i__) { z__[i__ + 1] = -(work[indumn + i__] * z__[i__]); if (((r__1 = z__[i__], dabs(r__1)) + (r__2 = z__[i__ + 1], dabs( r__2))) * (r__3 = ld[i__], dabs(r__3)) < *gaptol) { z__[i__ + 1] = 0.f; isuppz[2] = i__; goto L260; } *ztz += z__[i__ + 1] * z__[i__ + 1]; /* L250: */ } L260: ; } else { /* Run slower loop if NaN occurred. */ i__1 = *bn - 1; for (i__ = *r__; i__ <= i__1; ++i__) { if (z__[i__] == 0.f) { z__[i__ + 1] = -(ld[i__ - 1] / ld[i__]) * z__[i__ - 1]; } else { z__[i__ + 1] = -(work[indumn + i__] * z__[i__]); } if (((r__1 = z__[i__], dabs(r__1)) + (r__2 = z__[i__ + 1], dabs( r__2))) * (r__3 = ld[i__], dabs(r__3)) < *gaptol) { z__[i__ + 1] = 0.f; isuppz[2] = i__; goto L280; } *ztz += z__[i__ + 1] * z__[i__ + 1]; /* L270: */ } L280: ; } /* Compute quantities for convergence test */ tmp = 1.f / *ztz; *nrminv = sqrt(tmp); *resid = dabs(*mingma) * *nrminv; *rqcorr = *mingma * tmp; return 0; /* End of SLAR1V */ } /* slar1v_ */
dacap/loseface
third_party/clapack/SRC/slar1v.c
C
mit
12,180
#### Integrations ##### Palo Alto Networks PAN-OS EDL Service - Fixed an issue where a XSOAR indicator page was skipped.
VirusTotal/content
Packs/EDL/ReleaseNotes/1_0_12.md
Markdown
mit
122
/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Enable RDRANR Hardware RNG Hash Seed */ /* #undef ENABLE_RDRAND */ /* Define if .gnu.warning accepts long strings. */ /* #undef HAS_GNU_WARNING_LONG */ /* Define to 1 if you have the declaration of `INFINITY', and to 0 if you don't. */ #define HAVE_DECL_INFINITY 1 /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't. */ #define HAVE_DECL_ISINF 1 /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't. */ #define HAVE_DECL_ISNAN 1 /* Define to 1 if you have the declaration of `nan', and to 0 if you don't. */ #define HAVE_DECL_NAN 1 /* Define to 1 if you have the declaration of `_finite', and to 0 if you don't. */ #define HAVE_DECL__FINITE 0 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't. */ #define HAVE_DECL__ISNAN 0 /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ /* #undef HAVE_DOPRNT */ /* Define to 1 if you have the <endian.h> header file. */ /* #undef HAVE_ENDIAN_H */ /* Define to 1 if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H 1 /* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <limits.h> header file. */ #define HAVE_LIMITS_H 1 /* Define to 1 if you have the <locale.h> header file. */ #define HAVE_LOCALE_H 1 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #define HAVE_MALLOC 1 /* Define to 1 if you have the <memory.h> header file. */ #define HAVE_MEMORY_H 1 /* Define to 1 if you have the `open' function. */ #define HAVE_OPEN 1 /* Define to 1 if your system has a GNU libc compatible `realloc' function, and to 0 otherwise. */ #define HAVE_REALLOC 1 /* Define to 1 if you have the `setlocale' function. */ #define HAVE_SETLOCALE 1 /* Define to 1 if you have the `snprintf' function. */ #define HAVE_SNPRINTF 1 /* Define to 1 if you have the <stdarg.h> header file. */ #define HAVE_STDARG_H 1 /* Define to 1 if you have the <stdint.h> header file. */ #define HAVE_STDINT_H 1 /* Define to 1 if you have the <stdlib.h> header file. */ #define HAVE_STDLIB_H 1 /* Define to 1 if you have the `strcasecmp' function. */ #define HAVE_STRCASECMP 1 /* Define to 1 if you have the `strdup' function. */ #define HAVE_STRDUP 1 /* Define to 1 if you have the `strerror' function. */ #define HAVE_STRERROR 1 /* Define to 1 if you have the <strings.h> header file. */ #define HAVE_STRINGS_H 1 /* Define to 1 if you have the <string.h> header file. */ #define HAVE_STRING_H 1 /* Define to 1 if you have the `strncasecmp' function. */ #define HAVE_STRNCASECMP 1 /* Define to 1 if you have the <syslog.h> header file. */ #define HAVE_SYSLOG_H 1 /* Define to 1 if you have the <sys/cdefs.h> header file. */ #define HAVE_SYS_CDEFS_H 1 /* Define to 1 if you have the <sys/param.h> header file. */ #define HAVE_SYS_PARAM_H 1 /* Define to 1 if you have the <sys/stat.h> header file. */ #define HAVE_SYS_STAT_H 1 /* Define to 1 if you have the <sys/types.h> header file. */ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if you have the <unistd.h> header file. */ #define HAVE_UNISTD_H 1 /* Define to 1 if you have the `vasprintf' function. */ #define HAVE_VASPRINTF 1 /* Define to 1 if you have the `vprintf' function. */ #define HAVE_VPRINTF 1 /* Define to 1 if you have the `vsnprintf' function. */ #define HAVE_VSNPRINTF 1 /* Define to 1 if you have the `vsyslog' function. */ #define HAVE_VSYSLOG 1 /* Public define for json_inttypes.h */ #define JSON_C_HAVE_INTTYPES_H 0 /* Define to the sub-directory where libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" /* Name of package */ #define PACKAGE "json-c" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "[email protected]" /* Define to the full name of this package. */ #define PACKAGE_NAME "json-c" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "json-c 0.12.99" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "json-c" /* Define to the home page for this package. */ #define PACKAGE_URL "" /* Define to the version of this package. */ #define PACKAGE_VERSION "0.12.99" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 /* Version number of package */ #define VERSION "0.12.99" /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ /* Define to rpl_malloc if the replacement function should be used. */ /* #undef malloc */ /* Define to rpl_realloc if the replacement function should be used. */ /* #undef realloc */ /* Define to `unsigned int' if <sys/types.h> does not define. */ /* #undef size_t */
PureSwift/json-c
config.h
C
mit
4,971
<?php /** * @Created By ECMall PhpCacheServer * @Time:2015-01-24 20:22:49 */ if(filemtime(__FILE__) + 600 < time())return false; return array ( 'inbox' => '0', 'outbox' => '0', 'total' => 0, ); ?>
guotao2000/ecmall
temp/caches/0219/d33641cf017eb589f9cc44ddace2d768.cache.php
PHP
mit
220
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * 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, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.math3.stat.interval; import org.apache.commons.math3.distribution.FDistribution; /** * Implements the Clopper-Pearson method for creating a binomial proportion confidence interval. * * @see <a * href="http://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval#Clopper-Pearson_interval"> * Clopper-Pearson interval (Wikipedia)</a> * @version $Id: ClopperPearsonInterval.java 1560928 2014-01-24 09:58:43Z luc $ * @since 3.3 */ public class ClopperPearsonInterval implements BinomialConfidenceInterval { /** {@inheritDoc} */ public ConfidenceInterval createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel) { IntervalUtils.checkParameters(numberOfTrials, numberOfSuccesses, confidenceLevel); double lowerBound = 0; double upperBound = 0; final double alpha = (1.0 - confidenceLevel) / 2.0; final FDistribution distributionLowerBound = new FDistribution(2 * (numberOfTrials - numberOfSuccesses + 1), 2 * numberOfSuccesses); final double fValueLowerBound = distributionLowerBound.inverseCumulativeProbability(1 - alpha); if (numberOfSuccesses > 0) { lowerBound = numberOfSuccesses / (numberOfSuccesses + (numberOfTrials - numberOfSuccesses + 1) * fValueLowerBound); } final FDistribution distributionUpperBound = new FDistribution(2 * (numberOfSuccesses + 1), 2 * (numberOfTrials - numberOfSuccesses)); final double fValueUpperBound = distributionUpperBound.inverseCumulativeProbability(1 - alpha); if (numberOfSuccesses > 0) { upperBound = (numberOfSuccesses + 1) * fValueUpperBound / (numberOfTrials - numberOfSuccesses + (numberOfSuccesses + 1) * fValueUpperBound); } return new ConfidenceInterval(lowerBound, upperBound, confidenceLevel); } }
tbepler/seq-svm
src/org/apache/commons/math3/stat/interval/ClopperPearsonInterval.java
Java
mit
2,910
namespace Excel.Core.BinaryFormat { /// <summary> /// Represents multiple Blank cell /// </summary> internal class XlsBiffMulBlankCell : XlsBiffBlankCell { internal XlsBiffMulBlankCell(byte[] bytes, uint offset, ExcelBinaryReader reader) : base(bytes, offset, reader) { } /// <summary> /// Zero-based index of last described column /// </summary> public ushort LastColumnIndex { get { return base.ReadUInt16(RecordSize - 2); } } /// <summary> /// Returns format forspecified column, column must be between ColumnIndex and LastColumnIndex /// </summary> /// <param name="ColumnIdx">Index of column</param> /// <returns>Format</returns> public ushort GetXF(ushort ColumnIdx) { int ofs = 4 + 6*(ColumnIdx - ColumnIndex); if (ofs > RecordSize - 2) return 0; return base.ReadUInt16(ofs); } } }
tomkyn/Default
Excel/Core/BinaryFormat/XlsBiffMulBlankCell.cs
C#
mit
882
var fs = require('fs'); var csvWriter = require('csv-write-stream'); var writer = csvWriter({ headers: ['url'] }); var config = require('../config.json'); writer.pipe(fs.createWriteStream(process.cwd() + '/' + config.csvFilename)); var csvWriter = function(url) { let data = { url: url }; writer.write(data); } module.exports = csvWriter;
drakaris/nightshade
manual-throttle/modules/write.js
JavaScript
mit
352
<?php class m140710_201905_migrate_files extends CDbMigration { public function up() { $this->getDbConnection()->createCommand(" UPDATE file SET path = REPLACE(path, 'images/', 'images/storage/'); ")->execute(); } public function down() { $this->getDbConnection()->createCommand(" UPDATE file SET path = REPLACE(path, 'storage/', ''); ")->execute(); } }
imboogieman/boogi
admin/protected/migrations/m140710_201905_migrate_files.php
PHP
mit
459
using System; using System.Collections.Generic; using System.Text; using Aspose.Words; namespace _01._01_AppendDocuments { class Program { static void Main(string[] args) { Document doc1 = new Document("../../data/doc1.doc"); Document doc2 = new Document("../../data/doc2.doc"); Document doc3 = doc1.Clone(); doc3.AppendDocument(doc2, ImportFormatMode.KeepSourceFormatting); doc3.Save("appendedDocument.doc"); } } }
dtscal/Aspose_Words_NET
Plugins/NPOI/Missing Features of NPOI HWPF and XWPF/Aspose.Words/01-WorkingWithDocument/01.01-AppendDocuments/Program.cs
C#
mit
536
/**************************************************************** Copyright (C) 2014 All rights reserved. > File Name: < main.c > > Author: < Shawn Guo > > Mail: < [email protected] > > Created Time: < 2014/06/07 > > Last Changed: > Description: ****************************************************************/ #include <stdio.h> #include "tiger.h" int main() { printf("sum = %d\n", add(5,3)); printf("sub = %d\n", sub(5,3)); return 0; }
SeanXP/README.md
linux_library/src/main.c
C
mit
553
#include "pascals_triangle.h" namespace pascals_triangle { } // namespace pascals_triangle
exercism/xcpp
exercises/practice/pascals-triangle/pascals_triangle.cpp
C++
mit
94
import { browser, element, by, ElementFinder } from 'protractor'; import { promise } from 'selenium-webdriver'; const expectedH1 = 'Tour of Heroes'; const expectedTitle = `${expectedH1}`; const expectedH2 = 'My Heroes'; const targetHero = { id: 16, name: 'RubberMan' }; const nameSuffix = 'X'; class Hero { id: number; name: string; // Factory methods // Get hero from s formatted as '<id> <name>'. static fromString(s: string): Hero { return { id: +s.substr(0, s.indexOf(' ')), name: s.substr(s.indexOf(' ') + 1), }; } // Get hero id and name from the given detail element. static async fromDetail(detail: ElementFinder): Promise<Hero> { // Get hero id from the first <div> const id = await detail.all(by.css('div')).first().getText(); // Get name from the h2 const name = await detail.element(by.css('h2')).getText(); return { id: +id.substr(id.indexOf(' ') + 1), name: name.substr(0, name.lastIndexOf(' ')) }; } } describe('Tutorial part 3', () => { beforeAll(() => browser.get('')); describe('Initial page', initialPageTests); describe('Select hero', selectHeroTests); describe('Update hero', updateHeroTests); }); function initialPageTests() { it(`has title '${expectedTitle}'`, () => { expect(browser.getTitle()).toEqual(expectedTitle); }); it(`has h1 '${expectedH1}'`, () => { expectHeading(1, expectedH1); }); it(`has h2 '${expectedH2}'`, () => { expectHeading(2, expectedH2); }); it('has the right number of heroes', () => { const page = getPageElts(); expect(page.heroes.count()).toEqual(10); }); it('has no selected hero and no hero details', () => { const page = getPageElts(); expect(page.selected.isPresent()).toBeFalsy('selected hero'); expect(page.heroDetail.isPresent()).toBeFalsy('no hero detail'); }); } function selectHeroTests() { it(`selects ${targetHero.name} from hero list`, () => { const hero = element(by.cssContainingText('li span.badge', targetHero.id.toString())); hero.click(); // Nothing specific to expect other than lack of exceptions. }); it(`has selected ${targetHero.name}`, () => { const page = getPageElts(); const expectedText = `${targetHero.id} ${targetHero.name}`; expect(page.selected.getText()).toBe(expectedText); }); it('shows selected hero details', async () => { const page = getPageElts(); const hero = await Hero.fromDetail(page.heroDetail); expect(hero.id).toEqual(targetHero.id); expect(hero.name).toEqual(targetHero.name.toUpperCase()); }); } function updateHeroTests() { it(`can update hero name`, () => { addToHeroName(nameSuffix); // Nothing specific to expect other than lack of exceptions. }); it(`shows updated hero name in details`, async () => { const page = getPageElts(); const hero = await Hero.fromDetail(page.heroDetail); const newName = targetHero.name + nameSuffix; expect(hero.id).toEqual(targetHero.id); expect(hero.name).toEqual(newName.toUpperCase()); }); it(`shows updated hero name in list`, async () => { const page = getPageElts(); const hero = Hero.fromString(await page.selected.getText()); const newName = targetHero.name + nameSuffix; expect(hero.id).toEqual(targetHero.id); expect(hero.name).toEqual(newName); }); } function addToHeroName(text: string): promise.Promise<void> { const input = element(by.css('input')); return input.sendKeys(text); } function expectHeading(hLevel: number, expectedText: string): void { const hTag = `h${hLevel}`; const hText = element(by.css(hTag)).getText(); expect(hText).toEqual(expectedText, hTag); } function getPageElts() { return { heroes: element.all(by.css('app-root li')), selected: element(by.css('app-root li.selected')), heroDetail: element(by.css('app-root > div, app-root > app-heroes > app-hero-detail > div')) }; }
wKoza/angular
aio/content/examples/toh-pt3/e2e/src/app.e2e-spec.ts
TypeScript
mit
4,023
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.sqlvirtualmachine.v2017_03_01_preview.implementation; import java.util.Arrays; import java.util.Iterator; class IdParsingUtils { public static String getValueFromIdByName(String id, String name) { if (id == null) { return null; } Iterable<String> iterable = Arrays.asList(id.split("/")); Iterator<String> itr = iterable.iterator(); while (itr.hasNext()) { String part = itr.next(); if (part != null && part.trim() != "") { if (part.equalsIgnoreCase(name)) { if (itr.hasNext()) { return itr.next(); } else { return null; } } } } return null; } public static String getValueFromIdByPosition(String id, int pos) { if (id == null) { return null; } Iterable<String> iterable = Arrays.asList(id.split("/")); Iterator <String> itr = iterable.iterator(); int index = 0; while (itr.hasNext()) { String part = itr.next(); if (part != null && part.trim() != "") { if (index == pos) { if (itr.hasNext()) { return itr.next(); } else { return null; } } } index++; } return null; } }
selvasingh/azure-sdk-for-java
sdk/sqlvirtualmachine/mgmt-v2017_03_01_preview/src/main/java/com/microsoft/azure/management/sqlvirtualmachine/v2017_03_01_preview/implementation/IdParsingUtils.java
Java
mit
1,766
#pragma once #include<glm.hpp> #include<fmod.hpp> #include <gtc/quaternion.hpp> #include <gtx/quaternion.hpp> #include <btBulletDynamicsCommon.h> #include <Kinect.h> #ifdef _WIN32 #include <OVR.h> #endif #include <algorithm> #include <functional> #include <cctype> #include <string> #include <Leap.h> using namespace FMOD; using namespace std; #define SAFE_DELETE(a) if( (a) != nullptr ) delete (a); (a) = nullptr; namespace BGE { struct Material { glm::vec3 diffuse; string textureName; }; struct RayGeom { glm::vec3 pos; glm::vec3 look; }; struct SphereGeom { glm::vec3 pos; float radius; }; FMOD_VECTOR GLToFMODVector(glm::vec3 v); #ifdef _WIN32 glm::quat OVRToGLQuat(OVR::Quatf q); ovrVector3f GLToOVRVector(glm::vec3 v); ovrMatrix4f GLToOVRMat4(glm::mat4 m); glm::mat4 OVRToGLMat4(OVR::Matrix4f m); glm::vec3 OVRToGLVector(OVR::Vector3f v); #endif glm::vec3 BtToGLVector(const btVector3 & v); glm::quat BtToGLQuat(const btQuaternion & q); btVector3 GLToBtVector(const glm::vec3 & v); btQuaternion GLToBtQuat(const glm::quat & q); glm::vec3 KinectToGLVector(CameraSpacePoint v); // Leap Stuff glm::vec3 LeapToGlVec3(Leap::Vector v); string ltrim(string s); string rtrim(string s); string trim(string s); void LogMessage(string message); bool CheckNaN(glm::vec3 & v); bool CheckNaN(glm::vec3 & v, const glm::vec3 & def); float Clip(float x, float min, float max); float Interpolate(float alpha, float x0, float x1); glm::vec3 Interpolate(float alpha, glm::vec3 x0, glm::vec3 x1); void BlendIntoAccumulator(float smoothRate, float newValue, float & smoothedAccumulator); void BlendIntoAccumulator(float smoothRate, glm::vec3 newValue, glm::vec3 & smoothedAccumulator); glm::quat RotationBetweenVectors(glm::vec3 start, glm::vec3 dest); float RandomClamped(float min = -1.0f, float max = 1.0f); glm::vec3 RandomInsideUnitSphere(); glm::vec3 RandomPosition(float range); bool ClosestRayIntersectsSphere(const RayGeom & ray, const SphereGeom & sphere, const glm::vec3 & point, glm::vec3 & intersection); glm::vec3 RotateVector(glm::vec3, glm::quat); void CheckOverflow(int & x); void SafeDelete(void ** p); }
shanno1/GameEng
BGE/Utils.h
C
mit
2,182
[![Stories in Ready](https://badge.waffle.io/OpenDataSTL/opendatastl.github.io.png?label=ready&title=ready)](https://waffle.io/OpenDataSTL/opendatastl.github.io "Waffle.io Stories in Ready") [![Stories In Progress](https://badge.waffle.io/OpenDataSTL/opendatastl.github.io.png?label=in%20progress&title=in%20progress)](https://waffle.io/OpenDataSTL/opendatastl.github.io "Waffle.io Stories in In Progress") [![Slack Status](https://arcane-ocean-6928.herokuapp.com/badge.svg)](https://opendatastl.slack.com "Users on Slack") [![Build Status](https://travis-ci.org/OpenDataSTL/opendatastl.github.io.svg?branch=master)](https://travis-ci.org/OpenDataSTL/opendatastl.github.io "Travis CI Build Status") # Jekyll Now **Jekyll** is a static site generator that's perfect for GitHub hosted blogs ([Jekyll Repository](https://github.com/jekyll/jekyll)) **Jekyll Now** makes it easier to create your Jekyll blog, by eliminating a lot of the up front setup. - You don't need to touch the command line - You don't need to install/configure ruby, rvm/rbenv, ruby gems :relaxed: - You don't need to install runtime dependancies like markdown processors, Pygments, etc - If you're on Windows, this will make setting up Jekyll a lot easier - It's easy to try out, you can just delete your forked repository if you don't like it In a few minutes you'll be set up with a minimal, responsive blog like the one below giving you more time to spend on writing epic blog posts! ![Jekyll Now Theme Screenshot](/images/jekyll-now-theme-screenshot.jpg "Jekyll Now Theme Screenshot") ## Quick Start ### Step 1) Fork Jekyll Now to your User Repository Fork this repo, then rename the repository to yourgithubusername.github.io. Your Jekyll blog will often be viewable immediately at <http://yourgithubusername.github.io> (if it's not, you can often force it to build by completing step 2) ![Step 1](/images/step1.gif "Step 1") ### Step 2) Customize and view your site Enter your site name, description, avatar and many other options by editing the _config.yml file. You can easily turn on Google Analytics tracking, Disqus commenting and social icons here too. Making a change to _config.yml (or any file in your repository) will force GitHub Pages to rebuild your site with jekyll. Your rebuilt site will be viewable a few seconds later at <http://yourgithubusername.github.io> - if not, give it ten minutes as GitHub suggests and it'll appear soon > There are 3 different ways that you can make changes to your blog's files: > 1. Edit files within your new username.github.io repository in the browser at GitHub.com (shown below). > 2. Use a third party GitHub content editor, like [Prose by Development Seed](http://prose.io). It's optimized for use with Jekyll making markdown editing, writing drafts, and uploading images really easy. > 3. Clone down your repository and make updates locally, then push them to your GitHub repository. ![_config.yml](/images/config.png "_config.yml") ### Step 3) Publish your first blog post Edit `/_posts/2014-3-3-Hello-World.md` to publish your first blog post. This [Markdown Cheatsheet](http://www.jekyllnow.com/Markdown-Style-Guide/) might come in handy. ![First Post](/images/first-post.png "First Post") > You can add additional posts in the browser on GitHub.com too! Just hit the + icon in `/_posts/` to create new content. Just make sure to include the [front-matter](http://jekyllrb.com/docs/frontmatter/) block at the top of each new blog post and make sure the post's filename is in this format: year-month-day-title.md ## Local Development 1. Install Jekyll and plug-ins in one fell swoop. `gem install github-pages` This mirrors the plug-ins used by GitHub Pages on your local machine including Jekyll, Sass, Gemoji, etc. 2. Clone down your fork `git clone [email protected]:yourusername/yourusername.github.io.git` 3. Serve the site and watch for markup/sass changes `jekyll serve` 4. View your website at http://0.0.0.0:4000 5. Commit any changes and push everything to the master branch of your GitHub user repository. GitHub Pages will then rebuild and serve your website. ## Moar! I've created a more detailed walkthrough, [**Build A Blog With Jekyll And GitHub Pages**](http://www.smashingmagazine.com/2014/08/01/build-blog-jekyll-github-pages/) over at the Smashing Magazine website. Check it out if you'd like a more detailed walkthrough and some background on Jekyll. :metal: It covers: - A more detailed walkthrough of setting up your Jekyll blog - Common issues that you might encounter while using Jekyll - Importing from Wordpress, using your own domain name, and blogging in your favorite editor - Theming in Jekyll, with Liquid templating examples - A quick look at Jekyll 2.0’s new features, including Sass/Coffeescript support and Collections ## Jekyll Now Features ✓ Command-line free _fork-first workflow_, using GitHub.com to create, customize and post to your blog ✓ Fully responsive and mobile optimized base theme (**[Theme Demo](http://jekyllnow.com)**) ✓ Sass/Coffeescript support using Jekyll 2.0 ✓ Free hosting on your GitHub Pages user site ✓ Markdown blogging ✓ Syntax highlighting ✓ Disqus commenting ✓ Google Analytics integration ✓ SVG social icons for your footer ✓ 3 http requests, including your avatar ✓ Emoji in blog posts! :sparkling_heart: :sparkling_heart: :sparkling_heart: ✘ No installing dependancies ✘ No need to set up local development ✘ No configuring plugins ✘ No need to spend time on theming ✘ More time to code other things ... wait ✓! ## Questions? [Open an Issue](https://github.com/barryclark/jekyll-now/issues/new) and let's chat! ## Get my new themes If you'd like me to let you know when I release a new theme, just [drop me your email for updates](http://eepurl.com/XUZpT). I'm currently working on a hacker portfolio site theme. ## Other forkable themes You can use the [Quick Start](https://github.com/barryclark/jekyll-now#quick-start) workflow with other themes that are set up to be forked too! Here are some of my favorites: - [Hyde](https://github.com/poole/hyde) by MDO - [Lanyon](https://github.com/poole/lanyon) by MDO - [mojombo.github.io](https://github.com/mojombo/mojombo.github.io) by Tom Preston-Werner - [Left](https://github.com/holman/left) by Zach Holman - [Minimal Mistakes](https://github.com/mmistakes/minimal-mistakes) by Michael Rose - [Skinny Bones](https://github.com/mmistakes/skinny-bones-jekyll) by Michael Rose ## Credits - [Jekyll](https://github.com/jekyll/jekyll) - Thanks to it's creators, contributors and maintainers. - [SVG icons](https://github.com/neilorangepeel/Free-Social-Icons) - Thanks, Neil Orange Peel. They're beautiful. - [Solarized Light Pygments](https://gist.github.com/edwardhotchkiss/2005058) - Thanks, Edward. - [Joel Glovier](http://joelglovier.com/writing/) - Great Jekyll articles. I used Joel's feed.xml in this repository. - [David Furnes](https://github.com/dfurnes), [Jon Uy](https://github.com/jonuy), [Luke Patton](https://github.com/lkpttn) - Thanks for the design/code reviews. - [Bart Kiers](https://github.com/bkiers), [Florian Simon](https://github.com/vermluh), [Hun Jae Lee](https://github.com/hunjaelee), [Javier Cejudo](https://github.com/javiercejudo), [Peter Etelej](https://github.com/etelej) - Thanks for your [fantastic contributions](https://github.com/barryclark/jekyll-now/commits/master) to the project!
OpenDataSTL/opendatastl.github.io
README.md
Markdown
mit
7,481
var Stream = require('stream').Stream; var req = new Stream; req.readable = req.writable = true; module.exports = {req: req};
Gum-Joe/boss.js
libs/stream.js
JavaScript
mit
126
<p>&nbsp;</p> <img src="https://developers.google.com/appengine/images/appengine-noborder-120x30.gif" alt="Powered by Google App Engine" />
jfitz/hours-reporter
templates/body_gae_logo.html
HTML
mit
141
using System.Diagnostics.Contracts; using JetBrains.Metadata.Reader.API; using JetBrains.ReSharper.Feature.Services.CSharp.Analyses.Bulbs; using JetBrains.ReSharper.Feature.Services.CSharp.Bulbs; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.CSharp; using JetBrains.ReSharper.Psi.Tree; using JetBrains.ReSharper.Psi.Util; using ReSharper.ContractExtensions.ContextActions.Infrastructure; using ReSharper.ContractExtensions.Utilities; namespace ReSharper.ContractExtensions.ContextActions.Requires { /// <summary> /// Checkes that Contract.Requires should be available based on parameter declaration. /// </summary> /// <remarks> /// Extracting this class out from the main <see cref="AddRequiresAvailability"/> explained by /// the need of this check out of the main requires availability check. /// For example, this stuff is needed by <see cref="ComboRequiresAvailability"/> class as well. /// </remarks> internal class ParameterRequiresAvailability : ContextActionAvailabilityBase<ParameterRequiresAvailability> { private readonly IParameterDeclaration _parameterDeclaration; public ParameterRequiresAvailability() {} private ParameterRequiresAvailability(ICSharpContextActionDataProvider provider, IParameterDeclaration parameterDeclaration) : base(provider) { Contract.Requires(parameterDeclaration != null); _parameterDeclaration = parameterDeclaration; _isAvailable = ComputeIsAvailable(); if (_isAvailable) { ParameterName = _parameterDeclaration.DeclaredName; ParameterType = _parameterDeclaration.Type.GetClrTypeName(); } } [ContractInvariantMethod] private void ObjectInvariant() { Contract.Invariant(!IsAvailable || _parameterDeclaration != null); Contract.Invariant(!IsAvailable || ParameterName != null); Contract.Invariant(!IsAvailable || ParameterType != null); } public static ParameterRequiresAvailability Create(ICSharpContextActionDataProvider provider, IParameterDeclaration selectedParameter = null) { Contract.Requires(provider != null); selectedParameter = selectedParameter ?? provider.GetSelectedParameterDeclaration(); if (selectedParameter == null) return Unavailable; return new ParameterRequiresAvailability(provider, selectedParameter); } public string ParameterName { get; private set; } public IClrTypeName ParameterType { get; private set; } private bool ComputeIsAvailable() { if (!IsParameterDeclarationWellDefined()) return false; if (IsParameterOutput()) return false; if (IsParameterDefaultedToNull()) return false; if (IsParameterValueType() && !IsParameterNullableValueType()) return false; return true; } [Pure] private bool IsParameterDeclarationWellDefined() { return _parameterDeclaration != null && _parameterDeclaration.DeclaredElement != null; } [Pure] private bool IsParameterOutput() { return _parameterDeclaration.DeclaredElement.Kind == ParameterKind.OUTPUT; } [Pure] private bool IsParameterDefaultedToNull() { return _parameterDeclaration.IsDefaultedToNull(); } [Pure] private bool IsParameterNullableValueType() { return _parameterDeclaration.Type.IsNullable(); } [Pure] private bool IsParameterValueType() { var declaredElement = _parameterDeclaration.DeclaredElement; return declaredElement.Type.IsValueType() && !declaredElement.Type.IsNullable(); } } }
Diagonactic/ReSharperContractExtensions
ContractExtensions/ContextActions/Requires/ParameterRequiresAvailability.cs
C#
mit
4,037
Code Book ========= The data comes from SmartLab and was collected from 30 individuals. Each person's activity was tracked via their Samsung Galaxy S II smart phone. Data Set Characteristics: ------------------------- Multivariate, Time-Series Number of Attributes: --------------------- 561 attributes (not all were used) Number of Instances: -------------------- 10299 variables ---------- [1] "tbodyaccmeanx" "tbodyaccmeany" "tbodyaccmeanz" "tgravityaccmeanx" "tgravityaccmeany" "tgravityaccmeanz"<br> [7] "tbodyaccjerkmeanx" "tbodyaccjerkmeany" "tbodyaccjerkmeanz" "tbodygyromeanx" "tbodygyromeany" "tbodygyromeanz"<br> [13] "tbodygyrojerkmeanx" "tbodygyrojerkmeany" "tbodygyrojerkmeanz" "tbodyaccmagmean" "tgravityaccmagmean" "tbodyaccjerkmagmean"<br> [19] "tbodygyromagmean" "tbodygyrojerkmagmean" "fbodyaccmeanx" "fbodyaccmeany" "fbodyaccmeanz" "fbodyaccmeanfreqx"<br> [25] "fbodyaccmeanfreqy" "fbodyaccmeanfreqz" "fbodyaccjerkmeanx" "fbodyaccjerkmeany" "fbodyaccjerkmeanz" "fbodyaccjerkmeanfreqx"<br> [31] "fbodyaccjerkmeanfreqy" "fbodyaccjerkmeanfreqz" "fbodygyromeanx" "fbodygyromeany" "fbodygyromeanz" "fbodygyromeanfreqx"<br> [37] "fbodygyromeanfreqy" "fbodygyromeanfreqz" "fbodyaccmagmean" "fbodyaccmagmeanfreq" "fbodybodyaccjerkmagmean" "fbodybodyaccjerkmagmeanfreq"<br> [43] "fbodybodygyromagmean" "fbodybodygyromagmeanfreq" "fbodybodygyrojerkmagmean" "fbodybodygyrojerkmagmeanfreq" "tbodyaccstdx" "tbodyaccstdy"<br> [49] "tbodyaccstdz" "tgravityaccstdx" "tgravityaccstdy" "tgravityaccstdz" "tbodyaccjerkstdx" "tbodyaccjerkstdy"<br> [55] "tbodyaccjerkstdz" "tbodygyrostdx" "tbodygyrostdy" "tbodygyrostdz" "tbodygyrojerkstdx" "tbodygyrojerkstdy"<br> [61] "tbodygyrojerkstdz" "tbodyaccmagstd" "tgravityaccmagstd" "tbodyaccjerkmagstd" "tbodygyromagstd" "tbodygyrojerkmagstd"<br> [67] "fbodyaccstdx" "fbodyaccstdy" "fbodyaccstdz" "fbodyaccjerkstdx" "fbodyaccjerkstdy" "fbodyaccjerkstdz"<br> [73] "fbodygyrostdx" "fbodygyrostdy" "fbodygyrostdz" "fbodyaccmagstd" "fbodybodyaccjerkmagstd" "fbodybodygyromagstd"<br> [79] "fbodybodygyrojerkmagstd" "activity" "trainortest" "subjectid"<br>
mabdrabo/datasciencecoursera
GetCleanData/Project/CodeBook.md
Markdown
mit
2,102
#### Message (from Box) A box containing a message to be displayed (automatically hidden). ##### Options: - Inherits all from Box. ##### Properties: - Inherits all from Box. ##### Events: - Inherits all from Box. ##### Methods: - Inherits all from Box. - __log/display(text, [time], callback)__ - Display a message for a time (default is 3 seconds). Set time to 0 for a perpetual message that is dismissed on keypress. - __error(text, [time], callback)__ - Display an error in the same way.
piranna/blessed
docs/widgets/prompts/message.md
Markdown
mit
507
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>--> </head> <body> <div data-role="page"> <div data-role="header"> <h1>Slider Control</h1> </div> <div data-role="main" class="ui-content"> <form method="post" action="demoform.asp"> <label for="points">Points:</label> <input type="range" name="points" id="points" value="50" min="0" max="100"> <input type="submit" data-inline="true" value="Submit"> </form> </div> </div> </body> </html>
wjladams/youth-isahp
javascript/crap.html
HTML
mit
782
/* * Copyright 2016-2017 Hewlett Packard Enterprise Development Company, L.P. * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. */ define([ 'js-whatever/js/list-item-view', 'underscore', 'text!find/templates/app/util/csv-field-selection-list-item.html', 'i18n!find/nls/bundle', 'iCheck' ], function(ListItemView, _, template, i18n) { 'use strict'; return ListItemView.extend({ template: _.template(template), initialize: function(options) { ListItemView.prototype.initialize.call(this, _.defaults({ template: this.template, templateOptions: { fieldDataId: options.model.id, fieldPrintedLabel: i18n['search.document.' + options.model.id] || options.model.get('displayName') } }, options)); }, render: function() { ListItemView.prototype.render.apply(this); this.$el.iCheck({checkboxClass: 'icheckbox-hp'}); this.updateSelected(); }, updateSelected: function() { this.$el.iCheck(this.model.get('selected') ? 'check' : 'uncheck'); } }); });
hpe-idol/find
webapp/core/src/main/public/static/js/find/app/util/csv-field-selection-list-item.js
JavaScript
mit
1,260
#### NOTICE: THIS FILE IS AUTOGENERATED #### MODIFICATIONS MAY BE LOST IF DONE IMPROPERLY #### PLEASE SEE THE ONLINE DOCUMENTATION FOR EXAMPLES from swgpy.object import * def create(kernel): result = Creature() result.template = "object/mobile/shared_dressed_rebel_lance_corporal_human_male_01.iff" result.attribute_template_id = 9 result.stfName("npc_name","human_base_male") #### BEGIN MODIFICATIONS #### #### END MODIFICATIONS #### return result
obi-two/Rebelion
data/scripts/templates/object/mobile/shared_dressed_rebel_lance_corporal_human_male_01.py
Python
mit
467
-- phpMyAdmin SQL Dump -- version 4.2.10 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 25, 2015 at 07:44 PM -- Server version: 5.5.40 -- PHP Version: 5.4.24 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `si_hmif` -- -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE IF NOT EXISTS `category` ( `id` int(11) NOT NULL, `name` varchar(50) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `category` -- INSERT INTO `category` (`id`, `name`) VALUES (1, 'Internal'), (2, 'Eksternal'); -- -------------------------------------------------------- -- -- Table structure for table `post` -- CREATE TABLE IF NOT EXISTS `post` ( `id` int(11) NOT NULL, `title` varchar(50) NOT NULL, `content` varchar(5000) NOT NULL, `excerpt` varchar(200) NOT NULL, `attachment` varchar(255) NOT NULL, `featured_image` varchar(255) NOT NULL, `category` int(11) NOT NULL, `date` date NOT NULL, `start_time` time NOT NULL, `end_time` time NOT NULL, `location` varchar(255) NOT NULL, `contact_name` varchar(50) NOT NULL, `contact` varchar(50) NOT NULL, `created_at` datetime NOT NULL, `modified_at` datetime NOT NULL, `published` tinyint(1) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Dumping data for table `post` -- INSERT INTO `post` (`id`, `title`, `content`, `excerpt`, `attachment`, `featured_image`, `category`, `date`, `start_time`, `end_time`, `location`, `contact_name`, `contact`, `created_at`, `modified_at`, `published`) VALUES (1, 'Test 1', '<p>test</p>', 'test', '/source/capture23.png', '/source/capture23.png', 1, '2015-05-04', '00:00:00', '02:30:00', 'Labtek 5', 'Luthfi', 'Luthfi', '2015-05-23 00:00:00', '2015-05-25 00:00:00', 1); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `username` varchar(50) NOT NULL, `password` varchar(32) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `user` -- INSERT INTO `user` (`username`, `password`) VALUES ('admin', '21232f297a57a5a743894a0e4a801fc3'); -- -- Indexes for dumped tables -- -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Indexes for table `post` -- ALTER TABLE `post` ADD PRIMARY KEY (`id`), ADD KEY `category` (`category`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`username`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `post` -- ALTER TABLE `post` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- Constraints for dumped tables -- -- -- Constraints for table `post` -- ALTER TABLE `post` ADD CONSTRAINT `post_ibfk_1` FOREIGN KEY (`category`) REFERENCES `category` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
luthfihm/si-hmif
source/si_hmif.sql
SQL
mit
3,511
// This file is a part of Julia. License is MIT: http://julialang.org/license #ifndef HTABLE_H #define HTABLE_H #define HT_N_INLINE 32 #ifdef __cplusplus extern "C" { #endif typedef struct { size_t size; void **table; void *_space[HT_N_INLINE]; } htable_t; // define this to be an invalid key/value #define HT_NOTFOUND ((void*)1) // initialize and free htable_t *htable_new(htable_t *h, size_t size); void htable_free(htable_t *h); // clear and (possibly) change size void htable_reset(htable_t *h, size_t sz); #define HTPROT(HTNAME) \ void *HTNAME##_get(htable_t *h, void *key); \ void HTNAME##_put(htable_t *h, void *key, void *val); \ void HTNAME##_adjoin(htable_t *h, void *key, void *val); \ int HTNAME##_has(htable_t *h, void *key); \ int HTNAME##_remove(htable_t *h, void *key); \ void **HTNAME##_bp(htable_t *h, void *key); #ifdef __cplusplus } #endif #endif
zhmz90/Julia_internal
src/support/htable.h
C
mit
1,008
#include <Spirit/Collection.h> #include <data/State.hpp> int Collection_Get_NOC(State * state) { return state->noc; } void Collection_next_Chain(State * state) { } void Collection_prev_Chain(State * state) { }
Disselkamp/spirit
core/src/Spirit/Collection.cpp
C++
mit
218
use std::slice; use super::{StreamEncrypt, StreamDecrypt}; use byteorder::{ByteOrder, LittleEndian}; const ROUNDS: usize = 20; const STATE_WORDS: usize = 16; const STATE_BYTES: usize = STATE_WORDS * 4; #[derive(Copy, Clone)] struct State([u32; STATE_WORDS]); macro_rules! quarter_round { ($a:expr, $b:expr, $c:expr, $d:expr) => {{ $a = $a.wrapping_add($b); $d ^= $a; $d = $d.rotate_left(16); $c = $c.wrapping_add($d); $b ^= $c; $b = $b.rotate_left(12); $a = $a.wrapping_add($b); $d ^= $a; $d = $d.rotate_left( 8); $c = $c.wrapping_add($d); $b ^= $c; $b = $b.rotate_left( 7); }} } macro_rules! double_round { ($x:expr) => {{ // Column round quarter_round!($x[ 0], $x[ 4], $x[ 8], $x[12]); quarter_round!($x[ 1], $x[ 5], $x[ 9], $x[13]); quarter_round!($x[ 2], $x[ 6], $x[10], $x[14]); quarter_round!($x[ 3], $x[ 7], $x[11], $x[15]); // Diagonal round quarter_round!($x[ 0], $x[ 5], $x[10], $x[15]); quarter_round!($x[ 1], $x[ 6], $x[11], $x[12]); quarter_round!($x[ 2], $x[ 7], $x[ 8], $x[13]); quarter_round!($x[ 3], $x[ 4], $x[ 9], $x[14]); }} } impl State { fn expand(key: &[u8], nonce: &[u8], position: u32) -> Self { let mut state = [0u32; STATE_WORDS]; state[0] = 0x61707865; state[1] = 0x3320646e; state[2] = 0x79622d32; state[3] = 0x6b206574; for (state, chunk) in state[4..12].iter_mut().zip(key.chunks(4)) { *state = LittleEndian::read_u32(chunk); } state[12] = position; for (state, chunk) in state[13..16].iter_mut().zip(nonce.chunks(4)) { *state = LittleEndian::read_u32(chunk); } State(state) } fn update(&mut self, output: &mut [u32]) { let mut state = self.0; for _ in 0..ROUNDS / 2 { double_round!(state); } for i in 0..STATE_WORDS { output[i] = self.0[i].wrapping_add(state[i]); } self.0[12] += 1; } } pub struct ChaCha20 { state: State, buffer: [u32; STATE_WORDS], index: usize, } impl ChaCha20 { pub fn init(key: &[u8], nonce: &[u8], position: u32) -> Self { ChaCha20 { state: State::expand(key.as_ref(), nonce.as_ref(), position), buffer: [0; STATE_WORDS], index: STATE_BYTES, } } pub fn new<Key, Nonce>(key: Key, nonce: Nonce) -> Self where Key: AsRef<[u8]>, Nonce: AsRef<[u8]> { Self::init(key.as_ref(), nonce.as_ref(), 1) } fn update(&mut self) { self.state.update(&mut self.buffer[..]); self.index = 0; } fn crypt(&mut self, input: &[u8], output: &mut [u8]) { if self.index == STATE_BYTES { self.update() } let buffer = unsafe { slice::from_raw_parts(self.buffer.as_ptr() as *const u8, STATE_BYTES) }; for i in self.index..input.len() { output[i] = input[i] ^ buffer[i]; } self.index = input.len(); } } impl StreamEncrypt for ChaCha20 { fn encrypt_stream<I, O>(&mut self, input: I, mut output: O) where I: AsRef<[u8]>, O: AsMut<[u8]> { assert_eq!(input.as_ref().len(), output.as_mut().len()); let input = input.as_ref(); let output = output.as_mut(); let from = STATE_BYTES - self.index; if from > 0 { self.crypt(&input[..from], &mut output[..from]); } for (i, o) in input[from..] .chunks(STATE_BYTES) .zip(output[from..].chunks_mut(STATE_BYTES)) { self.crypt(i, o) } } } impl StreamDecrypt for ChaCha20 { fn decrypt_stream<I, O>(&mut self, input: I, mut output: O) where I: AsRef<[u8]>, O: AsMut<[u8]> { assert_eq!(input.as_ref().len(), output.as_mut().len()); let input = input.as_ref().chunks(STATE_BYTES); let output = output.as_mut().chunks_mut(STATE_BYTES); for (i, o) in input.zip(output) { self.crypt(i, o) } } }
hauleth/octavo
crypto/src/stream/chacha20.rs
Rust
mit
4,202
namespace Sitecore.FakeDb.Tests { using System.Collections; using System.Collections.ObjectModel; using FluentAssertions; using Ploeh.AutoFixture.Xunit2; using Xunit; public class DbItemChildCollectionTest { [Theory, AutoData] public void ShouldAdd(DbItem item, DbItemChildCollection sut) { sut.Add(item); sut.Count.Should().Be(1); } [Theory, AutoData] public void ShouldClear(DbItemChildCollection sut) { sut.Clear(); sut.Count.Should().Be(0); } [Theory, AutoData] public void ShouldCheckIfDoesNotContain(DbItem item, DbItemChildCollection sut) { sut.Contains(item).Should().BeFalse(); } [Theory, AutoData] public void ShouldCheckIfContains([Frozen]DbItem item, [Greedy]DbItemChildCollection sut) { sut.Contains(item).Should().BeTrue(); } [Theory, AutoData] public void ShouldCopyTo([Frozen]DbItem item, [Greedy]DbItemChildCollection sut) { var array = new DbItem[3]; sut.CopyTo(array, 0); array.Should().Contain(item); } [Theory, AutoData] public void ShouldRemove([Frozen] DbItem item, [Greedy]DbItemChildCollection sut) { sut.Remove(item); sut.Count.Should().Be(2); } [Theory, AutoData] public void ShouldCheckIfReadonly(DbItem parent, ReadOnlyCollection<DbItem> items) { var sut = new DbItemChildCollection(parent, items); sut.IsReadOnly.Should().BeTrue(); } [Theory, AutoData] public void ShouldCheckIfNotReadonly(DbItemChildCollection sut) { sut.IsReadOnly.Should().BeFalse(); } [Theory, AutoData] public void ShouldGetEnumerator(DbItemChildCollection sut) { ((IEnumerable)sut).GetEnumerator().Should().NotBeNull(); } } }
pveller/Sitecore.FakeDb
test/Sitecore.FakeDb.Tests/DbItemChildCollectionTest.cs
C#
mit
1,792
package com.conlect.oatos.utils; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.File; import java.io.FileFilter; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.PrintWriter; import java.io.StringWriter; import java.net.URL; import java.util.ArrayList; import java.util.List; /** * File utilities. */ public class FileUtils { // ---------------------------------------------------------------- misc // shortcuts // private static Map<String, FileTypeBean> fileTypeMap; public static class FileTypeBean { public String desc, icon; FileTypeBean(final String desc, final String icon) { this.desc = desc; this.icon = icon; } } // ---------------------------------------------------------------- option // default global FileOption public static FileOption defaultOption = new FileOption(); /** * {@link FileUtils File utilities} parameters. */ public static class FileOption implements Cloneable { public boolean preserveDate = true; // should destination file have the // same timestamp as source public boolean overwrite = true; // overwrite existing destination public boolean createDirs = true; // create missing subdirectories of // destination public boolean recursive = true; // use recursive directory copying and // deleting public boolean continueOnError = true; // don't stop on error and // continue job as much as // possible public String encoding = "UTF-8"; // default Encoding for // reading/writing strings @Override public FileOption clone() throws CloneNotSupportedException { return (FileOption) super.clone(); } } /** * CreatingUtils new {@link FileOption} creating by cloning current default * option. */ public static FileOption cloneFileOption() { try { return defaultOption.clone(); } catch (CloneNotSupportedException cnsex) { return null; } } /** * CreatingUtils new {@link FileOption} creating with default values. */ public static FileOption params() { return new FileOption(); } public static String[] imageFormats = new String[] { "jpg", "jepg", "gif", "png", "bmp" }; public static String[] textFormats = new String[] { "txt", "logging" }; public static String[] htmlFormats = new String[] { "htm", "html" }; public static String[] mplayerFormats = new String[] { "avi", "wmv", "asf" }; public static String[] flashFormats = new String[] { "swf" }; public static String[] mswordFormats = new String[] { "doc" }; /** * Checks if two files points to the same file. */ public static boolean equals(String file1, String file2) { return equals(new File(file1), new File(file2)); } /** * Checks if two files points to the same file. */ public static boolean equals(File file1, File file2) { try { file1 = file1.getCanonicalFile(); file2 = file2.getCanonicalFile(); } catch (IOException ioex) { return false; } return file1.equals(file2); } /** * Converts file URLs to file. Ignores other schemes and returns * <code>null</code>. */ public static File toFile(URL url) { return new File(toFileName(url)); } /** * Converts file URLs to file getName. Ignores other schemes and returns * <code>null</code>. */ public static String toFileName(URL url) { if ((url == null) || (url.getProtocol().equals("file") == false)) { return null; } String filename = url.getFile().replace('/', File.separatorChar); int pos = 0; while ((pos = filename.indexOf('%', pos)) >= 0) { if (pos + 2 < filename.length()) { String hexStr = filename.substring(pos + 1, pos + 3); char ch = (char) Integer.parseInt(hexStr, 16); filename = filename.substring(0, pos) + ch + filename.substring(pos + 3); } } return filename; } /** * Converts array of URLS to file names string. Other schemes are ignored. */ public static String toFileNames(URL[] urls) { StringBuilder path = new StringBuilder(); for (URL url : urls) { String fileName = toFileName(url); if (fileName == null) { continue; } path.append(fileName).append(File.pathSeparatorChar); } return path.toString(); } // ---------------------------------------------------------------- mkdirs /** * CreatingUtils all folders at once. */ public static void mkdirs(String dirs) throws IOException { mkdirs(new File(dirs)); } /** * CreatingUtils all folders at once. */ public static void mkdirs(File dirs) throws IOException { if (dirs.exists()) { if (dirs.isDirectory() == false) { throw new IOException("Directory '" + "' is not a directory."); } return; } if (dirs.mkdirs() == false) { throw new IOException("Unable to create directory '" + dirs + "'."); } } /** * CreatingUtils single folder. */ public static void mkdir(String dir) throws IOException { mkdir(new File(dir)); } /** * CreatingUtils single folders. */ public static void mkdir(File dir) throws IOException { if (dir.exists()) { if (dir.isDirectory() == false) { throw new IOException("Destination '" + "' is not a directory."); } return; } if (dir.mkdir() == false) { throw new IOException("Unable to create directory '" + dir + "'."); } } // ---------------------------------------------------------------- touch public static void touch(String file) throws IOException { touch(new File(file)); } /** * Implements the Unix "touch" utility. It creates a new file with size 0 * or, if the file exists already, it is opened and closed without modifying * it, but updating the file date and time. */ public static void touch(File file) throws IOException { if (file.exists() == false) { IOUtils.close(new FileOutputStream(file)); } file.setLastModified(System.currentTimeMillis()); } // ---------------------------------------------------------------- copy // file to file public static void copyFile(String src, String dest) throws IOException { copyFile(new File(src), new File(dest), defaultOption); } public static void copyFile(String src, String dest, FileOption option) throws IOException { copyFile(new File(src), new File(dest), option); } public static void copyFile(File src, File dest) throws IOException { copyFile(src, dest, defaultOption); } /** * Copies a file to another file with specified copy option. */ public static void copyFile(File src, File dest, FileOption option) throws IOException { checkFileCopy(src, dest, option); doCopyFile(src, dest, option); } private static void checkFileCopy(File src, File dest, FileOption option) throws IOException { if (src.exists() == false) { throw new FileNotFoundException("Source '" + src + "' does not exist."); } if (src.isFile() == false) { throw new IOException("Source '" + src + "' is not a file."); } if (equals(src, dest) == true) { throw new IOException("Source '" + src + "' and destination '" + dest + "' are the same."); } File destParent = dest.getParentFile(); if (destParent != null && destParent.exists() == false) { if (option.createDirs == false) { throw new IOException("Destination directory '" + destParent + "' doesn't exist."); } if (destParent.mkdirs() == false) { throw new IOException("Destination directory '" + destParent + "' cannot be created."); } } } /** * Internal file copy when most of the pre-checking has passed. */ private static void doCopyFile(File src, File dest, FileOption option) throws IOException { if (dest.exists()) { if (dest.isDirectory()) { throw new IOException("Destination '" + dest + "' is a directory."); } if (option.overwrite == false) { throw new IOException("Destination '" + dest + "' already exists."); } } doCopy(src, dest); if (src.length() != dest.length()) { throw new IOException("Copying of '" + src + "' to '" + dest + "' failed due to different sizes."); } if (option.preserveDate) { dest.setLastModified(src.lastModified()); } } // ---------------------------------------------------------------- simple // copy file /** * Copies one file to another without any checking. * * @see #doCopy(java.io.File, java.io.File) */ protected static void doCopy(String src, String dest) throws IOException { doCopy(new File(src), new File(dest)); } /** * Copies one file to another without any checking. It is assumed that both * parameters represents valid files. */ protected static void doCopy(File src, File dest) throws IOException { FileInputStream input = new FileInputStream(src); try { FileOutputStream output = new FileOutputStream(dest); try { IOUtils.copy(input, output); } finally { IOUtils.close(output); } } finally { IOUtils.close(input); } } // ---------------------------------------------------------------- copy // file to directory // public static void copyFile(final File from, final File to) throws // IOException { // final InputStream inputStream = new BufferedInputStream(new // FileInputStream(from)); // copyFile(inputStream, to); // } public static void copyFile(final InputStream inputStream, final File to) throws IOException { createFile(to); OutputStream outputStream = null; try { outputStream = new BufferedOutputStream(new FileOutputStream(to)); IOUtils.copyStream(inputStream, outputStream); } finally { if (inputStream != null) { inputStream.close(); } if (outputStream != null) { outputStream.close(); } } } public static void copyFileToDir(String fileName, String destDir) throws IOException { copyFileToDir(new File(fileName), new File(destDir), defaultOption); } public static void copyFileToDir(String fileName, String destDir, FileOption option) throws IOException { copyFileToDir(new File(fileName), new File(destDir), option); } public static void copyFileToDir(File src, File destDir) throws IOException { copyFileToDir(src, destDir, defaultOption); } /** * Copies a file to folder with specified copy option. */ public static void copyFileToDir(File src, File destDir, FileOption option) throws IOException { if (destDir.exists() && destDir.isDirectory() == false) { throw new IOException("Destination '" + destDir + "' is not a directory."); } copyFile(src, new File(destDir, src.getName()), option); } // ---------------------------------------------------------------- copy dir public static void copyDir(String srcDir, String destDir) throws IOException { copyDir(new File(srcDir), new File(destDir), defaultOption); } public static void copyDir(String srcDir, String destDir, FileOption option) throws IOException { copyDir(new File(srcDir), new File(destDir), option); } public static void copyDir(File srcDir, File destDir) throws IOException { copyDir(srcDir, destDir, defaultOption); } /** * Copies directory with specified copy option. */ public static void copyDir(File srcDir, File destDir, FileOption option) throws IOException { checkDirCopy(srcDir, destDir); doCopyDirectory(srcDir, destDir, option); } private static void checkDirCopy(File srcDir, File destDir) throws IOException { if (!srcDir.exists()) { throw new FileNotFoundException("Source '" + srcDir + "' does not exist."); } if (!srcDir.isDirectory()) { throw new IOException("Source '" + srcDir + "' is not a directory."); } if (equals(srcDir, destDir)) { throw new IOException("Source '" + srcDir + "' and destination '" + destDir + "' are the same."); } } private static void doCopyDirectory(File srcDir, File destDir, FileOption option) throws IOException { if (destDir.exists()) { if (!destDir.isDirectory()) { throw new IOException("Destination '" + destDir + "' is not a directory."); } } else { if (!option.createDirs) { throw new IOException("Destination '" + destDir + "' doesn't exists."); } if (!destDir.mkdirs()) { throw new IOException("Destination '" + destDir + "' directory cannot be created."); } if (option.preserveDate) { destDir.setLastModified(srcDir.lastModified()); } } File[] files = srcDir.listFiles(); if (files == null) { throw new IOException("Failed to list contents of '" + srcDir + '\''); } IOException exception = null; for (File file : files) { File destFile = new File(destDir, file.getName()); try { if (file.isDirectory()) { if (option.recursive) { doCopyDirectory(file, destFile, option); } } else { doCopyFile(file, destFile, option); } } catch (IOException ioex) { if (option.continueOnError) { exception = ioex; continue; } throw ioex; } } if (exception != null) { throw exception; } } // ---------------------------------------------------------------- move // file public static void moveFile(String src, String dest) throws IOException { moveFile(new File(src), new File(dest), defaultOption); } public static void moveFile(String src, String dest, FileOption option) throws IOException { moveFile(new File(src), new File(dest), option); } public static void moveFile(File src, File dest) throws IOException { moveFile(src, dest, defaultOption); } public static void moveFile(File src, File dest, FileOption option) throws IOException { checkFileCopy(src, dest, option); doMoveFile(src, dest, option); } private static void doMoveFile(File src, File dest, FileOption option) throws IOException { if (dest.exists()) { if (!dest.isFile()) { throw new IOException("Destination '" + dest + "' is not a file."); } if (!option.overwrite) { throw new IOException("Destination '" + dest + "' already exists."); } dest.delete(); } if (!src.renameTo(dest)) { throw new IOException("Moving of '" + src + "' to '" + dest + "' failed."); } } // ---------------------------------------------------------------- move // file to dir public static void moveFileToDir(String src, String destDir) throws IOException { moveFileToDir(new File(src), new File(destDir), defaultOption); } public static void moveFileToDir(String src, String destDir, FileOption option) throws IOException { moveFileToDir(new File(src), new File(destDir), option); } public static void moveFileToDir(File src, File destDir) throws IOException { moveFileToDir(src, destDir, defaultOption); } public static void moveFileToDir(File src, File destDir, FileOption option) throws IOException { if (destDir.exists() && destDir.isDirectory() == false) { throw new IOException("Destination '" + destDir + "' is not a directory."); } moveFile(src, new File(destDir, src.getName()), option); } // ---------------------------------------------------------------- move dir public static void moveDir(String srcDir, String destDir) throws IOException { moveDir(new File(srcDir), new File(destDir)); } public static void moveDir(File srcDir, File destDir) throws IOException { checkDirCopy(srcDir, destDir); doMoveDirectory(srcDir, destDir); } private static void doMoveDirectory(File src, File dest) throws IOException { if (dest.exists()) { if (!dest.isDirectory()) { throw new IOException("Destination '" + dest + "' is not a directory."); } dest = new File(dest, dest.getName()); dest.mkdir(); } if (!src.renameTo(dest)) { throw new IOException("Moving of '" + src + "' to '" + dest + "' failed."); } } // ---------------------------------------------------------------- delete // file public static void deleteFile(String dest) throws IOException { deleteFile(new File(dest)); } public static void deleteFile(File dest) throws IOException { if (!dest.exists()) { throw new FileNotFoundException("Destination '" + dest + "' doesn't exist"); } if (!dest.isFile()) { throw new IOException("Destination '" + dest + "' is not a file."); } if (!dest.delete()) { throw new IOException("Unable to delete '" + dest + "'."); } } // ---------------------------------------------------------------- delete // dir public static void deleteDir(String dest) throws IOException { deleteDir(new File(dest), defaultOption); } public static void deleteDir(String dest, FileOption option) throws IOException { deleteDir(new File(dest), option); } public static void deleteDir(File dest) throws IOException { deleteDir(dest, defaultOption); } /** * Deletes a directory. */ public static void deleteDir(File dest, FileOption option) throws IOException { cleanDir(dest, option); if (!dest.delete()) { throw new IOException("Unable to delete '" + dest + "'."); } } public static void cleanDir(String dest) throws IOException { cleanDir(new File(dest), defaultOption); } public static void cleanDir(String dest, FileOption option) throws IOException { cleanDir(new File(dest), option); } public static void cleanDir(File dest) throws IOException { cleanDir(dest, defaultOption); } /** * Cleans a directory without deleting it. */ public static void cleanDir(File dest, FileOption option) throws IOException { if (!dest.exists()) { throw new FileNotFoundException("Destination '" + dest + "' doesn't exists."); } if (!dest.isDirectory()) { throw new IOException("Destination '" + dest + "' is not a directory."); } File[] files = dest.listFiles(); if (files == null) { throw new IOException("Failed to list contents of '" + dest + "'."); } IOException exception = null; for (File file : files) { try { if (file.isDirectory()) { if (option.recursive) { deleteDir(file, option); } } else { file.delete(); } } catch (IOException ioex) { if (option.continueOnError) { exception = ioex; continue; } throw ioex; } } if (exception != null) { throw exception; } } // ---------------------------------------------------------------- // read/write string public static String readFileString(String source) throws IOException { return readFileString(new File(source), defaultOption.encoding); } public static String readFileString(String source, String encoding) throws IOException { return readFileString(new File(source), encoding); } public static String readFileString(File source) throws IOException { return readFileString(source, defaultOption.encoding); } /** * Reads file content as string. */ public static String readFileString(File source, String encoding) throws IOException { if (!source.exists()) { throw new FileNotFoundException("Source '" + source + "' doesn't exist."); } if (!source.isFile()) { throw new IOException("Source '" + source + "' is not a file."); } long len = source.length(); if (len >= Integer.MAX_VALUE) { len = Integer.MAX_VALUE; } FileInputStream in = null; try { in = new FileInputStream(source); StringWriter sw = new StringWriter((int) len); IOUtils.copy(in, sw, encoding); return sw.toString(); } finally { IOUtils.close(in); } } public static void writeFile(File file, String data, String encoding, boolean append) throws IOException { if (file.exists()) { if (!file.isFile()) { throw new IOException("Destination '" + file + "' exist, but it is not a file."); } } FileOutputStream out = null; try { out = new FileOutputStream(file, append); out.write(data.getBytes(encoding)); } finally { IOUtils.close(out); } } public static void writeFile(File dest, byte[] data, int off, int len, boolean append) throws IOException { if (dest.exists() == true) { if (dest.isFile() == false) { throw new IOException("Destination '" + dest + "' exist but it is not a file."); } } FileOutputStream out = null; try { out = new FileOutputStream(dest, append); out.write(data, off, len); } finally { IOUtils.close(out); } } public static void writeToFile(String fileName, String data) throws IOException { writeFile(new File(fileName), data, defaultOption.encoding, false); } public static void writeToFile(String fileName, String data, String encoding) throws IOException { writeFile(new File(fileName), data, encoding, false); } public static void writeToFile(File dest, String data) throws IOException { writeFile(dest, data, defaultOption.encoding, false); } public static void writeToFile(File dest, String data, String encoding) throws IOException { writeFile(dest, data, encoding, false); } public static void appendToFile(String dest, String data) throws IOException { writeFile(new File(dest), data, defaultOption.encoding, true); } public static void appendToFile(String dest, String data, String encoding) throws IOException { writeFile(new File(dest), data, encoding, true); } public static void appendToFile(File dest, String data) throws IOException { writeFile(dest, data, defaultOption.encoding, true); } public static void appendToFile(File dest, String data, String encoding) throws IOException { writeFile(dest, data, encoding, true); } // ---------------------------------------------------------------- // read/write string lines public static String[] readLines(String fileName) throws IOException { return readLines(new File(fileName), defaultOption.encoding); } public static String[] readLines(String fileName, String encoding) throws IOException { return readLines(new File(fileName), encoding); } public static String[] readLines(File fileName) throws IOException { return readLines(fileName, defaultOption.encoding); } /** * Reads lines from source files. */ public static String[] readLines(File source, String encoding) throws IOException { if (source.exists() == false) { throw new FileNotFoundException("Source '" + source + "' doesn't exist."); } if (source.isFile() == false) { throw new IOException("Source '" + source + "' is not a file."); } FileInputStream in = null; in = new FileInputStream(source); return readLines(in, encoding); } public static void writeLine(String file, String line) throws Exception { PrintWriter pw = new PrintWriter(file); try { } catch (Exception e) { } pw.println(line); } public static String[] readLines(InputStream in, String encoding) throws IOException { List<String> list = new ArrayList<String>(); try { BufferedReader br = new BufferedReader(new InputStreamReader(in, encoding)); String strLine; while ((strLine = br.readLine()) != null) { list.add(strLine); } } finally { IOUtils.close(in); } return list.toArray(new String[list.size()]); } // ---------------------------------------------------------------- // read/write bytearray public static byte[] readBytes(String file) throws IOException { return readBytes(new File(file)); } public static byte[] readBytes(File source) throws IOException { if (source.exists() == false) { throw new FileNotFoundException("Source '" + source + "' doesn't exist."); } if (source.isFile() == false) { throw new IOException("Source '" + source + "' exists, but it is not a file."); } long len = source.length(); if (len >= Integer.MAX_VALUE) { throw new IOException("Source size is greater then max array size."); } FileInputStream in = null; try { in = new FileInputStream(source); return IOUtils.readBytes(in); } finally { IOUtils.close(in); } } public static void writeToFile(String fileName, byte[] data) throws IOException { writeFile(new File(fileName), data, 0, data.length, false); } public static void writeToFile(String fileName, byte[] data, int off, int len) throws IOException { writeFile(new File(fileName), data, off, len, false); } public static void writeToFile(File destFile, byte[] data) throws IOException { writeFile(destFile, data, 0, data.length, false); } public static void writeToFile(File destFile, byte[] data, int off, int len) throws IOException { writeFile(destFile, data, off, len, false); } public static void appendToFile(String dest, byte[] data) throws IOException { writeFile(new File(dest), data, 0, data.length, true); } public static void appendToFile(String dest, byte[] data, int off, int len) throws IOException { writeFile(new File(dest), data, off, len, true); } public static void appendToFile(File dest, byte[] data) throws IOException { writeFile(dest, data, 0, data.length, true); } public static void appendToFile(File dest, byte[] data, int off, int len) throws IOException { writeFile(dest, data, off, len, true); } // ---------------------------------------------------------------- equals // content public static boolean compare(String file1, String file2) throws IOException { return compare(new File(file1), new File(file2)); } /** * Compare the contents of two files to determine if they are equal or not. * <p> * This method checks to see if the two files are different lengths or if * they point to the same file, before resorting to byte-by-byte comparison * of the contents. * <p> * Code origin: Avalon */ public static boolean compare(File file1, File file2) throws IOException { boolean file1Exists = file1.exists(); if (file1Exists != file2.exists()) { return false; } if (file1Exists == false) { return true; } if ((file1.isFile() == false) || (file2.isFile() == false)) { throw new IOException("Only files can be compared."); } if (file1.length() != file2.length()) { return false; } if (equals(file1, file1)) { return true; } InputStream input1 = null; InputStream input2 = null; try { input1 = new FileInputStream(file1); input2 = new FileInputStream(file2); return IOUtils.compare(input1, input2); } finally { IOUtils.close(input1); IOUtils.close(input2); } } // ---------------------------------------------------------------- time public static boolean isNewer(String file, String reference) { return isNewer(new File(file), new File(reference)); } /** * PerformTest if specified <code>File</code> is newer than the reference * <code>File</code>. * * @param file * the <code>File</code> of which the modification date must be * compared * @param reference * the <code>File</code> of which the modification date is used * @return <code>true</code> if the <code>File</code> exists and has been * modified more recently than the reference <code>File</code>. */ public static boolean isNewer(File file, File reference) { if (reference.exists() == false) { throw new IllegalArgumentException("The reference file '" + file + "' doesn't exist"); } return isNewer(file, reference.lastModified()); } public static boolean isOlder(String file, String reference) { return isOlder(new File(file), new File(reference)); } public static boolean isOlder(File file, File reference) { if (reference.exists() == false) { throw new IllegalArgumentException("The reference file '" + file + "' doesn't exist"); } return isOlder(file, reference.lastModified()); } /** * Tests if the specified <code>File</code> is newer than the specified time * reference. * * @param file * the <code>File</code> of which the modification date must be * compared. * @param timeMillis * the time reference measured in milliseconds since the epoch * (00:00:00 GMT, January 1, 1970) * @return <code>true</code> if the <code>File</code> exists and has been * modified after the given time reference. */ public static boolean isNewer(File file, long timeMillis) { if (!file.exists()) { return false; } return file.lastModified() > timeMillis; } public static boolean isNewer(String file, long timeMillis) { return isNewer(new File(file), timeMillis); } public static boolean isOlder(File file, long timeMillis) { if (!file.exists()) { return false; } return file.lastModified() < timeMillis; } public static boolean isOlder(String file, long timeMillis) { return isOlder(new File(file), timeMillis); } // ---------------------------------------------------------------- smart // copy public static void copy(String src, String dest) throws IOException { copy(new File(src), new File(dest), defaultOption); } public static void copy(String src, String dest, FileOption option) throws IOException { copy(new File(src), new File(dest), option); } public static void copy(File src, File dest) throws IOException { copy(src, dest, defaultOption); } /** * Smart copy. If source is a directory, copy it to destination. Otherwise, * if destination is directory, copy source file to it. Otherwise, try to * copy source file to destination file. */ public static void copy(File src, File dest, FileOption option) throws IOException { if (src.isDirectory()) { copyDir(src, dest, option); return; } if (dest.isDirectory()) { copyFileToDir(src, dest, option); return; } copyFile(src, dest, option); } // ---------------------------------------------------------------- smart // move public static void move(String src, String dest) throws IOException { move(new File(src), new File(dest), defaultOption); } public static void move(String src, String dest, FileOption option) throws IOException { move(new File(src), new File(dest), option); } public static void move(File src, File dest) throws IOException { move(src, dest, defaultOption); } /** * Smart move. If source is a directory, move it to destination. Otherwise, * if destination is directory, move source file to it. Otherwise, try to * move source file to destination file. */ public static void move(File src, File dest, FileOption option) throws IOException { if (src.isDirectory() == true) { moveDir(src, dest); return; } if (dest.isDirectory() == true) { moveFileToDir(src, dest, option); return; } moveFile(src, dest, option); } // ---------------------------------------------------------------- smart // delete public static void delete(String dest) throws IOException { delete(new File(dest), defaultOption); } public static void delete(String dest, FileOption option) throws IOException { delete(new File(dest), option); } public static void delete(File dest) throws IOException { delete(dest, defaultOption); } /** * Smart delete of destination file or directory. */ public static void delete(File dest, FileOption option) throws IOException { if (dest.isDirectory()) { deleteDir(dest, option); return; } deleteFile(dest); } // ---------------------------------------------------------------- misc /** * Check if one file is an ancestor of second one. * * @param strict * if <code>false</code> then this method returns * <code>true</code> if ancestor and file are equal * @return <code>true</code> if ancestor is parent of file; * <code>false</code> otherwise */ public static boolean isAncestor(File ancestor, File file, boolean strict) { File parent = strict ? getParentFile(file) : file; while (true) { if (parent == null) { return false; } if (parent.equals(ancestor)) { return true; } parent = getParentFile(parent); } } /** * Returns parent for the file. The method correctly processes "." and ".." * in file names. The getName remains relative if was relative before. * Returns <code>null</code> if the file has no parent. */ public static File getParentFile(final File file) { int skipCount = 0; File parentFile = file; while (true) { parentFile = parentFile.getParentFile(); if (parentFile == null) { return null; } if (".".equals(parentFile.getName())) { continue; } if ("..".equals(parentFile.getName())) { skipCount++; continue; } if (skipCount > 0) { skipCount--; continue; } return parentFile; } } public static boolean isFilePathAcceptable(File file, FileFilter fileFilter) { do { if (fileFilter != null && !fileFilter.accept(file)) { return false; } file = file.getParentFile(); } while (file != null); return true; } // ---------------------------------------------------------------- temp /** * CreatingUtils temp directory. */ public static File createTempDirectory(String prefix, String suffix) throws IOException { File file = doCreateTempFile(prefix, suffix, null); file.delete(); file.mkdir(); return file; } /** * CreatingUtils temp file. */ public static File createTempFile(final File dir, String prefix, String suffix, final boolean create) throws IOException { File file = doCreateTempFile(prefix, suffix, dir); file.delete(); if (create) { file.createNewFile(); } return file; } /** * CreatingUtils temp file. */ public static File createTempFile(String prefix, String suffix) throws IOException { File file = doCreateTempFile(prefix, suffix, null); file.delete(); file.createNewFile(); return file; } private static File doCreateTempFile(String prefix, String suffix, final File dir) throws IOException { if (prefix.length() < 3) { prefix = (prefix + "___").substring(0, 3); } int exceptionsCount = 0; while (true) { try { return File.createTempFile(prefix, suffix, dir) .getCanonicalFile(); } catch (IOException ioex) { // Win32 createFileExclusively access // denied if (++exceptionsCount >= 100) { throw ioex; } } } } // ------------------------------- // public static boolean createDirectoryRecursively(File directory) { // if (directory == null) { // return false; // } else if (directory.exists()) { // return true; // } else if (!directory.isAbsolute()) { // directory = new File(directory.getAbsolutePath()); // } // final String parent = directory.getParent(); // if ((parent == null) || !createDirectoryRecursively(new File(parent))) { // return false; // } // directory.mkdir(); // return directory.exists(); // } public static File createFile(final File file) throws IOException { if (!file.exists()) { // createDirectoryRecursively(file.getParentFile()); mkdirs(file.getParentFile()); file.createNewFile(); } return file; } public static void writeToFile(final File file, final InputStream in) throws IOException { createFile(file); FileOutputStream fos = null; try { fos = new FileOutputStream(file); IOUtils.copyStream(in, fos); } finally { if (fos != null) { fos.close(); } } } public static boolean isCompatibleFile(String filename, final String[] formats) { if ((filename == null) || (formats == null)) { return false; } filename = filename.toLowerCase(); for (final String format : formats) { if (filename.endsWith("." + format.toLowerCase())) { return true; } } return false; } }
allanfish/facetime-demo
oatos_project/oatos_dto/src/main/java/com/conlect/oatos/utils/FileUtils.java
Java
mit
35,545
namespace IntegrationTests { using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.DocumentDB; using Microsoft.Extensions.DependencyInjection; using Xunit; public class EnsureWeCanExtendIdentityRoleTests : UserIntegrationTestsBase { private RoleManager<ExtendedIdentityRole> _Manager; private ExtendedIdentityRole _Role; public class ExtendedIdentityRole : IdentityRole { public string ExtendedField { get; set; } } public EnsureWeCanExtendIdentityRoleTests() { BeforeEachTestAfterBase(); } public void BeforeEachTestAfterBase() { _Manager = CreateServiceProvider<IdentityUser, ExtendedIdentityRole>() .GetService<RoleManager<ExtendedIdentityRole>>(); _Role = new ExtendedIdentityRole { Name = "admin" }; } [Fact] public async Task Create_ExtendedRoleType_SavesExtraFields() { _Role.ExtendedField = "extendedField"; await _Manager.CreateAsync(_Role); var savedRole = Client.CreateDocumentQuery<ExtendedIdentityRole>(Roles.DocumentsLink).ToList().FirstOrDefault(); Assert.Equal("extendedField", savedRole.ExtendedField); } [Fact] public async Task Create_ExtendedRoleType_ReadsExtraFields() { _Role.ExtendedField = "extendedField"; await _Manager.CreateAsync(_Role); var savedRole = await _Manager.FindByIdAsync(_Role.Id); Assert.Equal("extendedField", savedRole.ExtendedField); } } }
FelschR/aspnetcore-identity-documentdb
test/CoreIntegrationTests/EnsureWeCanExtendIdentityRoleTests.cs
C#
mit
1,756
using System; using System.Numerics; class FibunaciSequence { static void Main() { BigInteger firstMember = new BigInteger(0); BigInteger desiredMember = new BigInteger(0); BigInteger secondMember = new BigInteger(1); Console.Write("Input N: "); int n = int.Parse(Console.ReadLine()); for (int i = 2; i < n + 2; i++) { desiredMember = firstMember + secondMember; firstMember = secondMember; secondMember = desiredMember; } if (n == 2) { desiredMember = 1; } Console.WriteLine("The sum if first {0} members is: {1}", n, desiredMember - 1); } }
d-georgiev-91/TelerikAcademy
Programming/CSharp/CSharpPart1/Loops/FibunaciSequence/FibunaciSequence.cs
C#
mit
714
# 1.1基本终端命令 ###为什么要使用命令行/如何开启命令行? * 许多功能在图形界面不提供,只有通过命令行来实现。 * Finder会隐藏许多你不太会需要的文件,然而 command line 会允许你访问所有文件。 * 通过 command line 可以远程访问你的 Mac(利用 SSH)。 * administrators 用户可以通过 sudo 命令获得 root 用户权限。 * 通过 command-line script 可以使工作更高效。 * Terminal(终端)程序可以在“实用工具”里找到。 * 如果你开启手动输入用户名登陆模式,登陆时在用户名处输入 >con sole 可以直接进入命令行界面。随后你仍然需要登录到一个账户。 ###初识Command Line - 许多命令会花费一些时间来执行,然而这中间不会给出任何提示或者进度条。一般结束后会出现一个“用户名$”的标记。如果没有出现,那么说明最后一条命令正在执行。 - 一条命令包括 Command Name、Options、Arguments、Extras 四个部分,但是后三个部分有时是可选的。Options 部分用-作为前导符。其中许多命令的 Options 部分只包含单个字母,这时可以合并。例如,ls -lA和ls -l -A是等效的。Arguments 部分用来细化这个命令或指定这个命令具体的实施对象,Extras 部分则用来进一步实现其他功能。 - 举例:以下新建了一个test.txt 并且删除了它 ``` $ ls $ cd $ ls $ cd Desktop $ mkdir folder $ cd folder $ touch test.txt $ rm test.txt $ cd .. $ rm -r folder ``` - 如果你输入了一些错误的命令,系统会返回一些错误信息。但是系统却不会阻止你做傻事(例如删除整个用户文件夹)。 ### 关于 man 命令 虽然有上千条命令,每条命令还有许多可选参数和具体的使用方式,但是你却不需要记住这些命令。你只需要记住一个:man 大多数命令都会包含一个使用指南,会告诉你任何你需要知道的关于这个命令的所有细节,在命令行中输入 man command-name 即可获取。例如,你想知道ls这个命令怎么使用,输入man ls即可进入使用指南页面。 按Q来退出使用指南页面。 ###命令行,文件和路径 >如果知道如何使用命令是掌握 command line 的第一步,那么第二步就是学习如何在 command line 中使用文件路径。如果你掌握了文件路径,你将会发现这比使用 Finder 更加快捷。 **注意** command line 工具是大小写敏感的,并且对于文件名,必须包括扩展名。例如,你想找iTunes这个程序,输入itunes是无效的,必须输入iTunes.app。 Mac OS传统上喜欢使用“文件夹”(folders)这个名称,但是在 command line 中,主要使用“目录”(directory)这个词。这和 UNIX 是一致的。 ###两种路径:绝对路径和相对路径 - 绝对路径:完整描述一个文件的位置,总是以斜杠(/)(forward slash)开头。例如/Users/michelle/Public/Drop Box。 - 相对路径:只描述一部分位置信息,它和你在 command line 目前的目录有关。当你打开新的 Terminal 程序时,command line 会话的目录应该是你的 home folder。这时上面例子文件夹的相对路径写作Public/Drop Box。显然它从当前目录开始。和html类似,你也可以使用两个点(“..”)来代表父目录,这样你就可以用相对路径表示上级或同级目录了。例如你可以输入cd ..甚至cd ../.. ###切换到其他路径和目录 如果你想将当前 command line 会话切换到其他目录,需要用到三个命令:pwd,ls和cd。 - pwd的含义是“print working directory”,会显示当前目录的绝对路径。 - ls的含义是“list directory contents”,它会列出当前目录的内容。这个命令还有其他参数可选。 - cd的含义是“change directory”,它会改变当前目录到你指定的目录。如果你不指定,则会返回你的 home folder。 ###查看隐藏文件 为了简化工作,command line 和 Finder 都会隐藏许多文件和文件夹,这些内容通常是系统需要的。不借助第三方工具让 Finder 显示隐藏文件比较困难,但是在 command line 中却非常简单。首先,许多隐藏文件的隐藏是通过隐藏属性在 Finder 中隐藏的,而 command line 会忽略这些属性,所以这些文件会在 command line 中显示。另外,ls命令会隐藏文件名以.开头的文件,但是这些文件却可以被显示出来,方法是利用-a选项。例如: $ ls -la ###用Command-Line管理文件 ####检视文件 有许多基础命令用来定位、检视文件和文件夹,包括cat, less, which, file以及find。别忘了,你可以利用man命令来查阅每个命令的使用指南。 #### cat cat是“concatenate”的意思,会按顺序读取文件并输出到 Terminal 窗口,语法为cat后接你需要查看的文件的路径。cat命令也可以用>>来增加文本文件的内容,例如命令cat ../textOne.txt >> textTwo.txt会把 textOne.txt 的内容添加到 textTwo.txt 的结尾。这个>>就属于上一篇提到的“Extras”。 ####which 这个命令会定位某个命令的文件路径。换言之,它会告诉你你执行某个具体命令的时候,在使用哪个文件。语法为which后接某个命令。 ###file 这个命令会尝试根据文件的内容输出文件类型。如果一个文件缺失了扩展名,那么这个命令可能会非常有用。语法为file后接文件路径。如图,此例为一个 PNG 文件,还给出了它的尺寸、颜色数等信息。 ####find 这个命令用来根据搜索关键词定位文件路径。 find命令不使用 Spotlight 搜索服务,但是它允许你设置非常具体的搜索条件,以及通配符(稍后介绍)。语法为find后接搜索的起始路径,后接定义搜索的选项,后接搜索内容(包含在引号里)。 ## 使用递归命令 简单来说,递归命令可以允许命令不执行于一个特定文件,而是指定的路径下的所有文件。大多数命令包含一个-r或者-R选项,来设定你想递归地执行这个命令。例如下面的例子,展示了添加-R后ls命令的执行方式: ``` ls ls -R ``` ##编辑文件和文件夹 有许多基础的命令用来编辑文件和文件夹,包括mkdir, cp, mv, rm, rmdir以及vi。下面我们来简要地介绍一下这些命令。 ####mkdir “make diretory”的缩写,用来创建文件夹,语法为mkdir后接新文件夹的目录。可以用-p选项,来一起创建路径中不存在的文件夹(这样你就不用挨层创建了)。 ###cp “copy”的缩写,用来把文件从一处复制到另一处。语法为cp后接原始路径,后接目标路径。如果你想复制整个文件夹和所有内容,需要添加-R选项。如果指定的目标路径不含文件名,则 cp 命令会按原名复制。如果指定的目标路径包括文件名,则会复制为你指定的文件名。如果仅指定新文件名,则会在原处以新名称创建文件副本。注意,系统会自动替换同名文件而不出现提示。 ###mv “move”的缩写,用来移动文件。语法为mv后接原路径,后接新路径。mv 的指定路径规则和 cp 是一样的(没错,如果仅指定新文件名,它就成了重命名命令)。 ###rm “remove”的缩写,会永久删除文件。注意,command-line中没有废纸篓。语法为rm后接文件路径。然而,使用 rm 命令删除的文件有可能可以通过数据恢复工具恢复。如果希望安全删除文件,可以使用srm命令。 ###rmdir和rm -R rmdir是“remove directory”的缩写,这个命令会永久删除文件夹。再强调一遍,CLI 中木有废纸篓。语法为rmdir后接希望删除目录的路径。然而,rmdir 命令无法删除含有任何其他文件的文件夹,所以大多数情形下rmdir命令是不适用的。不过,你可以利用rm添加-R选项来删除文件夹及包含的所有文件。 ###vi 代表“visual”(视觉的),然而这个名称相当具有讽刺意味:vi可能是可视化效果最差的文本编辑器了。然而,vi 是 command line 中最常见的文本编辑器。用vi打开文本文件,只需要输入vi后接文件路径即可。Mac OS X 还提供了nano,一个更加现代的文本编辑器。它也更加方便,例如在底部包含了一个作弊小条(=_=),上面有常用的快捷键列表(你就不用背下来它们了)。然而,vi却有时是默认的文本编辑器,所以掌握vi是很有用的。 和less命令类似,vi命令会占用整个 Terminal 空间来显示文件内容。打开后,在“command模式”,vi 会等你输入一些预定义字符来告诉 vi 你想做什么。你也可以使用键盘上的箭头键单纯地浏览文件。你想编辑时,按A开始(会进入编辑模式)。文字会插入到光标处。如果你想保存,需要先退出编辑模式进入 command 模式。方法是按下esc键。回到 command 模式后,按住shift同时按两次Z来保存并退出。如果你不想保存,在 command 模式输入:quit!并按enter return直接退出。 ##用Command-Line管理系统 ###使用su来切换用户 su命令代表“substitute user identity”,允许你在命令行中轻松切换到另一个用户账户。语法为su后接用户的短名称。然后会要求你输入密码(但是输入的时候不会显示)。执行完毕后,命令的前缀会改变,表示你拥有其他用户的权利。你可以利用who -m命令来验证当前登陆的身份。切换后,你会一直保持该用户身份,直至退出 Terminal 或者输入exit命令。 ###关于sudo的使用 ####sudo概述 更强大的命令就是sudo,代表“substitute user do”,或者,更恰当地,“super user do”。用sudo执行一个命令会使用 root 账户权限。当然,使用之前需要 administrator 账户(管理员账户)的授权(如输入密码)。 默认情况下,任何管理员账户都可以使用sudo来获取 root 权限,甚至当 root 账户在图形界面被禁用的情况下,sudo依然有效。这个命令是很多情况下我们不得不使用 Terminal 的原因,——同样也是给每个用户管理员身份的危险所在。不过,你可以调整sudo的配置文件,来限制它的使用。 提示:如果由于你忘了使用sudo而导致命令行返回一个错误,只需输入sudo !!就可以用sudo来执行上一条指令。 记住,权力越大责任越大。不恰当地使用sudo可以轻易破坏你的系统设置。命令行只会在你第一次执行严重破坏性行为之前提示你,之后,它就会假设你清楚自己正在干什么。如果你只掌握三条使用命令行的准则,那将是:总是仔细检查你的命令;总是使用Tab completion来帮助你避免拼写错误;使用sudo之前,总是仔仔细细检查你的命令。 ###使用 sudo 切换 Shell 如果你是一个管理员用户,你需要执行很多条需要 root 权限的命令,你可以临时切换整个命令行 shell 来取得 root 级别的访问权限。方法就是先输入sudo -s,回车后再键入你的密码。 ###其他Command-Line技巧提示 - 输入命令open .可以用 Finder 打开当前的位置。 - 在 Terminal 的偏好里面可以设定它的外观和风格。 - 中止一个错误的或者发疯的命令,可以使用组合键control + C。 - 你可以在执行前编辑命令,只需要使用箭头和键盘上的其他字母。 - 没有输入任何命令时,你可以用▲和▼来浏览历史命令。同样可以编辑和再次执行。 - 你也可以使用history命令查看历史记录。 - 你可以使用组合键control + L清屏。
HackerEcology/BeginnerCourse
tdjackey/Gitbook/shell/11shell.md
Markdown
mit
11,915
{% extends "base.html" %} {% block head %} {{ super() }} <link href="{{ url_for('static', filename='Cesium/Build/Cesium/Widgets/widgets.css') }}" rel="stylesheet"> {% endblock %} {% block page_content %} <div class="wrapper wrapper-content"> <div id="cesiumContainer" class="fullSize"></div> </div> {% endblock %} {% block scripts %} {{ super() }} <script src="{{ url_for('static', filename='Cesium/Build/Cesium/Cesium.js') }}/"></script> <script> function set_czml (starttime, endtime, data) { var start = unixtime2cesium(starttime); var end = unixtime2cesium(endtime); var czml = [{ "id" : "document", "name" : "CZML Path", "version" : "1.0", "clock": { "interval": start + '/' + end, "currentTime": start, "multiplier": 20 } }, { "id" : "path", "name" : "path with ANITA GPS flight data", "description" : "<p>GPS path of ANITA payload.</p>", "availability" : start + '/' + end, "path" : { "material" : { "polylineOutline" : { "color" : { "rgba" : [255, 0, 255, 255] }, "outlineColor" : { "rgba" : [0, 255, 255, 255] }, "outlineWidth" : 5 } }, "width" : 8, "leadTime" : 10, "trailTime" : 21600, "resolution" : 5 }, "position" : { "epoch" : start, "cartographicDegrees" : data } }]; return czml } // var czml = [{ // "id" : "document", // "name" : "CZML Path", // "version" : "1.0", // "clock": { // "interval": unixtime2cesium(1482278106) + '/' + unixtime2cesium(1482296106), // "currentTime": unixtime2cesium(1482278106), // "multiplier": 10 // } // }, { // "id" : "path", // "name" : "path with GPS flight data", // "description" : "<p>Hang gliding flight log data from Daniel H. Friedman.<br>Icon created by Larisa Skosyrska from the Noun Project</p>", // "availability" : unixtime2cesium(1482278106) + '/' + unixtime2cesium(1482296106), // "path" : { // "material" : { // "polylineOutline" : { // "color" : { // "rgba" : [255, 0, 255, 255] // }, // "outlineColor" : { // "rgba" : [0, 255, 255, 255] // }, // "outlineWidth" : 5 // } // }, // "width" : 8, // "leadTime" : 10, // "trailTime" : 1000, // "resolution" : 5 // }, // "position" : { // "epoch" : unixtime2cesium(1482278106), // "cartographicDegrees" : [ // 0,-122.93797,39.50935,1776, // 10,-122.93822,39.50918,1773, // 20,-122.9385,39.50883,1772, // 30,-122.93855,39.50842,1770, // 40,-122.93868,39.50792,1770, // 50,-122.93877,39.50743,1767, // 60,-122.93862,39.50697,1771, // 70,-122.93828,39.50648,1765, // 80,-122.93818,39.50608,1770, // 90,-122.93783,39.5057,1754, // 100,-122.93777,39.50513,1732, // 110,-122.93793,39.50458,1727, // 120,-122.93815,39.50415,1717, // 130,-122.9382,39.50362,1713, // 140,-122.93818,39.5031,1703, // ] // } // }]; // var czmlStream; // var czmlStreamUrl = 'http://127.0.0.1:5000/api/query_128_175_112_58_anita_1204a/czml'; // viewer.dataSources.add(czmlStream); // var czmlEventSource = new EventSource(czmlStreamUrl); // czmlEventSource.addEventListener('czml', function(czmlUpdate) { // czmlStream.load(JSON.parse(czmlUpdate.data)); // }, false); $(document).ready(function() { $('#navbar_gps').parent().addClass("active"); $('#label_sync_checkbox').attr('style', 'display:none'); $('#sync_checkbox').attr('style', 'display:none'); $('#next').attr('style', 'display:none'); $('#prev').attr('style', 'display:none'); $('#first').attr('style', 'display:none'); $('#last').attr('style', 'display:none'); $('#label_auto_checkbox').attr('style', 'display:none'); $('#auto_checkbox').attr('style', 'display:none'); $('#search-input').attr('style', 'display:none'); Cesium.BingMapsApi.defaultKey = 'AhYud-JABUtcXoTLU2f5KoiN2B00NtJ25W6xXyXRlSgGmROu-Yg7LSq_1G2Bey0A'; var viewer = new Cesium.Viewer('cesiumContainer'); var connect = $('.ladda-button').ladda(); $('#connect').click(function() { var eventRateTimer ; if ($(this).hasClass('connect')) { connect.ladda('start'); $.ajax({ url: '/api/connect/' + ip + '/' + db }).done(function(response) { if (response == 'success') { console.log('succeed'); $.getJSON('/api/' + ip_db + '/czml', function(data) { var czml = set_czml(data.starttime, data.endtime, data.data); // viewer.dataSources.add(Cesium.CzmlDataSource.load(czml)).then(function(ds) { // viewer.trackedEntity = ds.entities.getById('path'); // }); viewer.dataSources.add(Cesium.CzmlDataSource.load(czml)); }); $('#connect').removeClass('connect').removeClass('btn-primary').addClass('btn-warning'); $('#connect').html('Disconnect'); $('.chosen-select').attr("disabled", true).trigger("chosen:updated"); connected = true; $('#connect').value = 'Disconnect' connect.ladda('stop'); } else { connect.ladda('stop'); swal({ title: 'Database not found!', type: "warning", timer: 3000, showConfirmButton: true }); } }); } else { //otherwise, stop all the requests. clearInterval(eventRateTimer); $('#connect').addClass('connect').addClass('btn-primary').removeClass('btn-warning'); $('#connect').html('Connect'); $('.chosen-select').attr("disabled", false).trigger("chosen:updated"); connected = false; } }); // viewer.dataSources.add(Cesium.CzmlDataSource.processUrl(czmlStreamUrl)).then(function(ds) { // viewer.trackedEntity = ds.entities.getById('myObject'); // }); }); </script> {% endblock %}
mcollins12321/anita
app/templates/gps.html
HTML
mit
7,095
version https://git-lfs.github.com/spec/v1 oid sha256:7150a0665aca25d41d9c4c189da7345cbfc0ce3a29ab0c0ef1e9ac572259f9aa size 38540
yogeshsaroya/new-cdnjs
ajax/libs/ammaps/3.13.0/maps/js/malaysiaLow.js
JavaScript
mit
130
import Ember from "ember"; export default Ember.View.extend({ elementId: "collection-show" });
nwabdou85/wallapop-webapp
app/views/collections/show.js
JavaScript
mit
97
<!-- JOTPOT OS Copyright (c) 2017 Jacob O'Toole Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <html> <head> <title> JOTPOT OS Login Manager </title> <link rel="stylesheet" type="text/css" href="power-options.css"> </head> <style> html,body { padding: 0px; margin: 0px; width: 100%; height: 100%; background-color: black; color: #ccc; text-align: center; } #main { text-align: center; font-size: 1.5em; font-family: Arial, Helvetica, sans-serif; position: absolute; width: 100%; top: 50%; left: 0px; transform: translateY(-70%); } #JPOS { margin-top: 50px; width: auto; } #welcome { font-weight: bold; padding-top: 15px; } input { color: white; background-color: #333; border-style: solid; border-width: 2px; border-color: #666; width: 340px; border-radius: 5px; box-sizing: border-box; padding: 10px; padding-left: 15px; padding-right: 15px; margin: 10px; } button { width: 320px; margin: 10px; border-radius: 20px; color: white; background-color: #333; border-style: solid; border-width: 2px; border-color: #666; text-align: center; padding: 10px; } button.half { width: 150px; } #more { position: absolute; left: 0px; top: 0px; width: /*350px*/100%; height: 100%; padding: 20px; box-sizing: border-box; /*transform: translate(-50%,-50%);*/ background-color: rgba(0,0,0,0.6); display: none; text-align: center; flex-direction: column; align-items: center; justify-content: center; } #power-options { position: absolute; bottom: 10px; right: 10px; } .power-menu { position: absolute; bottom: 40px; right: 10px; } </style> <body> <img src="JPOS.png" ID="JPOS"> <div ID="main"> <div ID="welcome">Welcome to JOTPOT OS,<br>Please log in:</div> <div ID="login"><input type="text" ID="username" placeholder="Username"><br><input type="password" ID="password" placeholder="Password"> <div ID="buttons"><button type="button" class="go half" data-go="cmdline">Command Line</button><button type="button" class="go half" data-go="/JPOS/JPOS">JPOS Desktop</button><br><button type="button" class="go" data-go="other">Other</button></div> </div> </div> <div ID="more"><button type="button" class="go" data-go="cmdline">Command Line</button><button type="button" class="go" data-go="/JPOS/JPOS">JPDE</button><button type="button" class="go" data-go="/usr/bin/gnome-session">Gnome</button><button type="button" class="go" data-go="/usr/bin/mate-session">MATE</button><button type="button" class="go" data-go="/usr/bin/startlxde">LXDE</button><button type="button" class="go" data-go="/usr/bin/startkde">KDE</button><button type="button" class="go" data-go="nomore">Back...</button></div> <div ID="power-options">Power Options</div> <script type="text/javascript"> document.getElementById("JPOS").style.height = document.getElementById("main").getBoundingClientRect().top * 0.7 ; document.querySelectorAll(".go").forEach(elem=>{ elem.addEventListener("click",_=>{ let launch = elem.getAttribute("data-go") ; if (launch === "cmdline") { launch = null ; } else if (launch === "other") { document.getElementById("more").style.display = "flex" ; return;//? } else if (launch === "nomore") { document.getElementById("more").style.display = "none" ; return;//? } let usr = document.getElementById("username").value ; require("electron").ipcRenderer.send("go",launch,usr) ; }) ; }) ; let powerMenu = require(__dirname+"/systemcontrol.js").createMenu().menu ; powerMenu.style.display = "none" ; document.body.appendChild(powerMenu) ; document.getElementById("power-options").addEventListener("click",_=>{ powerMenu.style.display = "block" ; }) ; document.body.addEventListener("mouseup",_=>{ powerMenu.style.display = "none" ; }) ; </script> <!--Welcome to JOTPOT OS. <button type="button" onclick="require('electron').ipcRenderer.send('go',null)">Command Line</button> <button type="button" onclick="require('electron').ipcRenderer.send('go','/JPOS/JPOS')">JOTPOT OS Desktop</button> <button type="button" onclick="require('electron').ipcRenderer.send('go','/usr/bin/gnome-session')">Gnome Desktop</button>--> </body> </html>
JOT85/JPOS
JPOS/login.html
HTML
mit
5,449
var _ = require('lodash') /** * Create a new StatsPlugin that causes webpack to generate a stats file as * part of the emitted assets. * @constructor * @param {String} output Path to output file. * @param {Object} options Options passed to the stats' `.toJson()`. */ function StatsPlugin (output, options, cache) { this.output = output this.options = options this.cache = cache } StatsPlugin.prototype.apply = function apply (compiler) { var output = this.output var options = this.options var cache = this.cache compiler.plugin('emit', function onEmit (compilation, done) { var result compilation.assets[output] = { size: function getSize () { return result ? result.length : 0 }, source: function getSource () { var stats = compilation.getStats().toJson(options) var result if (cache) { cache = _.merge(cache, stats) if (stats.errors) cache.errors = stats.errors if (stats.warnings) cache.warnings = stats.warnings result = JSON.stringify(cache) } else { result = JSON.stringify(stats) } return result } } done() }) } module.exports = StatsPlugin
friendsofagape/mt2414ui
node_modules/stats-webpack-plugin/index.js
JavaScript
mit
1,224
#!/usr/bin/env python # # Copyright (c) 2001 Vivake Gupta ([email protected]). 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 as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA # # This software is maintained by Vivake ([email protected]) and is available at: # http://www.omniscia.org/~vivake/python/Simplex.py # Modified (debugged?) 7/16/2004 Michele Vallisneri ([email protected]) """ Simplex - a regression method for arbitrary nonlinear function minimization Simplex minimizes an arbitrary nonlinear function of N variables by the Nelder-Mead Simplex method as described in: Nelder, J.A. and Mead, R., "A Simplex Method for Function Minimization", Computer Journal, Vol. 7, 1965, pp. 308-313. It makes no assumptions about the smoothness of the function being minimized. It converges to a local minimum which may or may not be the global minimum depending on the initial guess used as a starting point. """ import math import copy import sys class Simplex: def __init__(self, testfunc, guess, increments, kR = -1, kE = 2, kC = 0.5): """Initializes the simplex. INPUTS ------ testfunc the function to minimize guess[] an list containing initial guesses increments[] an list containing increments, perturbation size kR reflection constant (alpha =-1.0) kE expansion constant (gamma = 2.0) kC contraction constant (beta = 0.5) """ self.testfunc = testfunc self.guess = guess self.increments = increments self.kR = kR self.kE = kE self.kC = kC self.numvars = len(self.guess) self.simplex = [] self.lowest = -1 self.highest = -1 self.secondhighest = -1 self.errors = [] self.currenterror = 0 # Initialize vertices # MV: the first vertex is just the initial guess # the other N vertices are the initial guess plus the individual increments # the last two vertices will store the centroid and the reflected point # the compute errors at the ... vertices for vertex in range(0, self.numvars + 3): self.simplex.append(copy.copy(self.guess)) for vertex in range(0, self.numvars + 1): for x in range(0, self.numvars): if x == (vertex - 1): self.simplex[vertex][x] = self.guess[x] + self.increments[x] self.errors.append(0) self.calculate_errors_at_vertices() def minimize(self, epsilon = 0.0001, maxiters = 250, monitor = 1): """Walks to the simplex down to a local minima. INPUTS ------ epsilon convergence requirement maxiters maximum number of iterations monitor if non-zero, progress info is output to stdout OUTPUTS ------- an array containing the final values lowest value of the error function number of iterations taken to get here """ iter = 0 for iter in range(0, maxiters): # Identify highest and lowest vertices self.highest = 0 self.lowest = 0 for vertex in range(1, self.numvars + 1): if self.errors[vertex] > self.errors[self.highest]: self.highest = vertex if self.errors[vertex] < self.errors[self.lowest]: self.lowest = vertex # Identify second-highest vertex self.secondhighest = self.lowest for vertex in range(0, self.numvars + 1): if vertex == self.highest: continue elif vertex == self.secondhighest: continue elif self.errors[vertex] > self.errors[self.secondhighest]: self.secondhighest = vertex # Test for convergence: # compute the average merit figure (ugly) S = 0.0 for vertex in range(0, self.numvars + 1): S = S + self.errors[vertex] F2 = S / (self.numvars + 1) # compute the std deviation of the merit figures (ugly) S1 = 0.0 for vertex in range(0, self.numvars + 1): S1 = S1 + (self.errors[vertex] - F2)**2 T = math.sqrt(S1 / self.numvars) # Optionally, print progress information if monitor: print '\r' + 72 * ' ', print '\rIteration = %d Best = %f Worst = %f' % \ (iter,self.errors[self.lowest],self.errors[self.highest]), sys.stdout.flush() if T <= epsilon: # We converged! Break out of loop! break; else: # Didn't converge. Keep crunching. # Calculate centroid of simplex, excluding highest vertex # store centroid in element N+1 # loop over coordinates for x in range(0, self.numvars): S = 0.0 for vertex in range(0, self.numvars + 1): if vertex == self.highest: continue S = S + self.simplex[vertex][x] self.simplex[self.numvars + 1][x] = S / self.numvars # reflect the simplex across the centroid # store reflected point in elem. N + 2 (and self.guess) self.reflect_simplex() self.currenterror = self.testfunc(self.guess) if self.currenterror < self.errors[self.highest]: self.accept_reflected_point() if self.currenterror <= self.errors[self.lowest]: self.expand_simplex() self.currenterror = self.testfunc(self.guess) # at this point we can assume that the highest # value has already been replaced once if self.currenterror < self.errors[self.highest]: self.accept_expanded_point() elif self.currenterror >= self.errors[self.secondhighest]: # worse than the second-highest, so look for # intermediate lower point self.contract_simplex() self.currenterror = self.testfunc(self.guess) if self.currenterror < self.errors[self.highest]: self.accept_contracted_point() else: self.multiple_contract_simplex() # Either converged or reached the maximum number of iterations. # Return the lowest vertex and the currenterror. for x in range(0, self.numvars): self.guess[x] = self.simplex[self.lowest][x] self.currenterror = self.errors[self.lowest] return self.guess, self.currenterror, iter # same as expand, but with alpha < 1; kC = 0.5 fine with NR def contract_simplex(self): for x in range(0, self.numvars): self.guess[x] = self.kC * self.simplex[self.highest][x] + (1 - self.kC) * self.simplex[self.numvars + 1][x] return # expand: if P is vertex and Q is centroid, alpha-expansion is Q + alpha*(P-Q), # or (1 - alpha)*Q + alpha*P; default alpha is 2.0; agrees with NR def expand_simplex(self): for x in range(0, self.numvars): self.guess[x] = self.kE * self.guess[x] + (1 - self.kE) * self.simplex[self.numvars + 1][x] return # reflect: if P is vertex and Q is centroid, reflection is Q + (Q-P) = 2Q - P, # which is achieved for kR = -1 (default value); agrees with NR def reflect_simplex(self): # loop over variables for x in range(0, self.numvars): self.guess[x] = self.kR * self.simplex[self.highest][x] + (1 - self.kR) * self.simplex[self.numvars + 1][x] # store reflected point in elem. N + 2 self.simplex[self.numvars + 2][x] = self.guess[x] return # multiple contraction: around the lowest point; agrees with NR def multiple_contract_simplex(self): for vertex in range(0, self.numvars + 1): if vertex == self.lowest: continue for x in range(0, self.numvars): self.simplex[vertex][x] = 0.5 * (self.simplex[vertex][x] + self.simplex[self.lowest][x]) self.calculate_errors_at_vertices() return def accept_contracted_point(self): self.errors[self.highest] = self.currenterror for x in range(0, self.numvars): self.simplex[self.highest][x] = self.guess[x] return def accept_expanded_point(self): self.errors[self.highest] = self.currenterror for x in range(0, self.numvars): self.simplex[self.highest][x] = self.guess[x] return def accept_reflected_point(self): self.errors[self.highest] = self.currenterror for x in range(0, self.numvars): self.simplex[self.highest][x] = self.simplex[self.numvars + 2][x] return def calculate_errors_at_vertices(self): for vertex in range(0, self.numvars + 1): if vertex == self.lowest: # compute the error unless we're the lowest vertex continue for x in range(0, self.numvars): self.guess[x] = self.simplex[vertex][x] self.currenterror = self.testfunc(self.guess) self.errors[vertex] = self.currenterror return
PyORBIT-Collaboration/py-orbit
py/ext/las_str/SimplexMod.py
Python
mit
10,531
/**************************************************************************** 7 leaflet-freeze.js, (c) 2016, FCOO https://github.com/FCOO/leaflet-freeze https://github.com/FCOO Extend with two new functions: freeze and thaw. map.freeze( options ) will prevent dragging, contextmenu, popup, click, zoom (optional) and pan (optional) on the map and all layers/object. When the map is 'frozen' the <map>-element get a classname 'is-frozen' When the map is 'thaw' the <map>-element get a classname 'not-is-frozen' map.thaw() will undo the locking done by map.freeze(..) options: allowZoomAndPan: false. If true zoom and pan is allowed disableMapEvents: "". Names of events on the map to be disabled hideControls : false. If true all leaflet-controls are hidden hidePopups : true. If true all open popups are closed on freeze beforeFreeze : function(map, options) (optional) to be called before the freezing afterThaw : function(map, options) (optional) to be called after the thawing dontFreeze : null. leaflet-object, html-element or array of ditto with element or "leaflet-owner" no to be frozen New method L.Class.getHtmlElements: function() Return associated html-elements or array of Leaflet-elements ****************************************************************************/ (function ($, L/*, window, document, undefined*/) { "use strict"; var modernizrFreezeTest = 'is-frozen', defaultOptions = { allowZoomAndPan : false, disableMapEvents: '', hideControls : false, hidePopups : true, beforeFreeze : null, afterThaw : null, dontFreeze : null }; L.Map.addInitHook(function () { $(this.getContainer()).modernizrOff( modernizrFreezeTest ); }); /********************************************* L.Class.getHtmlElements Extend with method to find associated html-elements or array of Leaflet-elements *********************************************/ L.Class.include({ getHtmlElements: function(){ var result = null, _this = this; $.each(['_container', 'getContainer', '_path', '_icon', 'getLayers'], function(index, id){ if (_this[id]){ result = $.isFunction(_this[id]) ? _this[id].call(_this) : _this[id]; return false; } }); return result; } }); /********************************************* getLeafletHtmlElements Add and return all html-elements for a given leaflet-object *********************************************/ function getLeafletHtmlElements( leafletObj, result ){ var partResult = leafletObj; if (leafletObj instanceof L.Class) partResult = leafletObj.getHtmlElements(); if ($.isArray(partResult)) $.each(partResult, function(index, elem){ result = getLeafletHtmlElements( elem, result ); }); else result.push( partResult ); return result; } /********************************************* L.Map *********************************************/ L.Map.include({ /********************************************* freeze *********************************************/ freeze: function( options ){ if (this._isFrozen) return; var $container = $(this.getContainer()); $container.modernizrOn( modernizrFreezeTest ); options = L.Util.extend( {}, defaultOptions, options ); options.preventZoomAndPan = !options.allowZoomAndPan; //Typo pretty if (options.beforeFreeze) options.beforeFreeze(this, options); this._freezeOptions = {}; this._freezeOptions.options = options; //Remove the cursor.grab if pan is frozen this._freezeOptions.map_cursor_style = this.getContainer().style.cursor; if (options.preventZoomAndPan) this.getContainer().style.cursor = 'default'; //Block for zoom and remove the zoom-control if zoom isn't allowed if (options.preventZoomAndPan){ this._freezeOptions.getMinZoom = this.getMinZoom; this.getMinZoom = function(){ return this.getZoom(); }; this._freezeOptions.getMaxZoom = this.getMaxZoom; this.getMaxZoom = this.getMinZoom; this._freezeOptions.setZoom = this.setZoom; this.setZoom = function(){ return this; }; if (this.zoomControl){ this._freezeOptions.zoomControl_style_display = this.zoomControl._container.style.display; this.zoomControl._container.style.display = 'none'; } } //Freeze all elements except the one in options.dontFreeze by removing class "leaflet-interactive" var dontFreezeList = getLeafletHtmlElements(options.dontFreeze, []); //Exclude the elements from freezing $.each(dontFreezeList, function(index, htmlElement){ $(htmlElement) .filter('.leaflet-interactive') .addClass('not-to-freeze') .removeClass('leaflet-interactive'); }); //'Freeze' all elements $container.find('.leaflet-interactive') .addClass('_leaflet-interactive') .removeClass('leaflet-interactive'); //'Thaw' the excluded element $container.find('.not-to-freeze') .addClass('leaflet-interactive') .removeClass('not-to-freeze'); //Hide all controls if (options.hideControls){ this._freezeOptions._controlContainer_style_display = this._controlContainer.style.display; this._controlContainer.style.display = 'none'; } //Disable the different iHandlers if (options.preventZoomAndPan){ $.each([this.keyboard, this.dragging, this.tap, this.touchZoom, this.doubleClickZoom, this.scrollWheelZoom, this.boxZoom], function(index, iHandler){ if (iHandler){ iHandler.enableOnThaw = iHandler._enabled || (iHandler.enabled && iHandler.enabled()); iHandler.disable(); iHandler.frozen = true; } }); } if (options.hidePopups && this.closePopup) this.closePopup(); if (this.hasEventListeners && options.disableMapEvents){ this.disabledEvents = {}; var _this = this; $.each(options.disableMapEvents.split(' '), function(id, eventName){ if (eventName) _this.disabledEvents[eventName] = true; }); this._save_hasEventListeners = this.hasEventListeners; this.hasEventListeners = this._hasEventListenersWhenDisabled; this._save_fireEvent = this.fireEvent; this.fireEvent = this._fireEventWhenDisabled; this._save_fire = this.fire; this.fire = this._fireEventWhenDisabled; } this._isFrozen = true; if (options.afterThaw) this.once('afterThaw', options.afterThaw); return this; }, /********************************************* thaw *********************************************/ thaw: function(){ if (!this._isFrozen) return; var $container = $(this.getContainer()); //Reset cursor this.getContainer().style.cursor = this._freezeOptions.map_cursor_style; //Reset zoom if (this._freezeOptions.options.preventZoomAndPan){ this.getMinZoom = this._freezeOptions.getMinZoom; this.getMaxZoom = this._freezeOptions.getMaxZoom; this.setZoom = this._freezeOptions.setZoom; if (this.zoomControl) this.zoomControl._container.style.display = this._freezeOptions.zoomControl_style_display; } //Show controls if (this._freezeOptions.options.hideControls) this._controlContainer.style.display = this._freezeOptions._controlContainer_style_display; //Enabled any IHandler, that was disabled $.each( [this.keyboard, this.dragging, this.tap, this.touchZoom, this.doubleClickZoom, this.scrollWheelZoom, this.boxZoom], function(index, iHandler){ if (iHandler && iHandler.frozen){ if (iHandler.enableOnThaw) iHandler.enable(); iHandler.frozen = false; } }); if (this.disabledEvents){ this.hasEventListeners = this._save_hasEventListeners; this.fireEvent = this._save_fireEvent; this.fire = this._save_fire; this.disabledEvents = null; } this._freezeOptions = {}; //Thaw all elements by adding class "leaflet-interactive" $container.find('._leaflet-interactive') .addClass('leaflet-interactive') .removeClass('_leaflet-interactive'); $container.modernizrOff( modernizrFreezeTest ); this._isFrozen = false; this.fire('afterThaw'); }, /********************************************* _hasEventListenersWhenDisabled Internal new version of hasEventListeners filtering the type of events. Always allow 'contextmenu' because it is catched by _fireEventWhenDisabled *********************************************/ _hasEventListenersWhenDisabled: function( type ){ if ((type != 'contextmenu') && this.disabledEvents && this.disabledEvents[type]) return false; return L.Mixin.Events.hasEventListeners.call( this, type ); }, /********************************************* _fireEventWhenDisabled Internal new version of fireEvent to catch 'contextmenu' events *********************************************/ _fireEventWhenDisabled: function( type, data ){ if ((type == 'contextmenu') && this.disabledEvents && this.disabledEvents[type]){ //Prevent default browser contextmenu var event = L.Util.extend({}, data, { type: type, target: this }); L.DomEvent.stop( event ); return false; } return L.Mixin.Events.fireEvent.call( this, type, data ); } }); })(jQuery, L, this, document);
NielsHolt/leaflet-freeze
src/leaflet-freeze.js
JavaScript
mit
11,104
/* Copyright 1999-2017 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. You may not use this file except in compliance with the License. obtain a copy of the License at https://www.imagemagick.org/script/license.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. MagickCore log methods. */ #ifndef MAGICKCORE_LOG_H #define MAGICKCORE_LOG_H #include "MagickCore/exception.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif #if !defined(GetMagickModule) # define GetMagickModule() __FILE__,__func__,(unsigned long) __LINE__ #endif #define MagickLogFilename "log.xml" typedef enum { UndefinedEvents = 0x000000, NoEvents = 0x00000, AccelerateEvent = 0x00001, AnnotateEvent = 0x00002, BlobEvent = 0x00004, CacheEvent = 0x00008, CoderEvent = 0x00010, ConfigureEvent = 0x00020, DeprecateEvent = 0x00040, DrawEvent = 0x00080, ExceptionEvent = 0x00100, /* Log Errors and Warnings immediately */ ImageEvent = 0x00200, LocaleEvent = 0x00400, ModuleEvent = 0x00800, /* Loding of coder and filter modules */ PixelEvent = 0x01000, PolicyEvent = 0x02000, ResourceEvent = 0x04000, TraceEvent = 0x08000, TransformEvent = 0x10000, UserEvent = 0x20000, WandEvent = 0x40000, /* Log MagickWand */ X11Event = 0x80000, CommandEvent = 0x100000, /* Log Command Processing (CLI & Scripts) */ AllEvents = 0x7fffffff } LogEventType; typedef struct _LogInfo LogInfo; typedef void (*MagickLogMethod)(const LogEventType,const char *); extern MagickExport char **GetLogList(const char *,size_t *,ExceptionInfo *); extern MagickExport const char *GetLogName(void), *SetLogName(const char *); extern MagickExport const LogInfo **GetLogInfoList(const char *,size_t *,ExceptionInfo *); extern MagickExport LogEventType SetLogEventMask(const char *); extern MagickExport MagickBooleanType IsEventLogging(void), ListLogInfo(FILE *,ExceptionInfo *), LogMagickEvent(const LogEventType,const char *,const char *,const size_t, const char *,...) magick_attribute((__format__ (__printf__,5,6))), LogMagickEventList(const LogEventType,const char *,const char *,const size_t, const char *,va_list) magick_attribute((__format__ (__printf__,5,0))); extern MagickExport void CloseMagickLog(void), SetLogFormat(const char *), SetLogMethod(MagickLogMethod); #if defined(__cplusplus) || defined(c_plusplus) } #endif #endif
lggomez/dedupify
src/External/ImageMagick/include/MagickCore/log.h
C
mit
2,773
require 'webmock' require 'vcr' # This file was generated by the `rspec --init` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # The generated `.rspec` file contains `--require spec_helper` which will cause this # file to always be loaded, without a need to explicitly require it in any files. # # Given that it is always loaded, you are encouraged to keep this file as # light-weight as possible. Requiring heavyweight dependencies from this file # will add to the boot time of your test suite on EVERY test run, even for an # individual file that may not need all of that loaded. Instead, consider making # a separate helper file that requires the additional dependencies and performs # the additional setup, and require it from the spec files that actually need it. # # The `.rspec` file also contains a few flags that are not defaults but that # users commonly want. # # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration # VCR.configure do |config| config.cassette_library_dir = "fixtures/vcr_cassettes" config.hook_into :webmock # or :fakeweb end RSpec.configure do |config| # rspec-expectations config goes here. You can use an alternate # assertion/expectation library such as wrong or the stdlib/minitest # assertions if you prefer. # config.before :suite do ENV['REGRESSOR_DOMAIN'] = 'http://localhost:3000' ENV['REGRESSOR_PROJECT_ID'] = '30d8fb2c-1de2-49e2-9b4a-f7e2bbf98a27' end config.expect_with :rspec do |expectations| # This option will default to `true` in RSpec 4. It makes the `description` # and `failure_message` of custom matchers include text for helper methods # defined using `chain`, e.g.: # be_bigger_than(2).and_smaller_than(4).description # # => "be bigger than 2 and smaller than 4" # ...rather than: # # => "be bigger than 2" expectations.include_chain_clauses_in_custom_matcher_descriptions = true end # rspec-mocks config goes here. You can use an alternate test double # library (such as bogus or mocha) by changing the `mock_with` option here. config.mock_with :rspec do |mocks| # Prevents you from mocking or stubbing a method that does not exist on # a real object. This is generally recommended, and will default to # `true` in RSpec 4. mocks.verify_partial_doubles = true end # The settings below are suggested to provide a good initial experience # with RSpec, but feel free to customize to your heart's content. =begin # These two settings work together to allow you to limit a spec run # to individual examples or groups you care about by tagging them with # `:focus` metadata. When nothing is tagged with `:focus`, all examples # get run. config.filter_run :focus config.run_all_when_everything_filtered = true # Limits the available syntax to the non-monkey patched syntax that is recommended. # For more details, see: # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching config.disable_monkey_patching! # This setting enables warnings. It's recommended, but in some cases may # be too noisy due to issues in dependencies. config.warnings = true # Many RSpec users commonly either run the entire suite or an individual # file, and it's useful to allow more verbose output when running an # individual spec file. if config.files_to_run.one? # Use the documentation formatter for detailed output, # unless a formatter has already been configured # (e.g. via a command-line flag). config.default_formatter = 'doc' end # Print the 10 slowest examples and example groups at the # end of the spec run, to help surface which specs are running # particularly slow. config.profile_examples = 10 # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = :random # Seed global randomization in this process using the `--seed` CLI option. # Setting this allows you to use `--seed` to deterministically reproduce # test failures related to randomization by passing the same `--seed` value # as the one that triggered the failure. Kernel.srand config.seed =end end
Willianvdv/rspec_regression
spec/spec_helper.rb
Ruby
mit
4,555
// Put your YouTube API keys here and save the file to googlemaps.js! var GOOGLE_MAP_API_KEY = 'AIzaSyCbQBexn-YDDChOFDilK_o9caGkX6py_VE'; export default GOOGLE_MAP_API_KEY;
kennyxcao/funtrip
react-client/src/config/googlemaps.js
JavaScript
mit
173
#! /usr/bin/env lua local help = [[ Usage: lua list-system-services.lua [--session|--system] List services on the system bus (default) or the session bus. ]] --[[ This example is the rewrite of list-system-services.py in Lua. Copyleft (C) 2012 Ildar Mulyukov Original copyright follows: # Copyright (C) 2004-2006 Red Hat Inc. <http://www.redhat.com/> # Copyright (C) 2005-2007 Collabora Ltd. <http://www.collabora.co.uk/> # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation # files (the "Software"), to deal in the Software without # restriction, including without limitation the rights to use, copy, # modify, merge, publish, distribute, sublicense, and/or sell copies # of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. ]] local lgi = require 'lgi' local Gio = lgi.require 'Gio' -- main(argv): local argv = {...} local factory = function() return Gio.bus_get_sync(Gio.BusType.SYSTEM) end if #argv > 1 then print(help) return -1 else if #argv == 1 then if argv[1] == '--session' then factory = function() return Gio.bus_get_sync(Gio.BusType.SESSION) end else if argv[1] ~= '--system' then print(help) return -1 end end end end -- Get a connection to the system or session bus as appropriate -- We're only using blocking calls, so don't actually need a main loop here local bus = factory() -- This could be done by calling bus.list_names(), but here's -- more or less what that means: -- Get a reference to the desktop bus' standard object, denoted -- by the path /org/freedesktop/DBus. -- dbus_object = bus.get_object('org.freedesktop.DBus', -- '/org/freedesktop/DBus') -- The object /org/freedesktop/DBus -- implements the 'org.freedesktop.DBus' interface -- dbus_iface = dbus.Interface(dbus_object, 'org.freedesktop.DBus') -- One of the member functions in the org.freedesktop.DBus interface -- is ListNames(), which provides a list of all the other services -- registered on this bus. Call it, and print the list. -- services = dbus_iface.ListNames() local var, err = bus:call_sync('org.freedesktop.DBus', '/org/freedesktop/DBus', 'org.freedesktop.DBus', 'ListNames', nil, nil, Gio.DBusCallFlags.NONE, -1) -- We know that ListNames returns '(as)' local services = var[1].value -- services.sort() - is incorrect as GVariant is immutable for i = 1, #services do print (services[i]) end
pavouk/lgi
samples/GDbus/list-system-services.lua
Lua
mit
3,369
<?php namespace Symfony\Components\Console\Input; /* * This file is part of the symfony framework. * * (c) Fabien Potencier <[email protected]> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * ArgvInput represents an input coming from the CLI arguments. * * Usage: * * $input = new ArgvInput(); * * By default, the `$_SERVER['argv']` array is used for the input values. * * This can be overriden by explicitly passing the input values in the constructor: * * $input = new ArgvInput($_SERVER['argv']); * * If you pass it yourself, don't forget that the first element of the array * is the name of the running program. * * When passing an argument to the constructor, be sure that it respects * the same rules as the argv one. It's almost always better to use the * `StringInput` when you want to provide your own input. * * @package symfony * @subpackage console * @author Fabien Potencier <[email protected]> * * @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html * @see http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html#tag_12_02 */ class ArgvInput extends Input { protected $tokens; protected $parsed; /** * Constructor. * * @param array $argv An array of parameters from the CLI (in the argv format) * @param InputDefinition $definition A InputDefinition instance */ public function __construct(array $argv = null, InputDefinition $definition = null) { if (null === $argv) { $argv = $_SERVER['argv']; } // strip the program name array_shift($argv); $this->tokens = $argv; parent::__construct($definition); } /** * Processes command line arguments. */ protected function parse() { $this->parsed = $this->tokens; while ($token = array_shift($this->parsed)) { if ('--' === substr($token, 0, 2)) { $this->parseLongOption($token); } elseif ('-' === $token[0]) { $this->parseShortOption($token); } else { $this->parseArgument($token); } } } /** * Parses a short option. * * @param string $token The current token. */ protected function parseShortOption($token) { $name = substr($token, 1); if (strlen($name) > 1) { if ($this->definition->hasShortcut($name[0]) && $this->definition->getOptionForShortcut($name[0])->acceptParameter()) { // an option with a value (with no space) $this->addShortOption($name[0], substr($name, 1)); } else { $this->parseShortOptionSet($name); } } else { $this->addShortOption($name, null); } } /** * Parses a short option set. * * @param string $token The current token */ protected function parseShortOptionSet($name) { $len = strlen($name); for ($i = 0; $i < $len; $i++) { if (!$this->definition->hasShortcut($name[$i])) { throw new \RuntimeException(sprintf('The "-%s" option does not exist.', $name[$i])); } $option = $this->definition->getOptionForShortcut($name[$i]); if ($option->acceptParameter()) { $this->addLongOption($option->getName(), $i === $len - 1 ? null : substr($name, $i + 1)); break; } else { $this->addLongOption($option->getName(), true); } } } /** * Parses a long option. * * @param string $token The current token */ protected function parseLongOption($token) { $name = substr($token, 2); if (false !== $pos = strpos($name, '=')) { $this->addLongOption(substr($name, 0, $pos), substr($name, $pos + 1)); } else { $this->addLongOption($name, null); } } /** * Parses an argument. * * @param string $token The current token */ protected function parseArgument($token) { if (!$this->definition->hasArgument(count($this->arguments))) { throw new \RuntimeException('Too many arguments.'); } $this->arguments[$this->definition->getArgument(count($this->arguments))->getName()] = $token; } /** * Adds a short option value. * * @param string $shortcut The short option key * @param mixed $value The value for the option */ protected function addShortOption($shortcut, $value) { if (!$this->definition->hasShortcut($shortcut)) { throw new \RuntimeException(sprintf('The "-%s" option does not exist.', $shortcut)); } $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value); } /** * Adds a long option value. * * @param string $name The long option key * @param mixed $value The value for the option */ protected function addLongOption($name, $value) { if (!$this->definition->hasOption($name)) { throw new \RuntimeException(sprintf('The "--%s" option does not exist.', $name)); } $option = $this->definition->getOption($name); if (null === $value && $option->acceptParameter()) { // if option accepts an optional or mandatory argument // let's see if there is one provided $next = array_shift($this->parsed); if ('-' !== $next[0]) { $value = $next; } else { array_unshift($this->parsed, $next); } } if (null === $value) { if ($option->isParameterRequired()) { throw new \RuntimeException(sprintf('The "--%s" option requires a value.', $name)); } $value = $option->isParameterOptional() ? $option->getDefault() : true; } $this->options[$name] = $value; } /** * Returns the first argument from the raw parameters (not parsed). * * @return string The value of the first argument or null otherwise */ public function getFirstArgument() { foreach ($this->tokens as $token) { if ($token && '-' === $token[0]) { continue; } return $token; } } /** * Returns true if the raw parameters (not parsed) contains a value. * * This method is to be used to introspect the input parameters * before it has been validated. It must be used carefully. * * @param string|array $values The value(s) to look for in the raw parameters (can be an array) * * @return Boolean true if the value is contained in the raw parameters */ public function hasParameterOption($values) { if (!is_array($values)) { $values = array($values); } foreach ($this->tokens as $v) { if (in_array($v, $values)) { return true; } } return false; } }
webmozart/symfony-sandbox
src/vendor/symfony/src/Symfony/Components/Console/Input/ArgvInput.php
PHP
mit
6,813
require 'rails_helper' describe OpportunitiesController do context "with a logged user" do let(:account) { FactoryGirl.create(:account) } let(:user) { FactoryGirl.create(:user, account: account) } before(:each) do @request.host = "#{account.domain}.lvh.me" @request.env["devise.mapping"] = Devise.mappings[:user] sign_in user end context "with an existing opportunity" do let!(:opportunity) { FactoryGirl.create(:opportunity) } describe "GET index" do before(:each) { get :index } it { expect(response).to be_success } it { expect(assigns(:opportunities)).to eq([opportunity]) } end describe "GET show" do before(:each) { get :show, id: opportunity.id } it { expect(response).to be_success } it { expect(assigns(:opportunity)).to eq(opportunity) } end describe "GET edit" do before(:each) { get :edit, id: opportunity.id } it { expect(response).to be_success } it { expect(assigns(:opportunity)).to eq(opportunity) } end describe "DELETE destroy" do before(:each) { delete :destroy, id: opportunity.id } it { expect(Opportunity.count).to eq(0) } it { expect(response).to redirect_to(opportunities_url) } end end describe "GET new" do before(:each) { get :new } it { expect(response).to be_success } it { expect(assigns(:opportunity)).to be_a_new(Opportunity) } end describe "POST create" do before(:each) { post :create } it { expect(response).to redirect_to(Opportunity.last) } it { expect(Opportunity.count).to eq(1) } it { expect(assigns(:opportunity)).to be_a(Opportunity) } it { expect(assigns(:opportunity)).to be_persisted } end end end
WildCodeSchool/Merci-Edgar
spec/controllers/opportunities_controller_spec.rb
Ruby
mit
1,815
#Bridge模式 ##作用: 将抽象部分与它的实现部分分离,使它们都可以独立地变化。 ##UML结构图: ![UML结构图](./uml.png) 可以看出,这个系统含有两个等级结构,也就是: * 由抽象化角色和修正抽象化角色组成的抽象化等级结构。 * 由实现化角色和两个具体实现化角色所组成的实现化等级结构。 桥梁模式所涉及的角色有: * 抽象化(Abstraction)角色:抽象化给出的定义,并保存一个对实现化对象的引用。 * 修正抽象化(Refined Abstraction)角色:扩展抽象化角色,改变和修正父类对抽象化的定义。 * 实现化(Implementor)角色:这个角色给出实现化角色的接口,但不给出具体的实现。必须指出的是,这个接口不一定和抽象化角色的接口定义相同,实际上,这两个接口可以非常不一样。实现化角色应当只给出底层操作,而抽象化角色应当只给出基于底层操作的更高一层的操作。 * 具体实现化(Concrete Implementor)角色:这个角色给出实现化角色接口的具体实现。 ##抽象基类: 1. Abstraction:某个抽象类,它的实现方式由Implementor完成。 2. Implementor:实现类的抽象基类,定义了实现Abastraction的基本操作,而它的派生类实现这些接口。 ##接口函数: Implementor::OperationImpl:定义了为实现Abstraction需要的基本操作,由Implementor的派生类实现之,而在Abstraction::Operation函数中根据不同的指针多态调用这个函数。 ##解析: Bridge用于将表示和实现解耦,两者可以独立的变化。在Abstraction类中维护一个Implementor类指针,需要采用不同的实现方式的时候只需要传入不同的Implementor派生类就可以了。 Bridge的实现方式其实和Builde十分的相近,可以这么说:本质上是一样的,只是封装的东西不一样罢了。两者的实现都有如下的共同点:抽象出来一个基类,这个基类里面定义了共有的一些行为,形成接口函数(对接口编程而不是对实现编程),这个接口函数在Buildier中是BuildePart函数在Bridge中是OperationImpl函数;其次,聚合一个基类的指针,如Builder模式中Director类聚合了一个Builder基类的指针,而Brige模式中Abstraction类聚合了一个Implementor基类的指针(优先采用聚合而不是继承);而在使用的时候,都把对这个类的使用封装在一个函数中,在Bridge中是封装在Director::Construct函数中,因为装配不同部分的过程是一致的,而在Bridge模式中则是封装在Abstraction::Operation函数中,在这个函数中调用对应的Implementor::OperationImpl函数。就两个模式而言,Builder封装了不同的生成组成部分的方式,而Bridge封装了不同的实现方式。 因此,如果以一些最基本的面向对象的设计原则来分析这些模式的实现的话,还是可以看到很多共同的地方的。 ##六、 在什么情况下应当使用桥梁模式 根据上面的分析,在以下的情况下应当使用桥梁模式: * 如果一个系统需要在构件的抽象化角色和具体化角色之间增加更多的灵活性,避免在两个层次之间建立静态的联系。 * 设计要求实现化角色的任何改变不应当影响客户端,或者说实现化角色的改变对客户端是完全透明的。 * 一个构件有多于一个的抽象化角色和实现化角色,系统需要它们之间进行动态耦合。 * 虽然在系统中使用继承是没有问题的,但是由于抽象化角色和具体化角色需要独立变化,设计要求需要独立管理这两者。
oxnz/design-patterns
src/bridge/bridge.md
Markdown
mit
3,745
<?php /* * This file is part of the FOSUserBundle package. * * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Blog\UserBundle\Form\Type; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\Form\AbstractType; use Symfony\Component\Security\Core\Validator\Constraints\UserPassword; class ChangePasswordFormType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('current_password', 'password', array( 'label' => 'Current Password:', 'translation_domain' => 'FOSUserBundle', 'mapped' => false, 'constraints' => new UserPassword(), )); $builder->add('plainPassword', 'repeated', array( 'type' => 'password', 'options' => array('translation_domain' => 'FOSUserBundle'), 'first_options' => array('label' => 'New Password:'), 'second_options' => array('label' => 'Confirm New Password:'), 'invalid_message' => 'Password mismatch!', )); } public function getParent() { return 'fos_user_change_password'; } public function getName() { return 'blog_user_change_password'; } }
sanorg/blog-symfony
src/Blog/UserBundle/Form/Type/ChangePasswordFormType.php
PHP
mit
1,472
<?php /* * This file is part of Flarum. * * (c) Toby Zerner <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Flarum\Event; use s9e\TextFormatter\Configurator; class ConfigureFormatter { /** * @var Configurator */ public $configurator; /** * @param Configurator $configurator */ public function __construct(Configurator $configurator) { $this->configurator = $configurator; } }
azarro/flarum
vendor/flarum/core/src/Event/ConfigureFormatter.php
PHP
mit
556
<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="UTF-8"> <title>Help Theme</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <link rel="stylesheet" href="css/ui.css"> <style> /* styles for this page only */ </style> <script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script> </head> <body> <div class="ui-library-header"> <h1><a href="index.html">Dash UI Library</a></h1> <h2>Help Theme</h2> </div> <!-- Begin Header Component --> <header class="c-header"> <div class="c-header__logos"> <button aria-label="mobile menu" class="o-button__menu c-header__menu-button js-header__menu-button"></button> <a href="" class="c-header__dash-logo-link"> <img class="c-header__dash-logo-svg" src="images/logo_ucop.svg" alt="UCOP logo"> <img class="c-header__dash-logo-svg" src="images/logo_dash.svg" alt="Dash logo"> </a> </div> <nav class="c-header__nav js-header__nav"> <div class="o-global-search c-header__global-search"> <label class="o-global-search__label" for="search-field-input1">Search</label> <input class="o-global-search__input" id="search-field-input1" type="search" name="[name]" placeholder="Search"> <button aria-label="Submit" class="o-global-search__submit-button"></button> </div> <div class="c-header__nav-group"> <a href="" class="c-header__nav-item">Home</a> <a href="" class="c-header__nav-item--active">Explore Data</a> <a href="" class="c-header__nav-item">Help</a> <div class="o-sites"> <details class="o-showhide o-sites__details" role="group"> <summary class="o-showhide__summary o-sites__summary">More Dash Sites</summary> <div class="o-sites__group"> <span class="o-sites__group-heading">Participating UC Campuses</span> <a href="" class="o-sites__group-item">dash site 1</a> <a href="" class="o-sites__group-item">dash site 2</a> <a href="" class="o-sites__group-item">dash site 3</a> </div> </details> <a href="" class="o-sites__login">Login</a> </div> </div> </nav> </header> <!-- End Header Component --> <div class="c-columns"> <main class="c-columns__content"> <h1 class="o-heading__level1">Help</h1> <p>[Content to go here]</p> </main> <aside class="c-columns__sidebar2"> <b>Sidebar</b> </aside> </div> <footer class="c-footer"> <div class="c-footer__link-group"> <div class="c-footer__nav-group"> <a href="" class="c-footer__nav-item">Explore Data</a> <a href="" class="c-footer__nav-item">Help</a> <a href="" class="c-footer__nav-item">My Datasets</a> <div class="c-footer__logged-in-or-out"> <div class="o-sites"> <details class="o-showhide o-sites__details" role="group"> <summary class="o-showhide__summary o-sites__summary">More Dash Sites</summary> <div class="o-sites__group"> <span class="o-sites__group-heading">Participating UC Campuses</span> <a href="" class="o-sites__group-item">dash site 1</a> <a href="" class="o-sites__group-item">dash site 2</a> <a href="" class="o-sites__group-item">dash site 3</a> </div> </details> <a href="" class="o-sites__login">Login</a> </div> </div> </div> <div class="c-footer__policy-group"> <a href="">Terms of Use</a> <a href="">Privacy Policy</a> <a href="">Accessibility Policy</a> </div> </div> <p>Dash is a collaborative project between X and the UC Curation Center of the <a href="http://www.cdlib.org" class="o-link__primary">California Digital Library</a></p> <p>© The Regents of the University of California</p> </footer> <script src="js/ui.js"></script> </body> </html>
CDLUC3/stash
stash_engine/public/demo/theme_help.html
HTML
mit
3,725
package udp import "v2ray.com/core/common/errors" func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("Transport", "Internet", "UDP") }
ghmajx/v2ray-core
transport/internet/udp/errors.generated.go
GO
mit
174
var x; x = 0; x //=>0 //JavaScript supports several types of values x = 1; //integers x = 0.1; //real x = "Aloha"; //String in quatation marks x = 'Aloha'; //String in single quatations x = true; //boolean x = null; //no value x = undefined; //like null //Math to use Math.pow(2,53) //=>2^53 Math.round(.6) //=>1.0 //... //Positive Infinity Infinity Number.POSITIVE_INFINITY 1/0 Number.MAX_VALUE + 1 //Negative Infinity -Infinity Number.NEGATIVE_INFINITY -1/0 -Number.MAX_VALUE - 1 //NaN NaN Number.NaN 0/0 //Precision you need to know var x = .3 - .2; var y = .2 - .1; x == y; //false: the two values are not the same! x == 0.1; //false y == 0.1; //true //Date and Time var later = new Date(2010, 0, 1, 17, 10, 30); //5:10:30pm, local time var then = new Date(2010, 0, 1); //Jan 1st, 2010 var now = new Date(); //current time //API later.toString(); // => "Fri Jan 01 2010 17:10:30 GMT-0800 (PST)" later.toUTCString(); // => "Sat, 02 Jan 2010 01:10:30 GMT" later.toLocaleDateString(); // => "01/01/2010" later.toLocaleTimeString(); // => "05:10:30 PM" later.toISOString(); // => "2010-01-02T01:10:30.000Z"; ES5 //Text var p = "π"; //π is 1 character with 16-bit codepoint 0x03c0 var e = "e" //e is 1 character with 17-bit codepoint 0x1d452 p.length // => 1 e.length // => 2 "two\nlines" //there are 2 lines //there is only 1 line. "one\ line\ only" //Pattern matching var text = "testing: 1, 2, 3"; var pattern = /\d+/g pattern.test(text) // => true text.search(pattern) // => 9: position of first match text.match(pattern) // => [ "1", "2", "3"]: array of all matches text.replace(pattern, "#") // => "testing: #, #, #" text.split(/\D+/); // => [ "", "1", "2", "3"]: split on non-digits //Wrapper Objects var s = "Aloha"; s.substring(s.indexOf("A"), s.length); //s.length (value) //s.indexOf() (method) var s = "test"; s.len = 4; //s.len undefined var t = s.len; //t = undefined var s = "Aloha" s.toUpperCase(); //return a new string, but dosen't change s s // => "Aloha" var o = {x: 1}; o.x = 2; //change the value of x o.y = 3; //set a new property y var a = [1, 2, 3]; a[0] = 0; //Change the value of the first element a[3] = 4; //Add new element into the array //Compare var a = 3; var b = "3"; a == b // => true: only when the values are the same a === b // => false: cause the type is not the same var a = [], b = []; a == b // => false a === b // => false var a = {x: 1}, b = {x: 1}; a == b // => false a === b // => false var a = []; var b = a; a == b // => true a === b // => true function equalArray(a, b){ if(a.length != b.length) //first check length return false; for(var i = 0; i < a.length; i++) //second check member if(a[i] !== b[i]) return false; return true; }
nicesu/wiki
Programming/JavaScript/Type/Type.js
JavaScript
mit
2,770
var expect = require('expect.js'), mocks = require('mocks'), childProcessMock = require('../lib/mocks').childProcessMock, httpMock = require('../lib/mocks').httpMock, fsMock = require('../lib/mocks').fsMock, unzipMock = require('../lib/mocks').unzipMock, osMock = require('../lib/mocks').osMock, sinon = require('sinon'); var spawnSpy = sinon.spy(childProcessMock.spawn); childProcessMock.spawn = spawnSpy; var jb = mocks.loadFile('./src/JarBinary.js', { http: httpMock, 'fs-extra': fsMock }); var JarBinary = jb.JarBinary; var zb = mocks.loadFile('./src/ZipBinary.js', { https: httpMock, fs: fsMock, unzip: unzipMock }); var ZipBinary = zb.ZipBinary; var bs = mocks.loadFile('./src/BrowserStackTunnel.js', { child_process: childProcessMock, http: httpMock, fs: fsMock, os: osMock, './JarBinary': JarBinary, './ZipBinary': ZipBinary }); var NEW_BINARY_DIR = '/bin/new', NEW_BINARY_FILE = NEW_BINARY_DIR + '/BrowserStackLocal', JAR_FILE = '/bin/BrowserStackTunnel.jar', NEW_JAR_FILE = '/bin/new/BrowserStackTunnel.jar', OSX_BINARY_DIR = '/bin/darwin', OSX_BINARY_FILE = OSX_BINARY_DIR + '/BrowserStackLocal', LINUX_64_BINARY_DIR = '/bin/linux64', LINUX_64_BINARY_FILE = LINUX_64_BINARY_DIR + '/BrowserStackLocal', LINUX_32_BINARY_DIR = '/bin/linux32', LINUX_32_BINARY_FILE = LINUX_32_BINARY_DIR + '/BrowserStackLocal', JAR_URL = 'http://www.browserstack.com/BrowserStackTunnel.jar', OSX_BINARY_URL = 'https://www.browserstack.com/browserstack-local/BrowserStackLocal-darwin-x64.zip', LINUX_64_BINARY_URL = 'https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip', LINUX_32_BINARY_URL = 'https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-ia32.zip', HOST_NAME = 'localhost', PORT = 8080, INVALID_PORT = 8081, SSL_FLAG = 0, KEY = 'This is a fake key', HOST_NAME2 = 'localhost2', PORT2 = 8081, SSL_FLAG2 = 1, PROXY_HOST = 'fakehost.com', PROXY_USER = 'proxyuser', PROXY_PASS = 'proxypass', PROXY_PORT = '1234'; describe('BrowserStackTunnel', function () { 'use strict'; beforeEach(function () { fsMock.fileNameModded = undefined; fsMock.mode = undefined; fsMock.fileNameCreated = undefined; fsMock.fileName = undefined; unzipMock.dirName = undefined; httpMock.url = undefined; osMock._platform = 'unknown'; osMock._arch = 'unknown'; }); it('should error if stopped before started', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.stop(function (error) { expect(error.message).to.be('child not started'); done(); }); }); it('should error if no server listening on the specified host and port', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: INVALID_PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { expect(error.message).to.contain('Could not connect to server'); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **Error: Could not connect to server: ----monkey'); }); it('should error if user provided an invalid key', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { expect(error.message).to.contain('Invalid key'); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **Error: You provided an invalid key ----monkey'); }); it('should error if started when already running', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } browserStackTunnel.start(function (error) { expect(error.message).to.be('child already started'); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **Error: There is another JAR already running ----monkey'); }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should download new jar if prompted that a new version exists as auto download is not compatible with our use of spawn', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameCreated).to.equal(JAR_FILE); expect(fsMock.fileName).to.equal(JAR_FILE); expect(httpMock.url).to.equal(JAR_URL); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **There is a new version of BrowserStackTunnel.jar available on server ----monkey'); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should support multiple hosts', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }, { name: HOST_NAME2, port: PORT2, sslFlag: SSL_FLAG2 }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG + ',' + HOST_NAME2 + ',' + PORT2 + ',' + SSL_FLAG2 ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should use the specified jar file', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG, tunnelIdentifier: 'my_tunnel' }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should support the tunnelIdentifier option', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], tunnelIdentifier: 'my_tunnel', jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG, '-tunnelIdentifier', 'my_tunnel' ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should support the skipCheck option', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], skipCheck: true, jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG, '-skipCheck' ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should support the v (verbose) option', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], v: true, jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG, '-v' ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should support the skipCheck option', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], skipCheck: true, jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG, '-skipCheck' ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); it('should support the proxy options', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], proxyUser: PROXY_USER, proxyPass: PROXY_PASS, proxyPort: PROXY_PORT, proxyHost: PROXY_HOST, jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG, '-proxyHost', PROXY_HOST, '-proxyPort', PROXY_PORT, '-proxyUser', PROXY_USER, '-proxyPass', PROXY_PASS ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); describe('on windows', function () { beforeEach(function () { osMock._platform = 'win32'; osMock._arch = 'x64'; }); it('should download new binary if binary is not present', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: NEW_JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameCreated).to.equal(NEW_JAR_FILE); expect(fsMock.fileName).to.equal(NEW_JAR_FILE); expect(httpMock.url).to.equal(JAR_URL); done(); }); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should download new jar if prompted that a new version exists as auto download is not compatible with our use of spawn', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameCreated).to.equal(JAR_FILE); expect(fsMock.fileName).to.equal(JAR_FILE); expect(httpMock.url).to.equal(JAR_URL); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **There is a new version of BrowserStackTunnel.jar available on server ----monkey'); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should use the specified jar file', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG, tunnelIdentifier: 'my_tunnel' }], jarFile: JAR_FILE }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, 'java', [ '-jar', JAR_FILE, KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); }); describe('on osx', function () { beforeEach(function () { osMock._platform = 'darwin'; osMock._arch = 'x64'; }); it('should download new binary if binary is not present', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], osxBin: NEW_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(NEW_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(NEW_BINARY_DIR); expect(httpMock.url).to.equal(OSX_BINARY_URL); done(); }); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should download new binary if prompted that a new version exists as auto download is not compatible with our use of spawn', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], osxBin: OSX_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(OSX_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(OSX_BINARY_DIR); expect(httpMock.url).to.equal(OSX_BINARY_URL); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **There is a new version of BrowserStackTunnel.jar available on server ----monkey'); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should use the specified bin directory', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG, tunnelIdentifier: 'my_tunnel' }], osxBin: OSX_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, OSX_BINARY_FILE, [ KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); }); describe('on linux x64', function () { beforeEach(function () { osMock._platform = 'linux'; osMock._arch = 'x64'; }); it('should download new binary if binary is not present', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], linux64Bin: NEW_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(NEW_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(NEW_BINARY_DIR); expect(httpMock.url).to.equal(LINUX_64_BINARY_URL); done(); }); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should download new binary if prompted that a new version exists as auto download is not compatible with our use of spawn', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], linux64Bin: LINUX_64_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(LINUX_64_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(LINUX_64_BINARY_DIR); expect(httpMock.url).to.equal(LINUX_64_BINARY_URL); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **There is a new version of BrowserStackTunnel.jar available on server ----monkey'); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should use the specified bin directory', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG, tunnelIdentifier: 'my_tunnel' }], linux64Bin: LINUX_64_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, LINUX_64_BINARY_FILE, [ KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); }); describe('on linux ia32', function () { beforeEach(function () { osMock._platform = 'linux'; osMock._arch = 'ia32'; }); it('should download new binary if binary is not present', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], linux32Bin: NEW_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(NEW_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(NEW_BINARY_DIR); expect(httpMock.url).to.equal(LINUX_32_BINARY_URL); done(); }); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should download new binary if prompted that a new version exists as auto download is not compatible with our use of spawn', function (done) { var browserStackTunnel = new bs.BrowserStackTunnel({ key: 'MONKEY_KEY', hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG }], linux32Bin: LINUX_32_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } expect(fsMock.fileNameModded).to.equal(LINUX_32_BINARY_FILE); expect(fsMock.mode).to.equal('0755'); expect(unzipMock.dirName).to.equal(LINUX_32_BINARY_DIR); expect(httpMock.url).to.equal(LINUX_32_BINARY_URL); done(); }); process.emit('mock:child_process:stdout:data', 'monkey----- **There is a new version of BrowserStackTunnel.jar available on server ----monkey'); setTimeout(function () { process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }, 100); }); it('should use the specified bin directory', function (done) { spawnSpy.reset(); var browserStackTunnel = new bs.BrowserStackTunnel({ key: KEY, hosts: [{ name: HOST_NAME, port: PORT, sslFlag: SSL_FLAG, tunnelIdentifier: 'my_tunnel' }], linux32Bin: LINUX_32_BINARY_DIR }); browserStackTunnel.start(function (error) { if (error) { expect().fail(function () { return error; }); } else if (browserStackTunnel.state === 'started') { sinon.assert.calledOnce(spawnSpy); sinon.assert.calledWithExactly( spawnSpy, LINUX_32_BINARY_FILE, [ KEY, HOST_NAME + ',' + PORT + ',' + SSL_FLAG ] ); done(); } }); process.emit('mock:child_process:stdout:data', 'monkey----- Press Ctrl-C to exit ----monkey'); }); }); after(function () { childProcessMock.cleanUp(); }); });
sekkithub/theneighbourhood
node_modules/karma-browserstack-launcher/node_modules/browserstacktunnel-wrapper/test/src/BrowserStackTunnel.js
JavaScript
mit
24,650
/* * Copyright (c) 2017. MIT-license for Jari Van Melckebeke * Note that there was a lot of educational work in this project, * this project was (or is) used for an assignment from Realdolmen in Belgium. * Please just don't abuse my work */ define([ ], function () { var diacritics = { '\u24B6': 'A', '\uFF21': 'A', '\u00C0': 'A', '\u00C1': 'A', '\u00C2': 'A', '\u1EA6': 'A', '\u1EA4': 'A', '\u1EAA': 'A', '\u1EA8': 'A', '\u00C3': 'A', '\u0100': 'A', '\u0102': 'A', '\u1EB0': 'A', '\u1EAE': 'A', '\u1EB4': 'A', '\u1EB2': 'A', '\u0226': 'A', '\u01E0': 'A', '\u00C4': 'A', '\u01DE': 'A', '\u1EA2': 'A', '\u00C5': 'A', '\u01FA': 'A', '\u01CD': 'A', '\u0200': 'A', '\u0202': 'A', '\u1EA0': 'A', '\u1EAC': 'A', '\u1EB6': 'A', '\u1E00': 'A', '\u0104': 'A', '\u023A': 'A', '\u2C6F': 'A', '\uA732': 'AA', '\u00C6': 'AE', '\u01FC': 'AE', '\u01E2': 'AE', '\uA734': 'AO', '\uA736': 'AU', '\uA738': 'AV', '\uA73A': 'AV', '\uA73C': 'AY', '\u24B7': 'B', '\uFF22': 'B', '\u1E02': 'B', '\u1E04': 'B', '\u1E06': 'B', '\u0243': 'B', '\u0182': 'B', '\u0181': 'B', '\u24B8': 'C', '\uFF23': 'C', '\u0106': 'C', '\u0108': 'C', '\u010A': 'C', '\u010C': 'C', '\u00C7': 'C', '\u1E08': 'C', '\u0187': 'C', '\u023B': 'C', '\uA73E': 'C', '\u24B9': 'D', '\uFF24': 'D', '\u1E0A': 'D', '\u010E': 'D', '\u1E0C': 'D', '\u1E10': 'D', '\u1E12': 'D', '\u1E0E': 'D', '\u0110': 'D', '\u018B': 'D', '\u018A': 'D', '\u0189': 'D', '\uA779': 'D', '\u01F1': 'DZ', '\u01C4': 'DZ', '\u01F2': 'Dz', '\u01C5': 'Dz', '\u24BA': 'E', '\uFF25': 'E', '\u00C8': 'E', '\u00C9': 'E', '\u00CA': 'E', '\u1EC0': 'E', '\u1EBE': 'E', '\u1EC4': 'E', '\u1EC2': 'E', '\u1EBC': 'E', '\u0112': 'E', '\u1E14': 'E', '\u1E16': 'E', '\u0114': 'E', '\u0116': 'E', '\u00CB': 'E', '\u1EBA': 'E', '\u011A': 'E', '\u0204': 'E', '\u0206': 'E', '\u1EB8': 'E', '\u1EC6': 'E', '\u0228': 'E', '\u1E1C': 'E', '\u0118': 'E', '\u1E18': 'E', '\u1E1A': 'E', '\u0190': 'E', '\u018E': 'E', '\u24BB': 'F', '\uFF26': 'F', '\u1E1E': 'F', '\u0191': 'F', '\uA77B': 'F', '\u24BC': 'G', '\uFF27': 'G', '\u01F4': 'G', '\u011C': 'G', '\u1E20': 'G', '\u011E': 'G', '\u0120': 'G', '\u01E6': 'G', '\u0122': 'G', '\u01E4': 'G', '\u0193': 'G', '\uA7A0': 'G', '\uA77D': 'G', '\uA77E': 'G', '\u24BD': 'H', '\uFF28': 'H', '\u0124': 'H', '\u1E22': 'H', '\u1E26': 'H', '\u021E': 'H', '\u1E24': 'H', '\u1E28': 'H', '\u1E2A': 'H', '\u0126': 'H', '\u2C67': 'H', '\u2C75': 'H', '\uA78D': 'H', '\u24BE': 'I', '\uFF29': 'I', '\u00CC': 'I', '\u00CD': 'I', '\u00CE': 'I', '\u0128': 'I', '\u012A': 'I', '\u012C': 'I', '\u0130': 'I', '\u00CF': 'I', '\u1E2E': 'I', '\u1EC8': 'I', '\u01CF': 'I', '\u0208': 'I', '\u020A': 'I', '\u1ECA': 'I', '\u012E': 'I', '\u1E2C': 'I', '\u0197': 'I', '\u24BF': 'J', '\uFF2A': 'J', '\u0134': 'J', '\u0248': 'J', '\u24C0': 'K', '\uFF2B': 'K', '\u1E30': 'K', '\u01E8': 'K', '\u1E32': 'K', '\u0136': 'K', '\u1E34': 'K', '\u0198': 'K', '\u2C69': 'K', '\uA740': 'K', '\uA742': 'K', '\uA744': 'K', '\uA7A2': 'K', '\u24C1': 'L', '\uFF2C': 'L', '\u013F': 'L', '\u0139': 'L', '\u013D': 'L', '\u1E36': 'L', '\u1E38': 'L', '\u013B': 'L', '\u1E3C': 'L', '\u1E3A': 'L', '\u0141': 'L', '\u023D': 'L', '\u2C62': 'L', '\u2C60': 'L', '\uA748': 'L', '\uA746': 'L', '\uA780': 'L', '\u01C7': 'LJ', '\u01C8': 'Lj', '\u24C2': 'M', '\uFF2D': 'M', '\u1E3E': 'M', '\u1E40': 'M', '\u1E42': 'M', '\u2C6E': 'M', '\u019C': 'M', '\u24C3': 'N', '\uFF2E': 'N', '\u01F8': 'N', '\u0143': 'N', '\u00D1': 'N', '\u1E44': 'N', '\u0147': 'N', '\u1E46': 'N', '\u0145': 'N', '\u1E4A': 'N', '\u1E48': 'N', '\u0220': 'N', '\u019D': 'N', '\uA790': 'N', '\uA7A4': 'N', '\u01CA': 'NJ', '\u01CB': 'Nj', '\u24C4': 'O', '\uFF2F': 'O', '\u00D2': 'O', '\u00D3': 'O', '\u00D4': 'O', '\u1ED2': 'O', '\u1ED0': 'O', '\u1ED6': 'O', '\u1ED4': 'O', '\u00D5': 'O', '\u1E4C': 'O', '\u022C': 'O', '\u1E4E': 'O', '\u014C': 'O', '\u1E50': 'O', '\u1E52': 'O', '\u014E': 'O', '\u022E': 'O', '\u0230': 'O', '\u00D6': 'O', '\u022A': 'O', '\u1ECE': 'O', '\u0150': 'O', '\u01D1': 'O', '\u020C': 'O', '\u020E': 'O', '\u01A0': 'O', '\u1EDC': 'O', '\u1EDA': 'O', '\u1EE0': 'O', '\u1EDE': 'O', '\u1EE2': 'O', '\u1ECC': 'O', '\u1ED8': 'O', '\u01EA': 'O', '\u01EC': 'O', '\u00D8': 'O', '\u01FE': 'O', '\u0186': 'O', '\u019F': 'O', '\uA74A': 'O', '\uA74C': 'O', '\u01A2': 'OI', '\uA74E': 'OO', '\u0222': 'OU', '\u24C5': 'P', '\uFF30': 'P', '\u1E54': 'P', '\u1E56': 'P', '\u01A4': 'P', '\u2C63': 'P', '\uA750': 'P', '\uA752': 'P', '\uA754': 'P', '\u24C6': 'Q', '\uFF31': 'Q', '\uA756': 'Q', '\uA758': 'Q', '\u024A': 'Q', '\u24C7': 'R', '\uFF32': 'R', '\u0154': 'R', '\u1E58': 'R', '\u0158': 'R', '\u0210': 'R', '\u0212': 'R', '\u1E5A': 'R', '\u1E5C': 'R', '\u0156': 'R', '\u1E5E': 'R', '\u024C': 'R', '\u2C64': 'R', '\uA75A': 'R', '\uA7A6': 'R', '\uA782': 'R', '\u24C8': 'S', '\uFF33': 'S', '\u1E9E': 'S', '\u015A': 'S', '\u1E64': 'S', '\u015C': 'S', '\u1E60': 'S', '\u0160': 'S', '\u1E66': 'S', '\u1E62': 'S', '\u1E68': 'S', '\u0218': 'S', '\u015E': 'S', '\u2C7E': 'S', '\uA7A8': 'S', '\uA784': 'S', '\u24C9': 'T', '\uFF34': 'T', '\u1E6A': 'T', '\u0164': 'T', '\u1E6C': 'T', '\u021A': 'T', '\u0162': 'T', '\u1E70': 'T', '\u1E6E': 'T', '\u0166': 'T', '\u01AC': 'T', '\u01AE': 'T', '\u023E': 'T', '\uA786': 'T', '\uA728': 'TZ', '\u24CA': 'U', '\uFF35': 'U', '\u00D9': 'U', '\u00DA': 'U', '\u00DB': 'U', '\u0168': 'U', '\u1E78': 'U', '\u016A': 'U', '\u1E7A': 'U', '\u016C': 'U', '\u00DC': 'U', '\u01DB': 'U', '\u01D7': 'U', '\u01D5': 'U', '\u01D9': 'U', '\u1EE6': 'U', '\u016E': 'U', '\u0170': 'U', '\u01D3': 'U', '\u0214': 'U', '\u0216': 'U', '\u01AF': 'U', '\u1EEA': 'U', '\u1EE8': 'U', '\u1EEE': 'U', '\u1EEC': 'U', '\u1EF0': 'U', '\u1EE4': 'U', '\u1E72': 'U', '\u0172': 'U', '\u1E76': 'U', '\u1E74': 'U', '\u0244': 'U', '\u24CB': 'V', '\uFF36': 'V', '\u1E7C': 'V', '\u1E7E': 'V', '\u01B2': 'V', '\uA75E': 'V', '\u0245': 'V', '\uA760': 'VY', '\u24CC': 'W', '\uFF37': 'W', '\u1E80': 'W', '\u1E82': 'W', '\u0174': 'W', '\u1E86': 'W', '\u1E84': 'W', '\u1E88': 'W', '\u2C72': 'W', '\u24CD': 'X', '\uFF38': 'X', '\u1E8A': 'X', '\u1E8C': 'X', '\u24CE': 'Y', '\uFF39': 'Y', '\u1EF2': 'Y', '\u00DD': 'Y', '\u0176': 'Y', '\u1EF8': 'Y', '\u0232': 'Y', '\u1E8E': 'Y', '\u0178': 'Y', '\u1EF6': 'Y', '\u1EF4': 'Y', '\u01B3': 'Y', '\u024E': 'Y', '\u1EFE': 'Y', '\u24CF': 'Z', '\uFF3A': 'Z', '\u0179': 'Z', '\u1E90': 'Z', '\u017B': 'Z', '\u017D': 'Z', '\u1E92': 'Z', '\u1E94': 'Z', '\u01B5': 'Z', '\u0224': 'Z', '\u2C7F': 'Z', '\u2C6B': 'Z', '\uA762': 'Z', '\u24D0': 'a', '\uFF41': 'a', '\u1E9A': 'a', '\u00E0': 'a', '\u00E1': 'a', '\u00E2': 'a', '\u1EA7': 'a', '\u1EA5': 'a', '\u1EAB': 'a', '\u1EA9': 'a', '\u00E3': 'a', '\u0101': 'a', '\u0103': 'a', '\u1EB1': 'a', '\u1EAF': 'a', '\u1EB5': 'a', '\u1EB3': 'a', '\u0227': 'a', '\u01E1': 'a', '\u00E4': 'a', '\u01DF': 'a', '\u1EA3': 'a', '\u00E5': 'a', '\u01FB': 'a', '\u01CE': 'a', '\u0201': 'a', '\u0203': 'a', '\u1EA1': 'a', '\u1EAD': 'a', '\u1EB7': 'a', '\u1E01': 'a', '\u0105': 'a', '\u2C65': 'a', '\u0250': 'a', '\uA733': 'aa', '\u00E6': 'ae', '\u01FD': 'ae', '\u01E3': 'ae', '\uA735': 'ao', '\uA737': 'au', '\uA739': 'av', '\uA73B': 'av', '\uA73D': 'ay', '\u24D1': 'b', '\uFF42': 'b', '\u1E03': 'b', '\u1E05': 'b', '\u1E07': 'b', '\u0180': 'b', '\u0183': 'b', '\u0253': 'b', '\u24D2': 'c', '\uFF43': 'c', '\u0107': 'c', '\u0109': 'c', '\u010B': 'c', '\u010D': 'c', '\u00E7': 'c', '\u1E09': 'c', '\u0188': 'c', '\u023C': 'c', '\uA73F': 'c', '\u2184': 'c', '\u24D3': 'd', '\uFF44': 'd', '\u1E0B': 'd', '\u010F': 'd', '\u1E0D': 'd', '\u1E11': 'd', '\u1E13': 'd', '\u1E0F': 'd', '\u0111': 'd', '\u018C': 'd', '\u0256': 'd', '\u0257': 'd', '\uA77A': 'd', '\u01F3': 'dz', '\u01C6': 'dz', '\u24D4': 'e', '\uFF45': 'e', '\u00E8': 'e', '\u00E9': 'e', '\u00EA': 'e', '\u1EC1': 'e', '\u1EBF': 'e', '\u1EC5': 'e', '\u1EC3': 'e', '\u1EBD': 'e', '\u0113': 'e', '\u1E15': 'e', '\u1E17': 'e', '\u0115': 'e', '\u0117': 'e', '\u00EB': 'e', '\u1EBB': 'e', '\u011B': 'e', '\u0205': 'e', '\u0207': 'e', '\u1EB9': 'e', '\u1EC7': 'e', '\u0229': 'e', '\u1E1D': 'e', '\u0119': 'e', '\u1E19': 'e', '\u1E1B': 'e', '\u0247': 'e', '\u025B': 'e', '\u01DD': 'e', '\u24D5': 'f', '\uFF46': 'f', '\u1E1F': 'f', '\u0192': 'f', '\uA77C': 'f', '\u24D6': 'g', '\uFF47': 'g', '\u01F5': 'g', '\u011D': 'g', '\u1E21': 'g', '\u011F': 'g', '\u0121': 'g', '\u01E7': 'g', '\u0123': 'g', '\u01E5': 'g', '\u0260': 'g', '\uA7A1': 'g', '\u1D79': 'g', '\uA77F': 'g', '\u24D7': 'h', '\uFF48': 'h', '\u0125': 'h', '\u1E23': 'h', '\u1E27': 'h', '\u021F': 'h', '\u1E25': 'h', '\u1E29': 'h', '\u1E2B': 'h', '\u1E96': 'h', '\u0127': 'h', '\u2C68': 'h', '\u2C76': 'h', '\u0265': 'h', '\u0195': 'hv', '\u24D8': 'i', '\uFF49': 'i', '\u00EC': 'i', '\u00ED': 'i', '\u00EE': 'i', '\u0129': 'i', '\u012B': 'i', '\u012D': 'i', '\u00EF': 'i', '\u1E2F': 'i', '\u1EC9': 'i', '\u01D0': 'i', '\u0209': 'i', '\u020B': 'i', '\u1ECB': 'i', '\u012F': 'i', '\u1E2D': 'i', '\u0268': 'i', '\u0131': 'i', '\u24D9': 'j', '\uFF4A': 'j', '\u0135': 'j', '\u01F0': 'j', '\u0249': 'j', '\u24DA': 'k', '\uFF4B': 'k', '\u1E31': 'k', '\u01E9': 'k', '\u1E33': 'k', '\u0137': 'k', '\u1E35': 'k', '\u0199': 'k', '\u2C6A': 'k', '\uA741': 'k', '\uA743': 'k', '\uA745': 'k', '\uA7A3': 'k', '\u24DB': 'l', '\uFF4C': 'l', '\u0140': 'l', '\u013A': 'l', '\u013E': 'l', '\u1E37': 'l', '\u1E39': 'l', '\u013C': 'l', '\u1E3D': 'l', '\u1E3B': 'l', '\u017F': 'l', '\u0142': 'l', '\u019A': 'l', '\u026B': 'l', '\u2C61': 'l', '\uA749': 'l', '\uA781': 'l', '\uA747': 'l', '\u01C9': 'lj', '\u24DC': 'm', '\uFF4D': 'm', '\u1E3F': 'm', '\u1E41': 'm', '\u1E43': 'm', '\u0271': 'm', '\u026F': 'm', '\u24DD': 'n', '\uFF4E': 'n', '\u01F9': 'n', '\u0144': 'n', '\u00F1': 'n', '\u1E45': 'n', '\u0148': 'n', '\u1E47': 'n', '\u0146': 'n', '\u1E4B': 'n', '\u1E49': 'n', '\u019E': 'n', '\u0272': 'n', '\u0149': 'n', '\uA791': 'n', '\uA7A5': 'n', '\u01CC': 'nj', '\u24DE': 'o', '\uFF4F': 'o', '\u00F2': 'o', '\u00F3': 'o', '\u00F4': 'o', '\u1ED3': 'o', '\u1ED1': 'o', '\u1ED7': 'o', '\u1ED5': 'o', '\u00F5': 'o', '\u1E4D': 'o', '\u022D': 'o', '\u1E4F': 'o', '\u014D': 'o', '\u1E51': 'o', '\u1E53': 'o', '\u014F': 'o', '\u022F': 'o', '\u0231': 'o', '\u00F6': 'o', '\u022B': 'o', '\u1ECF': 'o', '\u0151': 'o', '\u01D2': 'o', '\u020D': 'o', '\u020F': 'o', '\u01A1': 'o', '\u1EDD': 'o', '\u1EDB': 'o', '\u1EE1': 'o', '\u1EDF': 'o', '\u1EE3': 'o', '\u1ECD': 'o', '\u1ED9': 'o', '\u01EB': 'o', '\u01ED': 'o', '\u00F8': 'o', '\u01FF': 'o', '\u0254': 'o', '\uA74B': 'o', '\uA74D': 'o', '\u0275': 'o', '\u01A3': 'oi', '\u0223': 'ou', '\uA74F': 'oo', '\u24DF': 'p', '\uFF50': 'p', '\u1E55': 'p', '\u1E57': 'p', '\u01A5': 'p', '\u1D7D': 'p', '\uA751': 'p', '\uA753': 'p', '\uA755': 'p', '\u24E0': 'q', '\uFF51': 'q', '\u024B': 'q', '\uA757': 'q', '\uA759': 'q', '\u24E1': 'r', '\uFF52': 'r', '\u0155': 'r', '\u1E59': 'r', '\u0159': 'r', '\u0211': 'r', '\u0213': 'r', '\u1E5B': 'r', '\u1E5D': 'r', '\u0157': 'r', '\u1E5F': 'r', '\u024D': 'r', '\u027D': 'r', '\uA75B': 'r', '\uA7A7': 'r', '\uA783': 'r', '\u24E2': 's', '\uFF53': 's', '\u00DF': 's', '\u015B': 's', '\u1E65': 's', '\u015D': 's', '\u1E61': 's', '\u0161': 's', '\u1E67': 's', '\u1E63': 's', '\u1E69': 's', '\u0219': 's', '\u015F': 's', '\u023F': 's', '\uA7A9': 's', '\uA785': 's', '\u1E9B': 's', '\u24E3': 't', '\uFF54': 't', '\u1E6B': 't', '\u1E97': 't', '\u0165': 't', '\u1E6D': 't', '\u021B': 't', '\u0163': 't', '\u1E71': 't', '\u1E6F': 't', '\u0167': 't', '\u01AD': 't', '\u0288': 't', '\u2C66': 't', '\uA787': 't', '\uA729': 'tz', '\u24E4': 'u', '\uFF55': 'u', '\u00F9': 'u', '\u00FA': 'u', '\u00FB': 'u', '\u0169': 'u', '\u1E79': 'u', '\u016B': 'u', '\u1E7B': 'u', '\u016D': 'u', '\u00FC': 'u', '\u01DC': 'u', '\u01D8': 'u', '\u01D6': 'u', '\u01DA': 'u', '\u1EE7': 'u', '\u016F': 'u', '\u0171': 'u', '\u01D4': 'u', '\u0215': 'u', '\u0217': 'u', '\u01B0': 'u', '\u1EEB': 'u', '\u1EE9': 'u', '\u1EEF': 'u', '\u1EED': 'u', '\u1EF1': 'u', '\u1EE5': 'u', '\u1E73': 'u', '\u0173': 'u', '\u1E77': 'u', '\u1E75': 'u', '\u0289': 'u', '\u24E5': 'v', '\uFF56': 'v', '\u1E7D': 'v', '\u1E7F': 'v', '\u028B': 'v', '\uA75F': 'v', '\u028C': 'v', '\uA761': 'vy', '\u24E6': 'w', '\uFF57': 'w', '\u1E81': 'w', '\u1E83': 'w', '\u0175': 'w', '\u1E87': 'w', '\u1E85': 'w', '\u1E98': 'w', '\u1E89': 'w', '\u2C73': 'w', '\u24E7': 'x', '\uFF58': 'x', '\u1E8B': 'x', '\u1E8D': 'x', '\u24E8': 'y', '\uFF59': 'y', '\u1EF3': 'y', '\u00FD': 'y', '\u0177': 'y', '\u1EF9': 'y', '\u0233': 'y', '\u1E8F': 'y', '\u00FF': 'y', '\u1EF7': 'y', '\u1E99': 'y', '\u1EF5': 'y', '\u01B4': 'y', '\u024F': 'y', '\u1EFF': 'y', '\u24E9': 'z', '\uFF5A': 'z', '\u017A': 'z', '\u1E91': 'z', '\u017C': 'z', '\u017E': 'z', '\u1E93': 'z', '\u1E95': 'z', '\u01B6': 'z', '\u0225': 'z', '\u0240': 'z', '\u2C6C': 'z', '\uA763': 'z', '\u0386': '\u0391', '\u0388': '\u0395', '\u0389': '\u0397', '\u038A': '\u0399', '\u03AA': '\u0399', '\u038C': '\u039F', '\u038E': '\u03A5', '\u03AB': '\u03A5', '\u038F': '\u03A9', '\u03AC': '\u03B1', '\u03AD': '\u03B5', '\u03AE': '\u03B7', '\u03AF': '\u03B9', '\u03CA': '\u03B9', '\u0390': '\u03B9', '\u03CC': '\u03BF', '\u03CD': '\u03C5', '\u03CB': '\u03C5', '\u03B0': '\u03C5', '\u03C9': '\u03C9', '\u03C2': '\u03C3' }; return diacritics; });
N00bface/Real-Dolmen-Stage-Opdrachten
stageopdracht/src/main/resources/static/vendors/select2/src/js/select2/diacritics.js
JavaScript
mit
16,412
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Fixtures.Azure.AcceptanceTestsLro.Models { using Fixtures.Azure; using Fixtures.Azure.AcceptanceTestsLro; using Newtonsoft.Json; using System.Linq; /// <summary> /// Defines headers for deleteAsyncRetryFailed operation. /// </summary> public partial class LROsDeleteAsyncRetryFailedHeadersInner { /// <summary> /// Initializes a new instance of the /// LROsDeleteAsyncRetryFailedHeadersInner class. /// </summary> public LROsDeleteAsyncRetryFailedHeadersInner() { } /// <summary> /// Initializes a new instance of the /// LROsDeleteAsyncRetryFailedHeadersInner class. /// </summary> /// <param name="azureAsyncOperation">Location to poll for result /// status: will be set to /// /lro/deleteasync/retry/failed/operationResults/200</param> /// <param name="location">Location to poll for result status: will be /// set to /lro/deleteasync/retry/failed/operationResults/200</param> /// <param name="retryAfter">Number of milliseconds until the next poll /// should be sent, will be set to zero</param> public LROsDeleteAsyncRetryFailedHeadersInner(string azureAsyncOperation = default(string), string location = default(string), int? retryAfter = default(int?)) { AzureAsyncOperation = azureAsyncOperation; Location = location; RetryAfter = retryAfter; } /// <summary> /// Gets or sets location to poll for result status: will be set to /// /lro/deleteasync/retry/failed/operationResults/200 /// </summary> [JsonProperty(PropertyName = "Azure-AsyncOperation")] public string AzureAsyncOperation { get; set; } /// <summary> /// Gets or sets location to poll for result status: will be set to /// /lro/deleteasync/retry/failed/operationResults/200 /// </summary> [JsonProperty(PropertyName = "Location")] public string Location { get; set; } /// <summary> /// Gets or sets number of milliseconds until the next poll should be /// sent, will be set to zero /// </summary> [JsonProperty(PropertyName = "Retry-After")] public int? RetryAfter { get; set; } } }
annatisch/autorest
src/generator/AutoRest.CSharp.Azure.Fluent.Tests/Expected/AcceptanceTests/Lro/Models/LROsDeleteAsyncRetryFailedHeadersInner.cs
C#
mit
2,653
/**************************************************************************//** * @file efm32tg110f32.h * @brief CMSIS Cortex-M3 Peripheral Access Layer Header File * for EFM EFM32TG110F32 * @version 5.4.0 ****************************************************************************** * # License * <b>Copyright 2017 Silicon Laboratories, Inc. www.silabs.com</b> ****************************************************************************** * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software.@n * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software.@n * 3. This notice may not be removed or altered from any source distribution. * * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Laboratories, Inc. * has no obligation to support this Software. Silicon Laboratories, Inc. is * providing the Software "AS IS", with no express or implied warranties of any * kind, including, but not limited to, any implied warranties of * merchantability or fitness for any particular purpose or warranties against * infringement of any proprietary rights of a third party. * * Silicon Laboratories, Inc. will not be liable for any consequential, * incidental, or special damages, or any other relief, or for any claim by * any third party, arising from your use of this Software. * *****************************************************************************/ #if defined(__ICCARM__) #pragma system_include /* Treat file as system include file. */ #elif defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) #pragma clang system_header /* Treat file as system include file. */ #endif #ifndef EFM32TG110F32_H #define EFM32TG110F32_H #ifdef __cplusplus extern "C" { #endif /**************************************************************************//** * @addtogroup Parts * @{ *****************************************************************************/ /**************************************************************************//** * @defgroup EFM32TG110F32 EFM32TG110F32 * @{ *****************************************************************************/ /** Interrupt Number Definition */ typedef enum IRQn{ /****** Cortex-M3 Processor Exceptions Numbers ********************************************/ NonMaskableInt_IRQn = -14, /*!< -14 Cortex-M3 Non Maskable Interrupt */ HardFault_IRQn = -13, /*!< -13 Cortex-M3 Hard Fault Interrupt */ MemoryManagement_IRQn = -12, /*!< -12 Cortex-M3 Memory Management Interrupt */ BusFault_IRQn = -11, /*!< -11 Cortex-M3 Bus Fault Interrupt */ UsageFault_IRQn = -10, /*!< -10 Cortex-M3 Usage Fault Interrupt */ SVCall_IRQn = -5, /*!< -5 Cortex-M3 SV Call Interrupt */ DebugMonitor_IRQn = -4, /*!< -4 Cortex-M3 Debug Monitor Interrupt */ PendSV_IRQn = -2, /*!< -2 Cortex-M3 Pend SV Interrupt */ SysTick_IRQn = -1, /*!< -1 Cortex-M3 System Tick Interrupt */ /****** EFM32G Peripheral Interrupt Numbers ***********************************************/ DMA_IRQn = 0, /*!< 0 EFM32 DMA Interrupt */ GPIO_EVEN_IRQn = 1, /*!< 1 EFM32 GPIO_EVEN Interrupt */ TIMER0_IRQn = 2, /*!< 2 EFM32 TIMER0 Interrupt */ USART0_RX_IRQn = 3, /*!< 3 EFM32 USART0_RX Interrupt */ USART0_TX_IRQn = 4, /*!< 4 EFM32 USART0_TX Interrupt */ ACMP0_IRQn = 5, /*!< 5 EFM32 ACMP0 Interrupt */ ADC0_IRQn = 6, /*!< 6 EFM32 ADC0 Interrupt */ DAC0_IRQn = 7, /*!< 7 EFM32 DAC0 Interrupt */ I2C0_IRQn = 8, /*!< 8 EFM32 I2C0 Interrupt */ GPIO_ODD_IRQn = 9, /*!< 9 EFM32 GPIO_ODD Interrupt */ TIMER1_IRQn = 10, /*!< 10 EFM32 TIMER1 Interrupt */ USART1_RX_IRQn = 11, /*!< 11 EFM32 USART1_RX Interrupt */ USART1_TX_IRQn = 12, /*!< 12 EFM32 USART1_TX Interrupt */ LESENSE_IRQn = 13, /*!< 13 EFM32 LESENSE Interrupt */ LEUART0_IRQn = 14, /*!< 14 EFM32 LEUART0 Interrupt */ LETIMER0_IRQn = 15, /*!< 15 EFM32 LETIMER0 Interrupt */ PCNT0_IRQn = 16, /*!< 16 EFM32 PCNT0 Interrupt */ RTC_IRQn = 17, /*!< 17 EFM32 RTC Interrupt */ CMU_IRQn = 18, /*!< 18 EFM32 CMU Interrupt */ VCMP_IRQn = 19, /*!< 19 EFM32 VCMP Interrupt */ MSC_IRQn = 21, /*!< 21 EFM32 MSC Interrupt */ AES_IRQn = 22, /*!< 22 EFM32 AES Interrupt */ } IRQn_Type; /**************************************************************************//** * @defgroup EFM32TG110F32_Core EFM32TG110F32 Core * @{ * @brief Processor and Core Peripheral Section *****************************************************************************/ #define __MPU_PRESENT 0 /**< MPU not present */ #define __VTOR_PRESENT 1 /**< Presence of VTOR register in SCB */ #define __NVIC_PRIO_BITS 3 /**< NVIC interrupt priority bits */ #define __Vendor_SysTickConfig 0 /**< Is 1 if different SysTick counter is used */ /** @} End of group EFM32TG110F32_Core */ /**************************************************************************//** * @defgroup EFM32TG110F32_Part EFM32TG110F32 Part * @{ ******************************************************************************/ /** Part family */ #define _EFM32_TINY_FAMILY 1 /**< Tiny Gecko EFM32TG MCU Family */ #define _EFM_DEVICE /**< Silicon Labs EFM-type microcontroller */ #define _SILICON_LABS_32B_SERIES_0 /**< Silicon Labs series number */ #define _SILICON_LABS_32B_SERIES 0 /**< Silicon Labs series number */ #define _SILICON_LABS_GECKO_INTERNAL_SDID 73 /**< Silicon Labs internal use only, may change any time */ #define _SILICON_LABS_GECKO_INTERNAL_SDID_73 /**< Silicon Labs internal use only, may change any time */ #define _SILICON_LABS_32B_PLATFORM_1 /**< @deprecated Silicon Labs platform name */ #define _SILICON_LABS_32B_PLATFORM 1 /**< @deprecated Silicon Labs platform name */ /* If part number is not defined as compiler option, define it */ #if !defined(EFM32TG110F32) #define EFM32TG110F32 1 /**< Tiny Gecko Part */ #endif /** Configure part number */ #define PART_NUMBER "EFM32TG110F32" /**< Part Number */ /** Memory Base addresses and limits */ #define FLASH_MEM_BASE ((uint32_t) 0x0UL) /**< FLASH base address */ #define FLASH_MEM_SIZE ((uint32_t) 0x10000000UL) /**< FLASH available address space */ #define FLASH_MEM_END ((uint32_t) 0xFFFFFFFUL) /**< FLASH end address */ #define FLASH_MEM_BITS ((uint32_t) 0x28UL) /**< FLASH used bits */ #define AES_MEM_BASE ((uint32_t) 0x400E0000UL) /**< AES base address */ #define AES_MEM_SIZE ((uint32_t) 0x400UL) /**< AES available address space */ #define AES_MEM_END ((uint32_t) 0x400E03FFUL) /**< AES end address */ #define AES_MEM_BITS ((uint32_t) 0x10UL) /**< AES used bits */ #define PER_MEM_BASE ((uint32_t) 0x40000000UL) /**< PER base address */ #define PER_MEM_SIZE ((uint32_t) 0xE0000UL) /**< PER available address space */ #define PER_MEM_END ((uint32_t) 0x400DFFFFUL) /**< PER end address */ #define PER_MEM_BITS ((uint32_t) 0x20UL) /**< PER used bits */ #define RAM_MEM_BASE ((uint32_t) 0x20000000UL) /**< RAM base address */ #define RAM_MEM_SIZE ((uint32_t) 0x40000UL) /**< RAM available address space */ #define RAM_MEM_END ((uint32_t) 0x2003FFFFUL) /**< RAM end address */ #define RAM_MEM_BITS ((uint32_t) 0x18UL) /**< RAM used bits */ #define RAM_CODE_MEM_BASE ((uint32_t) 0x10000000UL) /**< RAM_CODE base address */ #define RAM_CODE_MEM_SIZE ((uint32_t) 0x4000UL) /**< RAM_CODE available address space */ #define RAM_CODE_MEM_END ((uint32_t) 0x10003FFFUL) /**< RAM_CODE end address */ #define RAM_CODE_MEM_BITS ((uint32_t) 0x14UL) /**< RAM_CODE used bits */ /** Bit banding area */ #define BITBAND_PER_BASE ((uint32_t) 0x42000000UL) /**< Peripheral Address Space bit-band area */ #define BITBAND_RAM_BASE ((uint32_t) 0x22000000UL) /**< SRAM Address Space bit-band area */ /** Flash and SRAM limits for EFM32TG110F32 */ #define FLASH_BASE (0x00000000UL) /**< Flash Base Address */ #define FLASH_SIZE (0x00008000UL) /**< Available Flash Memory */ #define FLASH_PAGE_SIZE 512U /**< Flash Memory page size */ #define SRAM_BASE (0x20000000UL) /**< SRAM Base Address */ #define SRAM_SIZE (0x00001000UL) /**< Available SRAM Memory */ #define __CM3_REV 0x201 /**< Cortex-M3 Core revision r2p1 */ #define PRS_CHAN_COUNT 8 /**< Number of PRS channels */ #define DMA_CHAN_COUNT 8 /**< Number of DMA channels */ #define EXT_IRQ_COUNT 23 /**< Number of External (NVIC) interrupts */ /** AF channels connect the different on-chip peripherals with the af-mux */ #define AFCHAN_MAX 63U #define AFCHANLOC_MAX 7U /** Analog AF channels */ #define AFACHAN_MAX 47U /* Part number capabilities */ #define ACMP_PRESENT /**< ACMP is available in this part */ #define ACMP_COUNT 2 /**< 2 ACMPs available */ #define USART_PRESENT /**< USART is available in this part */ #define USART_COUNT 2 /**< 2 USARTs available */ #define TIMER_PRESENT /**< TIMER is available in this part */ #define TIMER_COUNT 2 /**< 2 TIMERs available */ #define LEUART_PRESENT /**< LEUART is available in this part */ #define LEUART_COUNT 1 /**< 1 LEUARTs available */ #define LETIMER_PRESENT /**< LETIMER is available in this part */ #define LETIMER_COUNT 1 /**< 1 LETIMERs available */ #define PCNT_PRESENT /**< PCNT is available in this part */ #define PCNT_COUNT 1 /**< 1 PCNTs available */ #define ADC_PRESENT /**< ADC is available in this part */ #define ADC_COUNT 1 /**< 1 ADCs available */ #define DAC_PRESENT /**< DAC is available in this part */ #define DAC_COUNT 1 /**< 1 DACs available */ #define I2C_PRESENT /**< I2C is available in this part */ #define I2C_COUNT 1 /**< 1 I2Cs available */ #define AES_PRESENT /**< AES is available in this part */ #define AES_COUNT 1 /**< 1 AES available */ #define DMA_PRESENT /**< DMA is available in this part */ #define DMA_COUNT 1 /**< 1 DMA available */ #define LE_PRESENT /**< LE is available in this part */ #define LE_COUNT 1 /**< 1 LE available */ #define MSC_PRESENT /**< MSC is available in this part */ #define MSC_COUNT 1 /**< 1 MSC available */ #define EMU_PRESENT /**< EMU is available in this part */ #define EMU_COUNT 1 /**< 1 EMU available */ #define RMU_PRESENT /**< RMU is available in this part */ #define RMU_COUNT 1 /**< 1 RMU available */ #define CMU_PRESENT /**< CMU is available in this part */ #define CMU_COUNT 1 /**< 1 CMU available */ #define LESENSE_PRESENT /**< LESENSE is available in this part */ #define LESENSE_COUNT 1 /**< 1 LESENSE available */ #define RTC_PRESENT /**< RTC is available in this part */ #define RTC_COUNT 1 /**< 1 RTC available */ #define GPIO_PRESENT /**< GPIO is available in this part */ #define GPIO_COUNT 1 /**< 1 GPIO available */ #define VCMP_PRESENT /**< VCMP is available in this part */ #define VCMP_COUNT 1 /**< 1 VCMP available */ #define PRS_PRESENT /**< PRS is available in this part */ #define PRS_COUNT 1 /**< 1 PRS available */ #define OPAMP_PRESENT /**< OPAMP is available in this part */ #define OPAMP_COUNT 1 /**< 1 OPAMP available */ #define HFXTAL_PRESENT /**< HFXTAL is available in this part */ #define HFXTAL_COUNT 1 /**< 1 HFXTAL available */ #define LFXTAL_PRESENT /**< LFXTAL is available in this part */ #define LFXTAL_COUNT 1 /**< 1 LFXTAL available */ #define WDOG_PRESENT /**< WDOG is available in this part */ #define WDOG_COUNT 1 /**< 1 WDOG available */ #define DBG_PRESENT /**< DBG is available in this part */ #define DBG_COUNT 1 /**< 1 DBG available */ #define BOOTLOADER_PRESENT /**< BOOTLOADER is available in this part */ #define BOOTLOADER_COUNT 1 /**< 1 BOOTLOADER available */ #define ANALOG_PRESENT /**< ANALOG is available in this part */ #define ANALOG_COUNT 1 /**< 1 ANALOG available */ #include "core_cm3.h" /* Cortex-M3 processor and core peripherals */ #include "system_efm32tg.h" /* System Header */ /** @} End of group EFM32TG110F32_Part */ /**************************************************************************//** * @defgroup EFM32TG110F32_Peripheral_TypeDefs EFM32TG110F32 Peripheral TypeDefs * @{ * @brief Device Specific Peripheral Register Structures *****************************************************************************/ #include "efm32tg_aes.h" #include "efm32tg_dma_ch.h" #include "efm32tg_dma.h" #include "efm32tg_msc.h" #include "efm32tg_emu.h" #include "efm32tg_rmu.h" /**************************************************************************//** * @defgroup EFM32TG110F32_CMU EFM32TG110F32 CMU * @brief EFM32TG110F32_CMU Register Declaration * @{ *****************************************************************************/ typedef struct { __IOM uint32_t CTRL; /**< CMU Control Register */ __IOM uint32_t HFCORECLKDIV; /**< High Frequency Core Clock Division Register */ __IOM uint32_t HFPERCLKDIV; /**< High Frequency Peripheral Clock Division Register */ __IOM uint32_t HFRCOCTRL; /**< HFRCO Control Register */ __IOM uint32_t LFRCOCTRL; /**< LFRCO Control Register */ __IOM uint32_t AUXHFRCOCTRL; /**< AUXHFRCO Control Register */ __IOM uint32_t CALCTRL; /**< Calibration Control Register */ __IOM uint32_t CALCNT; /**< Calibration Counter Register */ __IOM uint32_t OSCENCMD; /**< Oscillator Enable/Disable Command Register */ __IOM uint32_t CMD; /**< Command Register */ __IOM uint32_t LFCLKSEL; /**< Low Frequency Clock Select Register */ __IM uint32_t STATUS; /**< Status Register */ __IM uint32_t IF; /**< Interrupt Flag Register */ __IOM uint32_t IFS; /**< Interrupt Flag Set Register */ __IOM uint32_t IFC; /**< Interrupt Flag Clear Register */ __IOM uint32_t IEN; /**< Interrupt Enable Register */ __IOM uint32_t HFCORECLKEN0; /**< High Frequency Core Clock Enable Register 0 */ __IOM uint32_t HFPERCLKEN0; /**< High Frequency Peripheral Clock Enable Register 0 */ uint32_t RESERVED0[2]; /**< Reserved for future use **/ __IM uint32_t SYNCBUSY; /**< Synchronization Busy Register */ __IOM uint32_t FREEZE; /**< Freeze Register */ __IOM uint32_t LFACLKEN0; /**< Low Frequency A Clock Enable Register 0 (Async Reg) */ uint32_t RESERVED1[1]; /**< Reserved for future use **/ __IOM uint32_t LFBCLKEN0; /**< Low Frequency B Clock Enable Register 0 (Async Reg) */ uint32_t RESERVED2[1]; /**< Reserved for future use **/ __IOM uint32_t LFAPRESC0; /**< Low Frequency A Prescaler Register 0 (Async Reg) */ uint32_t RESERVED3[1]; /**< Reserved for future use **/ __IOM uint32_t LFBPRESC0; /**< Low Frequency B Prescaler Register 0 (Async Reg) */ uint32_t RESERVED4[1]; /**< Reserved for future use **/ __IOM uint32_t PCNTCTRL; /**< PCNT Control Register */ uint32_t RESERVED5[1]; /**< Reserved for future use **/ __IOM uint32_t ROUTE; /**< I/O Routing Register */ __IOM uint32_t LOCK; /**< Configuration Lock Register */ } CMU_TypeDef; /**< CMU Register Declaration *//** @} */ #include "efm32tg_lesense_st.h" #include "efm32tg_lesense_buf.h" #include "efm32tg_lesense_ch.h" #include "efm32tg_lesense.h" #include "efm32tg_rtc.h" #include "efm32tg_acmp.h" #include "efm32tg_usart.h" #include "efm32tg_timer_cc.h" #include "efm32tg_timer.h" #include "efm32tg_gpio_p.h" #include "efm32tg_gpio.h" #include "efm32tg_vcmp.h" #include "efm32tg_prs_ch.h" #include "efm32tg_prs.h" #include "efm32tg_leuart.h" #include "efm32tg_letimer.h" #include "efm32tg_pcnt.h" #include "efm32tg_adc.h" #include "efm32tg_dac.h" #include "efm32tg_i2c.h" #include "efm32tg_wdog.h" #include "efm32tg_dma_descriptor.h" #include "efm32tg_devinfo.h" #include "efm32tg_romtable.h" #include "efm32tg_calibrate.h" /** @} End of group EFM32TG110F32_Peripheral_TypeDefs */ /**************************************************************************//** * @defgroup EFM32TG110F32_Peripheral_Base EFM32TG110F32 Peripheral Memory Map * @{ *****************************************************************************/ #define AES_BASE (0x400E0000UL) /**< AES base address */ #define DMA_BASE (0x400C2000UL) /**< DMA base address */ #define MSC_BASE (0x400C0000UL) /**< MSC base address */ #define EMU_BASE (0x400C6000UL) /**< EMU base address */ #define RMU_BASE (0x400CA000UL) /**< RMU base address */ #define CMU_BASE (0x400C8000UL) /**< CMU base address */ #define LESENSE_BASE (0x4008C000UL) /**< LESENSE base address */ #define RTC_BASE (0x40080000UL) /**< RTC base address */ #define ACMP0_BASE (0x40001000UL) /**< ACMP0 base address */ #define ACMP1_BASE (0x40001400UL) /**< ACMP1 base address */ #define USART0_BASE (0x4000C000UL) /**< USART0 base address */ #define USART1_BASE (0x4000C400UL) /**< USART1 base address */ #define TIMER0_BASE (0x40010000UL) /**< TIMER0 base address */ #define TIMER1_BASE (0x40010400UL) /**< TIMER1 base address */ #define GPIO_BASE (0x40006000UL) /**< GPIO base address */ #define VCMP_BASE (0x40000000UL) /**< VCMP base address */ #define PRS_BASE (0x400CC000UL) /**< PRS base address */ #define LEUART0_BASE (0x40084000UL) /**< LEUART0 base address */ #define LETIMER0_BASE (0x40082000UL) /**< LETIMER0 base address */ #define PCNT0_BASE (0x40086000UL) /**< PCNT0 base address */ #define ADC0_BASE (0x40002000UL) /**< ADC0 base address */ #define DAC0_BASE (0x40004000UL) /**< DAC0 base address */ #define I2C0_BASE (0x4000A000UL) /**< I2C0 base address */ #define WDOG_BASE (0x40088000UL) /**< WDOG base address */ #define CALIBRATE_BASE (0x0FE08000UL) /**< CALIBRATE base address */ #define DEVINFO_BASE (0x0FE081B0UL) /**< DEVINFO base address */ #define ROMTABLE_BASE (0xE00FFFD0UL) /**< ROMTABLE base address */ #define LOCKBITS_BASE (0x0FE04000UL) /**< Lock-bits page base address */ #define USERDATA_BASE (0x0FE00000UL) /**< User data page base address */ /** @} End of group EFM32TG110F32_Peripheral_Base */ /**************************************************************************//** * @defgroup EFM32TG110F32_Peripheral_Declaration EFM32TG110F32 Peripheral Declarations * @{ *****************************************************************************/ #define AES ((AES_TypeDef *) AES_BASE) /**< AES base pointer */ #define DMA ((DMA_TypeDef *) DMA_BASE) /**< DMA base pointer */ #define MSC ((MSC_TypeDef *) MSC_BASE) /**< MSC base pointer */ #define EMU ((EMU_TypeDef *) EMU_BASE) /**< EMU base pointer */ #define RMU ((RMU_TypeDef *) RMU_BASE) /**< RMU base pointer */ #define CMU ((CMU_TypeDef *) CMU_BASE) /**< CMU base pointer */ #define LESENSE ((LESENSE_TypeDef *) LESENSE_BASE) /**< LESENSE base pointer */ #define RTC ((RTC_TypeDef *) RTC_BASE) /**< RTC base pointer */ #define ACMP0 ((ACMP_TypeDef *) ACMP0_BASE) /**< ACMP0 base pointer */ #define ACMP1 ((ACMP_TypeDef *) ACMP1_BASE) /**< ACMP1 base pointer */ #define USART0 ((USART_TypeDef *) USART0_BASE) /**< USART0 base pointer */ #define USART1 ((USART_TypeDef *) USART1_BASE) /**< USART1 base pointer */ #define TIMER0 ((TIMER_TypeDef *) TIMER0_BASE) /**< TIMER0 base pointer */ #define TIMER1 ((TIMER_TypeDef *) TIMER1_BASE) /**< TIMER1 base pointer */ #define GPIO ((GPIO_TypeDef *) GPIO_BASE) /**< GPIO base pointer */ #define VCMP ((VCMP_TypeDef *) VCMP_BASE) /**< VCMP base pointer */ #define PRS ((PRS_TypeDef *) PRS_BASE) /**< PRS base pointer */ #define LEUART0 ((LEUART_TypeDef *) LEUART0_BASE) /**< LEUART0 base pointer */ #define LETIMER0 ((LETIMER_TypeDef *) LETIMER0_BASE) /**< LETIMER0 base pointer */ #define PCNT0 ((PCNT_TypeDef *) PCNT0_BASE) /**< PCNT0 base pointer */ #define ADC0 ((ADC_TypeDef *) ADC0_BASE) /**< ADC0 base pointer */ #define DAC0 ((DAC_TypeDef *) DAC0_BASE) /**< DAC0 base pointer */ #define I2C0 ((I2C_TypeDef *) I2C0_BASE) /**< I2C0 base pointer */ #define WDOG ((WDOG_TypeDef *) WDOG_BASE) /**< WDOG base pointer */ #define CALIBRATE ((CALIBRATE_TypeDef *) CALIBRATE_BASE) /**< CALIBRATE base pointer */ #define DEVINFO ((DEVINFO_TypeDef *) DEVINFO_BASE) /**< DEVINFO base pointer */ #define ROMTABLE ((ROMTABLE_TypeDef *) ROMTABLE_BASE) /**< ROMTABLE base pointer */ /** @} End of group EFM32TG110F32_Peripheral_Declaration */ /**************************************************************************//** * @defgroup EFM32TG110F32_BitFields EFM32TG110F32 Bit Fields * @{ *****************************************************************************/ #include "efm32tg_prs_signals.h" #include "efm32tg_dmareq.h" #include "efm32tg_dmactrl.h" /**************************************************************************//** * @defgroup EFM32TG110F32_CMU_BitFields EFM32TG110F32_CMU Bit Fields * @{ *****************************************************************************/ /* Bit fields for CMU CTRL */ #define _CMU_CTRL_RESETVALUE 0x000C262CUL /**< Default value for CMU_CTRL */ #define _CMU_CTRL_MASK 0x17FE3EEFUL /**< Mask for CMU_CTRL */ #define _CMU_CTRL_HFXOMODE_SHIFT 0 /**< Shift value for CMU_HFXOMODE */ #define _CMU_CTRL_HFXOMODE_MASK 0x3UL /**< Bit mask for CMU_HFXOMODE */ #define _CMU_CTRL_HFXOMODE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_HFXOMODE_XTAL 0x00000000UL /**< Mode XTAL for CMU_CTRL */ #define _CMU_CTRL_HFXOMODE_BUFEXTCLK 0x00000001UL /**< Mode BUFEXTCLK for CMU_CTRL */ #define _CMU_CTRL_HFXOMODE_DIGEXTCLK 0x00000002UL /**< Mode DIGEXTCLK for CMU_CTRL */ #define CMU_CTRL_HFXOMODE_DEFAULT (_CMU_CTRL_HFXOMODE_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOMODE_XTAL (_CMU_CTRL_HFXOMODE_XTAL << 0) /**< Shifted mode XTAL for CMU_CTRL */ #define CMU_CTRL_HFXOMODE_BUFEXTCLK (_CMU_CTRL_HFXOMODE_BUFEXTCLK << 0) /**< Shifted mode BUFEXTCLK for CMU_CTRL */ #define CMU_CTRL_HFXOMODE_DIGEXTCLK (_CMU_CTRL_HFXOMODE_DIGEXTCLK << 0) /**< Shifted mode DIGEXTCLK for CMU_CTRL */ #define _CMU_CTRL_HFXOBOOST_SHIFT 2 /**< Shift value for CMU_HFXOBOOST */ #define _CMU_CTRL_HFXOBOOST_MASK 0xCUL /**< Bit mask for CMU_HFXOBOOST */ #define _CMU_CTRL_HFXOBOOST_50PCENT 0x00000000UL /**< Mode 50PCENT for CMU_CTRL */ #define _CMU_CTRL_HFXOBOOST_70PCENT 0x00000001UL /**< Mode 70PCENT for CMU_CTRL */ #define _CMU_CTRL_HFXOBOOST_80PCENT 0x00000002UL /**< Mode 80PCENT for CMU_CTRL */ #define _CMU_CTRL_HFXOBOOST_DEFAULT 0x00000003UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_HFXOBOOST_100PCENT 0x00000003UL /**< Mode 100PCENT for CMU_CTRL */ #define CMU_CTRL_HFXOBOOST_50PCENT (_CMU_CTRL_HFXOBOOST_50PCENT << 2) /**< Shifted mode 50PCENT for CMU_CTRL */ #define CMU_CTRL_HFXOBOOST_70PCENT (_CMU_CTRL_HFXOBOOST_70PCENT << 2) /**< Shifted mode 70PCENT for CMU_CTRL */ #define CMU_CTRL_HFXOBOOST_80PCENT (_CMU_CTRL_HFXOBOOST_80PCENT << 2) /**< Shifted mode 80PCENT for CMU_CTRL */ #define CMU_CTRL_HFXOBOOST_DEFAULT (_CMU_CTRL_HFXOBOOST_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOBOOST_100PCENT (_CMU_CTRL_HFXOBOOST_100PCENT << 2) /**< Shifted mode 100PCENT for CMU_CTRL */ #define _CMU_CTRL_HFXOBUFCUR_SHIFT 5 /**< Shift value for CMU_HFXOBUFCUR */ #define _CMU_CTRL_HFXOBUFCUR_MASK 0x60UL /**< Bit mask for CMU_HFXOBUFCUR */ #define _CMU_CTRL_HFXOBUFCUR_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOBUFCUR_DEFAULT (_CMU_CTRL_HFXOBUFCUR_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOGLITCHDETEN (0x1UL << 7) /**< HFXO Glitch Detector Enable */ #define _CMU_CTRL_HFXOGLITCHDETEN_SHIFT 7 /**< Shift value for CMU_HFXOGLITCHDETEN */ #define _CMU_CTRL_HFXOGLITCHDETEN_MASK 0x80UL /**< Bit mask for CMU_HFXOGLITCHDETEN */ #define _CMU_CTRL_HFXOGLITCHDETEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOGLITCHDETEN_DEFAULT (_CMU_CTRL_HFXOGLITCHDETEN_DEFAULT << 7) /**< Shifted mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_HFXOTIMEOUT_SHIFT 9 /**< Shift value for CMU_HFXOTIMEOUT */ #define _CMU_CTRL_HFXOTIMEOUT_MASK 0x600UL /**< Bit mask for CMU_HFXOTIMEOUT */ #define _CMU_CTRL_HFXOTIMEOUT_8CYCLES 0x00000000UL /**< Mode 8CYCLES for CMU_CTRL */ #define _CMU_CTRL_HFXOTIMEOUT_256CYCLES 0x00000001UL /**< Mode 256CYCLES for CMU_CTRL */ #define _CMU_CTRL_HFXOTIMEOUT_1KCYCLES 0x00000002UL /**< Mode 1KCYCLES for CMU_CTRL */ #define _CMU_CTRL_HFXOTIMEOUT_DEFAULT 0x00000003UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_HFXOTIMEOUT_16KCYCLES 0x00000003UL /**< Mode 16KCYCLES for CMU_CTRL */ #define CMU_CTRL_HFXOTIMEOUT_8CYCLES (_CMU_CTRL_HFXOTIMEOUT_8CYCLES << 9) /**< Shifted mode 8CYCLES for CMU_CTRL */ #define CMU_CTRL_HFXOTIMEOUT_256CYCLES (_CMU_CTRL_HFXOTIMEOUT_256CYCLES << 9) /**< Shifted mode 256CYCLES for CMU_CTRL */ #define CMU_CTRL_HFXOTIMEOUT_1KCYCLES (_CMU_CTRL_HFXOTIMEOUT_1KCYCLES << 9) /**< Shifted mode 1KCYCLES for CMU_CTRL */ #define CMU_CTRL_HFXOTIMEOUT_DEFAULT (_CMU_CTRL_HFXOTIMEOUT_DEFAULT << 9) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_HFXOTIMEOUT_16KCYCLES (_CMU_CTRL_HFXOTIMEOUT_16KCYCLES << 9) /**< Shifted mode 16KCYCLES for CMU_CTRL */ #define _CMU_CTRL_LFXOMODE_SHIFT 11 /**< Shift value for CMU_LFXOMODE */ #define _CMU_CTRL_LFXOMODE_MASK 0x1800UL /**< Bit mask for CMU_LFXOMODE */ #define _CMU_CTRL_LFXOMODE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_LFXOMODE_XTAL 0x00000000UL /**< Mode XTAL for CMU_CTRL */ #define _CMU_CTRL_LFXOMODE_BUFEXTCLK 0x00000001UL /**< Mode BUFEXTCLK for CMU_CTRL */ #define _CMU_CTRL_LFXOMODE_DIGEXTCLK 0x00000002UL /**< Mode DIGEXTCLK for CMU_CTRL */ #define CMU_CTRL_LFXOMODE_DEFAULT (_CMU_CTRL_LFXOMODE_DEFAULT << 11) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_LFXOMODE_XTAL (_CMU_CTRL_LFXOMODE_XTAL << 11) /**< Shifted mode XTAL for CMU_CTRL */ #define CMU_CTRL_LFXOMODE_BUFEXTCLK (_CMU_CTRL_LFXOMODE_BUFEXTCLK << 11) /**< Shifted mode BUFEXTCLK for CMU_CTRL */ #define CMU_CTRL_LFXOMODE_DIGEXTCLK (_CMU_CTRL_LFXOMODE_DIGEXTCLK << 11) /**< Shifted mode DIGEXTCLK for CMU_CTRL */ #define CMU_CTRL_LFXOBOOST (0x1UL << 13) /**< LFXO Start-up Boost Current */ #define _CMU_CTRL_LFXOBOOST_SHIFT 13 /**< Shift value for CMU_LFXOBOOST */ #define _CMU_CTRL_LFXOBOOST_MASK 0x2000UL /**< Bit mask for CMU_LFXOBOOST */ #define _CMU_CTRL_LFXOBOOST_70PCENT 0x00000000UL /**< Mode 70PCENT for CMU_CTRL */ #define _CMU_CTRL_LFXOBOOST_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_LFXOBOOST_100PCENT 0x00000001UL /**< Mode 100PCENT for CMU_CTRL */ #define CMU_CTRL_LFXOBOOST_70PCENT (_CMU_CTRL_LFXOBOOST_70PCENT << 13) /**< Shifted mode 70PCENT for CMU_CTRL */ #define CMU_CTRL_LFXOBOOST_DEFAULT (_CMU_CTRL_LFXOBOOST_DEFAULT << 13) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_LFXOBOOST_100PCENT (_CMU_CTRL_LFXOBOOST_100PCENT << 13) /**< Shifted mode 100PCENT for CMU_CTRL */ #define CMU_CTRL_LFXOBUFCUR (0x1UL << 17) /**< LFXO Boost Buffer Current */ #define _CMU_CTRL_LFXOBUFCUR_SHIFT 17 /**< Shift value for CMU_LFXOBUFCUR */ #define _CMU_CTRL_LFXOBUFCUR_MASK 0x20000UL /**< Bit mask for CMU_LFXOBUFCUR */ #define _CMU_CTRL_LFXOBUFCUR_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_LFXOBUFCUR_DEFAULT (_CMU_CTRL_LFXOBUFCUR_DEFAULT << 17) /**< Shifted mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_LFXOTIMEOUT_SHIFT 18 /**< Shift value for CMU_LFXOTIMEOUT */ #define _CMU_CTRL_LFXOTIMEOUT_MASK 0xC0000UL /**< Bit mask for CMU_LFXOTIMEOUT */ #define _CMU_CTRL_LFXOTIMEOUT_8CYCLES 0x00000000UL /**< Mode 8CYCLES for CMU_CTRL */ #define _CMU_CTRL_LFXOTIMEOUT_1KCYCLES 0x00000001UL /**< Mode 1KCYCLES for CMU_CTRL */ #define _CMU_CTRL_LFXOTIMEOUT_16KCYCLES 0x00000002UL /**< Mode 16KCYCLES for CMU_CTRL */ #define _CMU_CTRL_LFXOTIMEOUT_DEFAULT 0x00000003UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_LFXOTIMEOUT_32KCYCLES 0x00000003UL /**< Mode 32KCYCLES for CMU_CTRL */ #define CMU_CTRL_LFXOTIMEOUT_8CYCLES (_CMU_CTRL_LFXOTIMEOUT_8CYCLES << 18) /**< Shifted mode 8CYCLES for CMU_CTRL */ #define CMU_CTRL_LFXOTIMEOUT_1KCYCLES (_CMU_CTRL_LFXOTIMEOUT_1KCYCLES << 18) /**< Shifted mode 1KCYCLES for CMU_CTRL */ #define CMU_CTRL_LFXOTIMEOUT_16KCYCLES (_CMU_CTRL_LFXOTIMEOUT_16KCYCLES << 18) /**< Shifted mode 16KCYCLES for CMU_CTRL */ #define CMU_CTRL_LFXOTIMEOUT_DEFAULT (_CMU_CTRL_LFXOTIMEOUT_DEFAULT << 18) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_LFXOTIMEOUT_32KCYCLES (_CMU_CTRL_LFXOTIMEOUT_32KCYCLES << 18) /**< Shifted mode 32KCYCLES for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_SHIFT 20 /**< Shift value for CMU_CLKOUTSEL0 */ #define _CMU_CTRL_CLKOUTSEL0_MASK 0x700000UL /**< Bit mask for CMU_CLKOUTSEL0 */ #define _CMU_CTRL_CLKOUTSEL0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFRCO 0x00000000UL /**< Mode HFRCO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFXO 0x00000001UL /**< Mode HFXO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFCLK2 0x00000002UL /**< Mode HFCLK2 for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFCLK4 0x00000003UL /**< Mode HFCLK4 for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFCLK8 0x00000004UL /**< Mode HFCLK8 for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_HFCLK16 0x00000005UL /**< Mode HFCLK16 for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_ULFRCO 0x00000006UL /**< Mode ULFRCO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL0_AUXHFRCO 0x00000007UL /**< Mode AUXHFRCO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_DEFAULT (_CMU_CTRL_CLKOUTSEL0_DEFAULT << 20) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFRCO (_CMU_CTRL_CLKOUTSEL0_HFRCO << 20) /**< Shifted mode HFRCO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFXO (_CMU_CTRL_CLKOUTSEL0_HFXO << 20) /**< Shifted mode HFXO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFCLK2 (_CMU_CTRL_CLKOUTSEL0_HFCLK2 << 20) /**< Shifted mode HFCLK2 for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFCLK4 (_CMU_CTRL_CLKOUTSEL0_HFCLK4 << 20) /**< Shifted mode HFCLK4 for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFCLK8 (_CMU_CTRL_CLKOUTSEL0_HFCLK8 << 20) /**< Shifted mode HFCLK8 for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_HFCLK16 (_CMU_CTRL_CLKOUTSEL0_HFCLK16 << 20) /**< Shifted mode HFCLK16 for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_ULFRCO (_CMU_CTRL_CLKOUTSEL0_ULFRCO << 20) /**< Shifted mode ULFRCO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL0_AUXHFRCO (_CMU_CTRL_CLKOUTSEL0_AUXHFRCO << 20) /**< Shifted mode AUXHFRCO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_SHIFT 23 /**< Shift value for CMU_CLKOUTSEL1 */ #define _CMU_CTRL_CLKOUTSEL1_MASK 0x7800000UL /**< Bit mask for CMU_CLKOUTSEL1 */ #define _CMU_CTRL_CLKOUTSEL1_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_LFRCO 0x00000000UL /**< Mode LFRCO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_LFXO 0x00000001UL /**< Mode LFXO for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_HFCLK 0x00000002UL /**< Mode HFCLK for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_LFXOQ 0x00000003UL /**< Mode LFXOQ for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_HFXOQ 0x00000004UL /**< Mode HFXOQ for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_LFRCOQ 0x00000005UL /**< Mode LFRCOQ for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_HFRCOQ 0x00000006UL /**< Mode HFRCOQ for CMU_CTRL */ #define _CMU_CTRL_CLKOUTSEL1_AUXHFRCOQ 0x00000007UL /**< Mode AUXHFRCOQ for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_DEFAULT (_CMU_CTRL_CLKOUTSEL1_DEFAULT << 23) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_LFRCO (_CMU_CTRL_CLKOUTSEL1_LFRCO << 23) /**< Shifted mode LFRCO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_LFXO (_CMU_CTRL_CLKOUTSEL1_LFXO << 23) /**< Shifted mode LFXO for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_HFCLK (_CMU_CTRL_CLKOUTSEL1_HFCLK << 23) /**< Shifted mode HFCLK for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_LFXOQ (_CMU_CTRL_CLKOUTSEL1_LFXOQ << 23) /**< Shifted mode LFXOQ for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_HFXOQ (_CMU_CTRL_CLKOUTSEL1_HFXOQ << 23) /**< Shifted mode HFXOQ for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_LFRCOQ (_CMU_CTRL_CLKOUTSEL1_LFRCOQ << 23) /**< Shifted mode LFRCOQ for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_HFRCOQ (_CMU_CTRL_CLKOUTSEL1_HFRCOQ << 23) /**< Shifted mode HFRCOQ for CMU_CTRL */ #define CMU_CTRL_CLKOUTSEL1_AUXHFRCOQ (_CMU_CTRL_CLKOUTSEL1_AUXHFRCOQ << 23) /**< Shifted mode AUXHFRCOQ for CMU_CTRL */ #define CMU_CTRL_DBGCLK (0x1UL << 28) /**< Debug Clock */ #define _CMU_CTRL_DBGCLK_SHIFT 28 /**< Shift value for CMU_DBGCLK */ #define _CMU_CTRL_DBGCLK_MASK 0x10000000UL /**< Bit mask for CMU_DBGCLK */ #define _CMU_CTRL_DBGCLK_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CTRL */ #define _CMU_CTRL_DBGCLK_AUXHFRCO 0x00000000UL /**< Mode AUXHFRCO for CMU_CTRL */ #define _CMU_CTRL_DBGCLK_HFCLK 0x00000001UL /**< Mode HFCLK for CMU_CTRL */ #define CMU_CTRL_DBGCLK_DEFAULT (_CMU_CTRL_DBGCLK_DEFAULT << 28) /**< Shifted mode DEFAULT for CMU_CTRL */ #define CMU_CTRL_DBGCLK_AUXHFRCO (_CMU_CTRL_DBGCLK_AUXHFRCO << 28) /**< Shifted mode AUXHFRCO for CMU_CTRL */ #define CMU_CTRL_DBGCLK_HFCLK (_CMU_CTRL_DBGCLK_HFCLK << 28) /**< Shifted mode HFCLK for CMU_CTRL */ /* Bit fields for CMU HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_RESETVALUE 0x00000000UL /**< Default value for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_MASK 0x0000000FUL /**< Mask for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_SHIFT 0 /**< Shift value for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_MASK 0xFUL /**< Bit mask for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK 0x00000000UL /**< Mode HFCLK for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK2 0x00000001UL /**< Mode HFCLK2 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK4 0x00000002UL /**< Mode HFCLK4 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK8 0x00000003UL /**< Mode HFCLK8 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK16 0x00000004UL /**< Mode HFCLK16 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK32 0x00000005UL /**< Mode HFCLK32 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK64 0x00000006UL /**< Mode HFCLK64 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK128 0x00000007UL /**< Mode HFCLK128 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK256 0x00000008UL /**< Mode HFCLK256 for CMU_HFCORECLKDIV */ #define _CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK512 0x00000009UL /**< Mode HFCLK512 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_DEFAULT (_CMU_HFCORECLKDIV_HFCORECLKDIV_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK << 0) /**< Shifted mode HFCLK for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK2 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK2 << 0) /**< Shifted mode HFCLK2 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK4 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK4 << 0) /**< Shifted mode HFCLK4 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK8 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK8 << 0) /**< Shifted mode HFCLK8 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK16 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK16 << 0) /**< Shifted mode HFCLK16 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK32 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK32 << 0) /**< Shifted mode HFCLK32 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK64 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK64 << 0) /**< Shifted mode HFCLK64 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK128 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK128 << 0) /**< Shifted mode HFCLK128 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK256 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK256 << 0) /**< Shifted mode HFCLK256 for CMU_HFCORECLKDIV */ #define CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK512 (_CMU_HFCORECLKDIV_HFCORECLKDIV_HFCLK512 << 0) /**< Shifted mode HFCLK512 for CMU_HFCORECLKDIV */ /* Bit fields for CMU HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_RESETVALUE 0x00000100UL /**< Default value for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_MASK 0x0000010FUL /**< Mask for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_SHIFT 0 /**< Shift value for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_MASK 0xFUL /**< Bit mask for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK 0x00000000UL /**< Mode HFCLK for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK2 0x00000001UL /**< Mode HFCLK2 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK4 0x00000002UL /**< Mode HFCLK4 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK8 0x00000003UL /**< Mode HFCLK8 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK16 0x00000004UL /**< Mode HFCLK16 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK32 0x00000005UL /**< Mode HFCLK32 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK64 0x00000006UL /**< Mode HFCLK64 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK128 0x00000007UL /**< Mode HFCLK128 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK256 0x00000008UL /**< Mode HFCLK256 for CMU_HFPERCLKDIV */ #define _CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK512 0x00000009UL /**< Mode HFCLK512 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_DEFAULT (_CMU_HFPERCLKDIV_HFPERCLKDIV_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK << 0) /**< Shifted mode HFCLK for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK2 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK2 << 0) /**< Shifted mode HFCLK2 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK4 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK4 << 0) /**< Shifted mode HFCLK4 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK8 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK8 << 0) /**< Shifted mode HFCLK8 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK16 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK16 << 0) /**< Shifted mode HFCLK16 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK32 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK32 << 0) /**< Shifted mode HFCLK32 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK64 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK64 << 0) /**< Shifted mode HFCLK64 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK128 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK128 << 0) /**< Shifted mode HFCLK128 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK256 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK256 << 0) /**< Shifted mode HFCLK256 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK512 (_CMU_HFPERCLKDIV_HFPERCLKDIV_HFCLK512 << 0) /**< Shifted mode HFCLK512 for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKEN (0x1UL << 8) /**< HFPERCLK Enable */ #define _CMU_HFPERCLKDIV_HFPERCLKEN_SHIFT 8 /**< Shift value for CMU_HFPERCLKEN */ #define _CMU_HFPERCLKDIV_HFPERCLKEN_MASK 0x100UL /**< Bit mask for CMU_HFPERCLKEN */ #define _CMU_HFPERCLKDIV_HFPERCLKEN_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_HFPERCLKDIV */ #define CMU_HFPERCLKDIV_HFPERCLKEN_DEFAULT (_CMU_HFPERCLKDIV_HFPERCLKEN_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_HFPERCLKDIV */ /* Bit fields for CMU HFRCOCTRL */ #define _CMU_HFRCOCTRL_RESETVALUE 0x00000380UL /**< Default value for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_MASK 0x0001F7FFUL /**< Mask for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_TUNING_SHIFT 0 /**< Shift value for CMU_TUNING */ #define _CMU_HFRCOCTRL_TUNING_MASK 0xFFUL /**< Bit mask for CMU_TUNING */ #define _CMU_HFRCOCTRL_TUNING_DEFAULT 0x00000080UL /**< Mode DEFAULT for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_TUNING_DEFAULT (_CMU_HFRCOCTRL_TUNING_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_SHIFT 8 /**< Shift value for CMU_BAND */ #define _CMU_HFRCOCTRL_BAND_MASK 0x700UL /**< Bit mask for CMU_BAND */ #define _CMU_HFRCOCTRL_BAND_1MHZ 0x00000000UL /**< Mode 1MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_7MHZ 0x00000001UL /**< Mode 7MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_11MHZ 0x00000002UL /**< Mode 11MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_DEFAULT 0x00000003UL /**< Mode DEFAULT for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_14MHZ 0x00000003UL /**< Mode 14MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_21MHZ 0x00000004UL /**< Mode 21MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_BAND_28MHZ 0x00000005UL /**< Mode 28MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_1MHZ (_CMU_HFRCOCTRL_BAND_1MHZ << 8) /**< Shifted mode 1MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_7MHZ (_CMU_HFRCOCTRL_BAND_7MHZ << 8) /**< Shifted mode 7MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_11MHZ (_CMU_HFRCOCTRL_BAND_11MHZ << 8) /**< Shifted mode 11MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_DEFAULT (_CMU_HFRCOCTRL_BAND_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_14MHZ (_CMU_HFRCOCTRL_BAND_14MHZ << 8) /**< Shifted mode 14MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_21MHZ (_CMU_HFRCOCTRL_BAND_21MHZ << 8) /**< Shifted mode 21MHZ for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_BAND_28MHZ (_CMU_HFRCOCTRL_BAND_28MHZ << 8) /**< Shifted mode 28MHZ for CMU_HFRCOCTRL */ #define _CMU_HFRCOCTRL_SUDELAY_SHIFT 12 /**< Shift value for CMU_SUDELAY */ #define _CMU_HFRCOCTRL_SUDELAY_MASK 0x1F000UL /**< Bit mask for CMU_SUDELAY */ #define _CMU_HFRCOCTRL_SUDELAY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFRCOCTRL */ #define CMU_HFRCOCTRL_SUDELAY_DEFAULT (_CMU_HFRCOCTRL_SUDELAY_DEFAULT << 12) /**< Shifted mode DEFAULT for CMU_HFRCOCTRL */ /* Bit fields for CMU LFRCOCTRL */ #define _CMU_LFRCOCTRL_RESETVALUE 0x00000040UL /**< Default value for CMU_LFRCOCTRL */ #define _CMU_LFRCOCTRL_MASK 0x0000007FUL /**< Mask for CMU_LFRCOCTRL */ #define _CMU_LFRCOCTRL_TUNING_SHIFT 0 /**< Shift value for CMU_TUNING */ #define _CMU_LFRCOCTRL_TUNING_MASK 0x7FUL /**< Bit mask for CMU_TUNING */ #define _CMU_LFRCOCTRL_TUNING_DEFAULT 0x00000040UL /**< Mode DEFAULT for CMU_LFRCOCTRL */ #define CMU_LFRCOCTRL_TUNING_DEFAULT (_CMU_LFRCOCTRL_TUNING_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_LFRCOCTRL */ /* Bit fields for CMU AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_RESETVALUE 0x00000080UL /**< Default value for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_MASK 0x000007FFUL /**< Mask for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_TUNING_SHIFT 0 /**< Shift value for CMU_TUNING */ #define _CMU_AUXHFRCOCTRL_TUNING_MASK 0xFFUL /**< Bit mask for CMU_TUNING */ #define _CMU_AUXHFRCOCTRL_TUNING_DEFAULT 0x00000080UL /**< Mode DEFAULT for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_TUNING_DEFAULT (_CMU_AUXHFRCOCTRL_TUNING_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_SHIFT 8 /**< Shift value for CMU_BAND */ #define _CMU_AUXHFRCOCTRL_BAND_MASK 0x700UL /**< Bit mask for CMU_BAND */ #define _CMU_AUXHFRCOCTRL_BAND_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_14MHZ 0x00000000UL /**< Mode 14MHZ for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_11MHZ 0x00000001UL /**< Mode 11MHZ for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_7MHZ 0x00000002UL /**< Mode 7MHZ for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_1MHZ 0x00000003UL /**< Mode 1MHZ for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_28MHZ 0x00000006UL /**< Mode 28MHZ for CMU_AUXHFRCOCTRL */ #define _CMU_AUXHFRCOCTRL_BAND_21MHZ 0x00000007UL /**< Mode 21MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_DEFAULT (_CMU_AUXHFRCOCTRL_BAND_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_14MHZ (_CMU_AUXHFRCOCTRL_BAND_14MHZ << 8) /**< Shifted mode 14MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_11MHZ (_CMU_AUXHFRCOCTRL_BAND_11MHZ << 8) /**< Shifted mode 11MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_7MHZ (_CMU_AUXHFRCOCTRL_BAND_7MHZ << 8) /**< Shifted mode 7MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_1MHZ (_CMU_AUXHFRCOCTRL_BAND_1MHZ << 8) /**< Shifted mode 1MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_28MHZ (_CMU_AUXHFRCOCTRL_BAND_28MHZ << 8) /**< Shifted mode 28MHZ for CMU_AUXHFRCOCTRL */ #define CMU_AUXHFRCOCTRL_BAND_21MHZ (_CMU_AUXHFRCOCTRL_BAND_21MHZ << 8) /**< Shifted mode 21MHZ for CMU_AUXHFRCOCTRL */ /* Bit fields for CMU CALCTRL */ #define _CMU_CALCTRL_RESETVALUE 0x00000000UL /**< Default value for CMU_CALCTRL */ #define _CMU_CALCTRL_MASK 0x0000007FUL /**< Mask for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_SHIFT 0 /**< Shift value for CMU_UPSEL */ #define _CMU_CALCTRL_UPSEL_MASK 0x7UL /**< Bit mask for CMU_UPSEL */ #define _CMU_CALCTRL_UPSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_HFXO 0x00000000UL /**< Mode HFXO for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_LFXO 0x00000001UL /**< Mode LFXO for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_HFRCO 0x00000002UL /**< Mode HFRCO for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_LFRCO 0x00000003UL /**< Mode LFRCO for CMU_CALCTRL */ #define _CMU_CALCTRL_UPSEL_AUXHFRCO 0x00000004UL /**< Mode AUXHFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_DEFAULT (_CMU_CALCTRL_UPSEL_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_HFXO (_CMU_CALCTRL_UPSEL_HFXO << 0) /**< Shifted mode HFXO for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_LFXO (_CMU_CALCTRL_UPSEL_LFXO << 0) /**< Shifted mode LFXO for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_HFRCO (_CMU_CALCTRL_UPSEL_HFRCO << 0) /**< Shifted mode HFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_LFRCO (_CMU_CALCTRL_UPSEL_LFRCO << 0) /**< Shifted mode LFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_UPSEL_AUXHFRCO (_CMU_CALCTRL_UPSEL_AUXHFRCO << 0) /**< Shifted mode AUXHFRCO for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_SHIFT 3 /**< Shift value for CMU_DOWNSEL */ #define _CMU_CALCTRL_DOWNSEL_MASK 0x38UL /**< Bit mask for CMU_DOWNSEL */ #define _CMU_CALCTRL_DOWNSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_HFCLK 0x00000000UL /**< Mode HFCLK for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_HFXO 0x00000001UL /**< Mode HFXO for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_LFXO 0x00000002UL /**< Mode LFXO for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_HFRCO 0x00000003UL /**< Mode HFRCO for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_LFRCO 0x00000004UL /**< Mode LFRCO for CMU_CALCTRL */ #define _CMU_CALCTRL_DOWNSEL_AUXHFRCO 0x00000005UL /**< Mode AUXHFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_DEFAULT (_CMU_CALCTRL_DOWNSEL_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_HFCLK (_CMU_CALCTRL_DOWNSEL_HFCLK << 3) /**< Shifted mode HFCLK for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_HFXO (_CMU_CALCTRL_DOWNSEL_HFXO << 3) /**< Shifted mode HFXO for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_LFXO (_CMU_CALCTRL_DOWNSEL_LFXO << 3) /**< Shifted mode LFXO for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_HFRCO (_CMU_CALCTRL_DOWNSEL_HFRCO << 3) /**< Shifted mode HFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_LFRCO (_CMU_CALCTRL_DOWNSEL_LFRCO << 3) /**< Shifted mode LFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_DOWNSEL_AUXHFRCO (_CMU_CALCTRL_DOWNSEL_AUXHFRCO << 3) /**< Shifted mode AUXHFRCO for CMU_CALCTRL */ #define CMU_CALCTRL_CONT (0x1UL << 6) /**< Continuous Calibration */ #define _CMU_CALCTRL_CONT_SHIFT 6 /**< Shift value for CMU_CONT */ #define _CMU_CALCTRL_CONT_MASK 0x40UL /**< Bit mask for CMU_CONT */ #define _CMU_CALCTRL_CONT_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CALCTRL */ #define CMU_CALCTRL_CONT_DEFAULT (_CMU_CALCTRL_CONT_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_CALCTRL */ /* Bit fields for CMU CALCNT */ #define _CMU_CALCNT_RESETVALUE 0x00000000UL /**< Default value for CMU_CALCNT */ #define _CMU_CALCNT_MASK 0x000FFFFFUL /**< Mask for CMU_CALCNT */ #define _CMU_CALCNT_CALCNT_SHIFT 0 /**< Shift value for CMU_CALCNT */ #define _CMU_CALCNT_CALCNT_MASK 0xFFFFFUL /**< Bit mask for CMU_CALCNT */ #define _CMU_CALCNT_CALCNT_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CALCNT */ #define CMU_CALCNT_CALCNT_DEFAULT (_CMU_CALCNT_CALCNT_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_CALCNT */ /* Bit fields for CMU OSCENCMD */ #define _CMU_OSCENCMD_RESETVALUE 0x00000000UL /**< Default value for CMU_OSCENCMD */ #define _CMU_OSCENCMD_MASK 0x000003FFUL /**< Mask for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFRCOEN (0x1UL << 0) /**< HFRCO Enable */ #define _CMU_OSCENCMD_HFRCOEN_SHIFT 0 /**< Shift value for CMU_HFRCOEN */ #define _CMU_OSCENCMD_HFRCOEN_MASK 0x1UL /**< Bit mask for CMU_HFRCOEN */ #define _CMU_OSCENCMD_HFRCOEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFRCOEN_DEFAULT (_CMU_OSCENCMD_HFRCOEN_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFRCODIS (0x1UL << 1) /**< HFRCO Disable */ #define _CMU_OSCENCMD_HFRCODIS_SHIFT 1 /**< Shift value for CMU_HFRCODIS */ #define _CMU_OSCENCMD_HFRCODIS_MASK 0x2UL /**< Bit mask for CMU_HFRCODIS */ #define _CMU_OSCENCMD_HFRCODIS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFRCODIS_DEFAULT (_CMU_OSCENCMD_HFRCODIS_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFXOEN (0x1UL << 2) /**< HFXO Enable */ #define _CMU_OSCENCMD_HFXOEN_SHIFT 2 /**< Shift value for CMU_HFXOEN */ #define _CMU_OSCENCMD_HFXOEN_MASK 0x4UL /**< Bit mask for CMU_HFXOEN */ #define _CMU_OSCENCMD_HFXOEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFXOEN_DEFAULT (_CMU_OSCENCMD_HFXOEN_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFXODIS (0x1UL << 3) /**< HFXO Disable */ #define _CMU_OSCENCMD_HFXODIS_SHIFT 3 /**< Shift value for CMU_HFXODIS */ #define _CMU_OSCENCMD_HFXODIS_MASK 0x8UL /**< Bit mask for CMU_HFXODIS */ #define _CMU_OSCENCMD_HFXODIS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_HFXODIS_DEFAULT (_CMU_OSCENCMD_HFXODIS_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_AUXHFRCOEN (0x1UL << 4) /**< AUXHFRCO Enable */ #define _CMU_OSCENCMD_AUXHFRCOEN_SHIFT 4 /**< Shift value for CMU_AUXHFRCOEN */ #define _CMU_OSCENCMD_AUXHFRCOEN_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCOEN */ #define _CMU_OSCENCMD_AUXHFRCOEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_AUXHFRCOEN_DEFAULT (_CMU_OSCENCMD_AUXHFRCOEN_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_AUXHFRCODIS (0x1UL << 5) /**< AUXHFRCO Disable */ #define _CMU_OSCENCMD_AUXHFRCODIS_SHIFT 5 /**< Shift value for CMU_AUXHFRCODIS */ #define _CMU_OSCENCMD_AUXHFRCODIS_MASK 0x20UL /**< Bit mask for CMU_AUXHFRCODIS */ #define _CMU_OSCENCMD_AUXHFRCODIS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_AUXHFRCODIS_DEFAULT (_CMU_OSCENCMD_AUXHFRCODIS_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFRCOEN (0x1UL << 6) /**< LFRCO Enable */ #define _CMU_OSCENCMD_LFRCOEN_SHIFT 6 /**< Shift value for CMU_LFRCOEN */ #define _CMU_OSCENCMD_LFRCOEN_MASK 0x40UL /**< Bit mask for CMU_LFRCOEN */ #define _CMU_OSCENCMD_LFRCOEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFRCOEN_DEFAULT (_CMU_OSCENCMD_LFRCOEN_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFRCODIS (0x1UL << 7) /**< LFRCO Disable */ #define _CMU_OSCENCMD_LFRCODIS_SHIFT 7 /**< Shift value for CMU_LFRCODIS */ #define _CMU_OSCENCMD_LFRCODIS_MASK 0x80UL /**< Bit mask for CMU_LFRCODIS */ #define _CMU_OSCENCMD_LFRCODIS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFRCODIS_DEFAULT (_CMU_OSCENCMD_LFRCODIS_DEFAULT << 7) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFXOEN (0x1UL << 8) /**< LFXO Enable */ #define _CMU_OSCENCMD_LFXOEN_SHIFT 8 /**< Shift value for CMU_LFXOEN */ #define _CMU_OSCENCMD_LFXOEN_MASK 0x100UL /**< Bit mask for CMU_LFXOEN */ #define _CMU_OSCENCMD_LFXOEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFXOEN_DEFAULT (_CMU_OSCENCMD_LFXOEN_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFXODIS (0x1UL << 9) /**< LFXO Disable */ #define _CMU_OSCENCMD_LFXODIS_SHIFT 9 /**< Shift value for CMU_LFXODIS */ #define _CMU_OSCENCMD_LFXODIS_MASK 0x200UL /**< Bit mask for CMU_LFXODIS */ #define _CMU_OSCENCMD_LFXODIS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_OSCENCMD */ #define CMU_OSCENCMD_LFXODIS_DEFAULT (_CMU_OSCENCMD_LFXODIS_DEFAULT << 9) /**< Shifted mode DEFAULT for CMU_OSCENCMD */ /* Bit fields for CMU CMD */ #define _CMU_CMD_RESETVALUE 0x00000000UL /**< Default value for CMU_CMD */ #define _CMU_CMD_MASK 0x0000001FUL /**< Mask for CMU_CMD */ #define _CMU_CMD_HFCLKSEL_SHIFT 0 /**< Shift value for CMU_HFCLKSEL */ #define _CMU_CMD_HFCLKSEL_MASK 0x7UL /**< Bit mask for CMU_HFCLKSEL */ #define _CMU_CMD_HFCLKSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CMD */ #define _CMU_CMD_HFCLKSEL_HFRCO 0x00000001UL /**< Mode HFRCO for CMU_CMD */ #define _CMU_CMD_HFCLKSEL_HFXO 0x00000002UL /**< Mode HFXO for CMU_CMD */ #define _CMU_CMD_HFCLKSEL_LFRCO 0x00000003UL /**< Mode LFRCO for CMU_CMD */ #define _CMU_CMD_HFCLKSEL_LFXO 0x00000004UL /**< Mode LFXO for CMU_CMD */ #define CMU_CMD_HFCLKSEL_DEFAULT (_CMU_CMD_HFCLKSEL_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_CMD */ #define CMU_CMD_HFCLKSEL_HFRCO (_CMU_CMD_HFCLKSEL_HFRCO << 0) /**< Shifted mode HFRCO for CMU_CMD */ #define CMU_CMD_HFCLKSEL_HFXO (_CMU_CMD_HFCLKSEL_HFXO << 0) /**< Shifted mode HFXO for CMU_CMD */ #define CMU_CMD_HFCLKSEL_LFRCO (_CMU_CMD_HFCLKSEL_LFRCO << 0) /**< Shifted mode LFRCO for CMU_CMD */ #define CMU_CMD_HFCLKSEL_LFXO (_CMU_CMD_HFCLKSEL_LFXO << 0) /**< Shifted mode LFXO for CMU_CMD */ #define CMU_CMD_CALSTART (0x1UL << 3) /**< Calibration Start */ #define _CMU_CMD_CALSTART_SHIFT 3 /**< Shift value for CMU_CALSTART */ #define _CMU_CMD_CALSTART_MASK 0x8UL /**< Bit mask for CMU_CALSTART */ #define _CMU_CMD_CALSTART_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CMD */ #define CMU_CMD_CALSTART_DEFAULT (_CMU_CMD_CALSTART_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_CMD */ #define CMU_CMD_CALSTOP (0x1UL << 4) /**< Calibration Stop */ #define _CMU_CMD_CALSTOP_SHIFT 4 /**< Shift value for CMU_CALSTOP */ #define _CMU_CMD_CALSTOP_MASK 0x10UL /**< Bit mask for CMU_CALSTOP */ #define _CMU_CMD_CALSTOP_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_CMD */ #define CMU_CMD_CALSTOP_DEFAULT (_CMU_CMD_CALSTOP_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_CMD */ /* Bit fields for CMU LFCLKSEL */ #define _CMU_LFCLKSEL_RESETVALUE 0x00000005UL /**< Default value for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_MASK 0x0011000FUL /**< Mask for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFA_SHIFT 0 /**< Shift value for CMU_LFA */ #define _CMU_LFCLKSEL_LFA_MASK 0x3UL /**< Bit mask for CMU_LFA */ #define _CMU_LFCLKSEL_LFA_DISABLED 0x00000000UL /**< Mode DISABLED for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFA_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFA_LFRCO 0x00000001UL /**< Mode LFRCO for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFA_LFXO 0x00000002UL /**< Mode LFXO for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFA_HFCORECLKLEDIV2 0x00000003UL /**< Mode HFCORECLKLEDIV2 for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFA_DISABLED (_CMU_LFCLKSEL_LFA_DISABLED << 0) /**< Shifted mode DISABLED for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFA_DEFAULT (_CMU_LFCLKSEL_LFA_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFA_LFRCO (_CMU_LFCLKSEL_LFA_LFRCO << 0) /**< Shifted mode LFRCO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFA_LFXO (_CMU_LFCLKSEL_LFA_LFXO << 0) /**< Shifted mode LFXO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFA_HFCORECLKLEDIV2 (_CMU_LFCLKSEL_LFA_HFCORECLKLEDIV2 << 0) /**< Shifted mode HFCORECLKLEDIV2 for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFB_SHIFT 2 /**< Shift value for CMU_LFB */ #define _CMU_LFCLKSEL_LFB_MASK 0xCUL /**< Bit mask for CMU_LFB */ #define _CMU_LFCLKSEL_LFB_DISABLED 0x00000000UL /**< Mode DISABLED for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFB_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFB_LFRCO 0x00000001UL /**< Mode LFRCO for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFB_LFXO 0x00000002UL /**< Mode LFXO for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFB_HFCORECLKLEDIV2 0x00000003UL /**< Mode HFCORECLKLEDIV2 for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFB_DISABLED (_CMU_LFCLKSEL_LFB_DISABLED << 2) /**< Shifted mode DISABLED for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFB_DEFAULT (_CMU_LFCLKSEL_LFB_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFB_LFRCO (_CMU_LFCLKSEL_LFB_LFRCO << 2) /**< Shifted mode LFRCO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFB_LFXO (_CMU_LFCLKSEL_LFB_LFXO << 2) /**< Shifted mode LFXO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFB_HFCORECLKLEDIV2 (_CMU_LFCLKSEL_LFB_HFCORECLKLEDIV2 << 2) /**< Shifted mode HFCORECLKLEDIV2 for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFAE (0x1UL << 16) /**< Clock Select for LFA Extended */ #define _CMU_LFCLKSEL_LFAE_SHIFT 16 /**< Shift value for CMU_LFAE */ #define _CMU_LFCLKSEL_LFAE_MASK 0x10000UL /**< Bit mask for CMU_LFAE */ #define _CMU_LFCLKSEL_LFAE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFAE_DISABLED 0x00000000UL /**< Mode DISABLED for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFAE_ULFRCO 0x00000001UL /**< Mode ULFRCO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFAE_DEFAULT (_CMU_LFCLKSEL_LFAE_DEFAULT << 16) /**< Shifted mode DEFAULT for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFAE_DISABLED (_CMU_LFCLKSEL_LFAE_DISABLED << 16) /**< Shifted mode DISABLED for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFAE_ULFRCO (_CMU_LFCLKSEL_LFAE_ULFRCO << 16) /**< Shifted mode ULFRCO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFBE (0x1UL << 20) /**< Clock Select for LFB Extended */ #define _CMU_LFCLKSEL_LFBE_SHIFT 20 /**< Shift value for CMU_LFBE */ #define _CMU_LFCLKSEL_LFBE_MASK 0x100000UL /**< Bit mask for CMU_LFBE */ #define _CMU_LFCLKSEL_LFBE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFBE_DISABLED 0x00000000UL /**< Mode DISABLED for CMU_LFCLKSEL */ #define _CMU_LFCLKSEL_LFBE_ULFRCO 0x00000001UL /**< Mode ULFRCO for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFBE_DEFAULT (_CMU_LFCLKSEL_LFBE_DEFAULT << 20) /**< Shifted mode DEFAULT for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFBE_DISABLED (_CMU_LFCLKSEL_LFBE_DISABLED << 20) /**< Shifted mode DISABLED for CMU_LFCLKSEL */ #define CMU_LFCLKSEL_LFBE_ULFRCO (_CMU_LFCLKSEL_LFBE_ULFRCO << 20) /**< Shifted mode ULFRCO for CMU_LFCLKSEL */ /* Bit fields for CMU STATUS */ #define _CMU_STATUS_RESETVALUE 0x00000403UL /**< Default value for CMU_STATUS */ #define _CMU_STATUS_MASK 0x00007FFFUL /**< Mask for CMU_STATUS */ #define CMU_STATUS_HFRCOENS (0x1UL << 0) /**< HFRCO Enable Status */ #define _CMU_STATUS_HFRCOENS_SHIFT 0 /**< Shift value for CMU_HFRCOENS */ #define _CMU_STATUS_HFRCOENS_MASK 0x1UL /**< Bit mask for CMU_HFRCOENS */ #define _CMU_STATUS_HFRCOENS_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFRCOENS_DEFAULT (_CMU_STATUS_HFRCOENS_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFRCORDY (0x1UL << 1) /**< HFRCO Ready */ #define _CMU_STATUS_HFRCORDY_SHIFT 1 /**< Shift value for CMU_HFRCORDY */ #define _CMU_STATUS_HFRCORDY_MASK 0x2UL /**< Bit mask for CMU_HFRCORDY */ #define _CMU_STATUS_HFRCORDY_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFRCORDY_DEFAULT (_CMU_STATUS_HFRCORDY_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXOENS (0x1UL << 2) /**< HFXO Enable Status */ #define _CMU_STATUS_HFXOENS_SHIFT 2 /**< Shift value for CMU_HFXOENS */ #define _CMU_STATUS_HFXOENS_MASK 0x4UL /**< Bit mask for CMU_HFXOENS */ #define _CMU_STATUS_HFXOENS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXOENS_DEFAULT (_CMU_STATUS_HFXOENS_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXORDY (0x1UL << 3) /**< HFXO Ready */ #define _CMU_STATUS_HFXORDY_SHIFT 3 /**< Shift value for CMU_HFXORDY */ #define _CMU_STATUS_HFXORDY_MASK 0x8UL /**< Bit mask for CMU_HFXORDY */ #define _CMU_STATUS_HFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXORDY_DEFAULT (_CMU_STATUS_HFXORDY_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_AUXHFRCOENS (0x1UL << 4) /**< AUXHFRCO Enable Status */ #define _CMU_STATUS_AUXHFRCOENS_SHIFT 4 /**< Shift value for CMU_AUXHFRCOENS */ #define _CMU_STATUS_AUXHFRCOENS_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCOENS */ #define _CMU_STATUS_AUXHFRCOENS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_AUXHFRCOENS_DEFAULT (_CMU_STATUS_AUXHFRCOENS_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_AUXHFRCORDY (0x1UL << 5) /**< AUXHFRCO Ready */ #define _CMU_STATUS_AUXHFRCORDY_SHIFT 5 /**< Shift value for CMU_AUXHFRCORDY */ #define _CMU_STATUS_AUXHFRCORDY_MASK 0x20UL /**< Bit mask for CMU_AUXHFRCORDY */ #define _CMU_STATUS_AUXHFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_AUXHFRCORDY_DEFAULT (_CMU_STATUS_AUXHFRCORDY_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCOENS (0x1UL << 6) /**< LFRCO Enable Status */ #define _CMU_STATUS_LFRCOENS_SHIFT 6 /**< Shift value for CMU_LFRCOENS */ #define _CMU_STATUS_LFRCOENS_MASK 0x40UL /**< Bit mask for CMU_LFRCOENS */ #define _CMU_STATUS_LFRCOENS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCOENS_DEFAULT (_CMU_STATUS_LFRCOENS_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCORDY (0x1UL << 7) /**< LFRCO Ready */ #define _CMU_STATUS_LFRCORDY_SHIFT 7 /**< Shift value for CMU_LFRCORDY */ #define _CMU_STATUS_LFRCORDY_MASK 0x80UL /**< Bit mask for CMU_LFRCORDY */ #define _CMU_STATUS_LFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCORDY_DEFAULT (_CMU_STATUS_LFRCORDY_DEFAULT << 7) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXOENS (0x1UL << 8) /**< LFXO Enable Status */ #define _CMU_STATUS_LFXOENS_SHIFT 8 /**< Shift value for CMU_LFXOENS */ #define _CMU_STATUS_LFXOENS_MASK 0x100UL /**< Bit mask for CMU_LFXOENS */ #define _CMU_STATUS_LFXOENS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXOENS_DEFAULT (_CMU_STATUS_LFXOENS_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXORDY (0x1UL << 9) /**< LFXO Ready */ #define _CMU_STATUS_LFXORDY_SHIFT 9 /**< Shift value for CMU_LFXORDY */ #define _CMU_STATUS_LFXORDY_MASK 0x200UL /**< Bit mask for CMU_LFXORDY */ #define _CMU_STATUS_LFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXORDY_DEFAULT (_CMU_STATUS_LFXORDY_DEFAULT << 9) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFRCOSEL (0x1UL << 10) /**< HFRCO Selected */ #define _CMU_STATUS_HFRCOSEL_SHIFT 10 /**< Shift value for CMU_HFRCOSEL */ #define _CMU_STATUS_HFRCOSEL_MASK 0x400UL /**< Bit mask for CMU_HFRCOSEL */ #define _CMU_STATUS_HFRCOSEL_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFRCOSEL_DEFAULT (_CMU_STATUS_HFRCOSEL_DEFAULT << 10) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXOSEL (0x1UL << 11) /**< HFXO Selected */ #define _CMU_STATUS_HFXOSEL_SHIFT 11 /**< Shift value for CMU_HFXOSEL */ #define _CMU_STATUS_HFXOSEL_MASK 0x800UL /**< Bit mask for CMU_HFXOSEL */ #define _CMU_STATUS_HFXOSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_HFXOSEL_DEFAULT (_CMU_STATUS_HFXOSEL_DEFAULT << 11) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCOSEL (0x1UL << 12) /**< LFRCO Selected */ #define _CMU_STATUS_LFRCOSEL_SHIFT 12 /**< Shift value for CMU_LFRCOSEL */ #define _CMU_STATUS_LFRCOSEL_MASK 0x1000UL /**< Bit mask for CMU_LFRCOSEL */ #define _CMU_STATUS_LFRCOSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFRCOSEL_DEFAULT (_CMU_STATUS_LFRCOSEL_DEFAULT << 12) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXOSEL (0x1UL << 13) /**< LFXO Selected */ #define _CMU_STATUS_LFXOSEL_SHIFT 13 /**< Shift value for CMU_LFXOSEL */ #define _CMU_STATUS_LFXOSEL_MASK 0x2000UL /**< Bit mask for CMU_LFXOSEL */ #define _CMU_STATUS_LFXOSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_LFXOSEL_DEFAULT (_CMU_STATUS_LFXOSEL_DEFAULT << 13) /**< Shifted mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_CALBSY (0x1UL << 14) /**< Calibration Busy */ #define _CMU_STATUS_CALBSY_SHIFT 14 /**< Shift value for CMU_CALBSY */ #define _CMU_STATUS_CALBSY_MASK 0x4000UL /**< Bit mask for CMU_CALBSY */ #define _CMU_STATUS_CALBSY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_STATUS */ #define CMU_STATUS_CALBSY_DEFAULT (_CMU_STATUS_CALBSY_DEFAULT << 14) /**< Shifted mode DEFAULT for CMU_STATUS */ /* Bit fields for CMU IF */ #define _CMU_IF_RESETVALUE 0x00000001UL /**< Default value for CMU_IF */ #define _CMU_IF_MASK 0x0000007FUL /**< Mask for CMU_IF */ #define CMU_IF_HFRCORDY (0x1UL << 0) /**< HFRCO Ready Interrupt Flag */ #define _CMU_IF_HFRCORDY_SHIFT 0 /**< Shift value for CMU_HFRCORDY */ #define _CMU_IF_HFRCORDY_MASK 0x1UL /**< Bit mask for CMU_HFRCORDY */ #define _CMU_IF_HFRCORDY_DEFAULT 0x00000001UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_HFRCORDY_DEFAULT (_CMU_IF_HFRCORDY_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_HFXORDY (0x1UL << 1) /**< HFXO Ready Interrupt Flag */ #define _CMU_IF_HFXORDY_SHIFT 1 /**< Shift value for CMU_HFXORDY */ #define _CMU_IF_HFXORDY_MASK 0x2UL /**< Bit mask for CMU_HFXORDY */ #define _CMU_IF_HFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_HFXORDY_DEFAULT (_CMU_IF_HFXORDY_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_LFRCORDY (0x1UL << 2) /**< LFRCO Ready Interrupt Flag */ #define _CMU_IF_LFRCORDY_SHIFT 2 /**< Shift value for CMU_LFRCORDY */ #define _CMU_IF_LFRCORDY_MASK 0x4UL /**< Bit mask for CMU_LFRCORDY */ #define _CMU_IF_LFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_LFRCORDY_DEFAULT (_CMU_IF_LFRCORDY_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_LFXORDY (0x1UL << 3) /**< LFXO Ready Interrupt Flag */ #define _CMU_IF_LFXORDY_SHIFT 3 /**< Shift value for CMU_LFXORDY */ #define _CMU_IF_LFXORDY_MASK 0x8UL /**< Bit mask for CMU_LFXORDY */ #define _CMU_IF_LFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_LFXORDY_DEFAULT (_CMU_IF_LFXORDY_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_AUXHFRCORDY (0x1UL << 4) /**< AUXHFRCO Ready Interrupt Flag */ #define _CMU_IF_AUXHFRCORDY_SHIFT 4 /**< Shift value for CMU_AUXHFRCORDY */ #define _CMU_IF_AUXHFRCORDY_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCORDY */ #define _CMU_IF_AUXHFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_AUXHFRCORDY_DEFAULT (_CMU_IF_AUXHFRCORDY_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_CALRDY (0x1UL << 5) /**< Calibration Ready Interrupt Flag */ #define _CMU_IF_CALRDY_SHIFT 5 /**< Shift value for CMU_CALRDY */ #define _CMU_IF_CALRDY_MASK 0x20UL /**< Bit mask for CMU_CALRDY */ #define _CMU_IF_CALRDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_CALRDY_DEFAULT (_CMU_IF_CALRDY_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_IF */ #define CMU_IF_CALOF (0x1UL << 6) /**< Calibration Overflow Interrupt Flag */ #define _CMU_IF_CALOF_SHIFT 6 /**< Shift value for CMU_CALOF */ #define _CMU_IF_CALOF_MASK 0x40UL /**< Bit mask for CMU_CALOF */ #define _CMU_IF_CALOF_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IF */ #define CMU_IF_CALOF_DEFAULT (_CMU_IF_CALOF_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_IF */ /* Bit fields for CMU IFS */ #define _CMU_IFS_RESETVALUE 0x00000000UL /**< Default value for CMU_IFS */ #define _CMU_IFS_MASK 0x0000007FUL /**< Mask for CMU_IFS */ #define CMU_IFS_HFRCORDY (0x1UL << 0) /**< HFRCO Ready Interrupt Flag Set */ #define _CMU_IFS_HFRCORDY_SHIFT 0 /**< Shift value for CMU_HFRCORDY */ #define _CMU_IFS_HFRCORDY_MASK 0x1UL /**< Bit mask for CMU_HFRCORDY */ #define _CMU_IFS_HFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_HFRCORDY_DEFAULT (_CMU_IFS_HFRCORDY_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_HFXORDY (0x1UL << 1) /**< HFXO Ready Interrupt Flag Set */ #define _CMU_IFS_HFXORDY_SHIFT 1 /**< Shift value for CMU_HFXORDY */ #define _CMU_IFS_HFXORDY_MASK 0x2UL /**< Bit mask for CMU_HFXORDY */ #define _CMU_IFS_HFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_HFXORDY_DEFAULT (_CMU_IFS_HFXORDY_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_LFRCORDY (0x1UL << 2) /**< LFRCO Ready Interrupt Flag Set */ #define _CMU_IFS_LFRCORDY_SHIFT 2 /**< Shift value for CMU_LFRCORDY */ #define _CMU_IFS_LFRCORDY_MASK 0x4UL /**< Bit mask for CMU_LFRCORDY */ #define _CMU_IFS_LFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_LFRCORDY_DEFAULT (_CMU_IFS_LFRCORDY_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_LFXORDY (0x1UL << 3) /**< LFXO Ready Interrupt Flag Set */ #define _CMU_IFS_LFXORDY_SHIFT 3 /**< Shift value for CMU_LFXORDY */ #define _CMU_IFS_LFXORDY_MASK 0x8UL /**< Bit mask for CMU_LFXORDY */ #define _CMU_IFS_LFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_LFXORDY_DEFAULT (_CMU_IFS_LFXORDY_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_AUXHFRCORDY (0x1UL << 4) /**< AUXHFRCO Ready Interrupt Flag Set */ #define _CMU_IFS_AUXHFRCORDY_SHIFT 4 /**< Shift value for CMU_AUXHFRCORDY */ #define _CMU_IFS_AUXHFRCORDY_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCORDY */ #define _CMU_IFS_AUXHFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_AUXHFRCORDY_DEFAULT (_CMU_IFS_AUXHFRCORDY_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_CALRDY (0x1UL << 5) /**< Calibration Ready Interrupt Flag Set */ #define _CMU_IFS_CALRDY_SHIFT 5 /**< Shift value for CMU_CALRDY */ #define _CMU_IFS_CALRDY_MASK 0x20UL /**< Bit mask for CMU_CALRDY */ #define _CMU_IFS_CALRDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_CALRDY_DEFAULT (_CMU_IFS_CALRDY_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_IFS */ #define CMU_IFS_CALOF (0x1UL << 6) /**< Calibration Overflow Interrupt Flag Set */ #define _CMU_IFS_CALOF_SHIFT 6 /**< Shift value for CMU_CALOF */ #define _CMU_IFS_CALOF_MASK 0x40UL /**< Bit mask for CMU_CALOF */ #define _CMU_IFS_CALOF_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFS */ #define CMU_IFS_CALOF_DEFAULT (_CMU_IFS_CALOF_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_IFS */ /* Bit fields for CMU IFC */ #define _CMU_IFC_RESETVALUE 0x00000000UL /**< Default value for CMU_IFC */ #define _CMU_IFC_MASK 0x0000007FUL /**< Mask for CMU_IFC */ #define CMU_IFC_HFRCORDY (0x1UL << 0) /**< HFRCO Ready Interrupt Flag Clear */ #define _CMU_IFC_HFRCORDY_SHIFT 0 /**< Shift value for CMU_HFRCORDY */ #define _CMU_IFC_HFRCORDY_MASK 0x1UL /**< Bit mask for CMU_HFRCORDY */ #define _CMU_IFC_HFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_HFRCORDY_DEFAULT (_CMU_IFC_HFRCORDY_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_HFXORDY (0x1UL << 1) /**< HFXO Ready Interrupt Flag Clear */ #define _CMU_IFC_HFXORDY_SHIFT 1 /**< Shift value for CMU_HFXORDY */ #define _CMU_IFC_HFXORDY_MASK 0x2UL /**< Bit mask for CMU_HFXORDY */ #define _CMU_IFC_HFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_HFXORDY_DEFAULT (_CMU_IFC_HFXORDY_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_LFRCORDY (0x1UL << 2) /**< LFRCO Ready Interrupt Flag Clear */ #define _CMU_IFC_LFRCORDY_SHIFT 2 /**< Shift value for CMU_LFRCORDY */ #define _CMU_IFC_LFRCORDY_MASK 0x4UL /**< Bit mask for CMU_LFRCORDY */ #define _CMU_IFC_LFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_LFRCORDY_DEFAULT (_CMU_IFC_LFRCORDY_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_LFXORDY (0x1UL << 3) /**< LFXO Ready Interrupt Flag Clear */ #define _CMU_IFC_LFXORDY_SHIFT 3 /**< Shift value for CMU_LFXORDY */ #define _CMU_IFC_LFXORDY_MASK 0x8UL /**< Bit mask for CMU_LFXORDY */ #define _CMU_IFC_LFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_LFXORDY_DEFAULT (_CMU_IFC_LFXORDY_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_AUXHFRCORDY (0x1UL << 4) /**< AUXHFRCO Ready Interrupt Flag Clear */ #define _CMU_IFC_AUXHFRCORDY_SHIFT 4 /**< Shift value for CMU_AUXHFRCORDY */ #define _CMU_IFC_AUXHFRCORDY_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCORDY */ #define _CMU_IFC_AUXHFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_AUXHFRCORDY_DEFAULT (_CMU_IFC_AUXHFRCORDY_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_CALRDY (0x1UL << 5) /**< Calibration Ready Interrupt Flag Clear */ #define _CMU_IFC_CALRDY_SHIFT 5 /**< Shift value for CMU_CALRDY */ #define _CMU_IFC_CALRDY_MASK 0x20UL /**< Bit mask for CMU_CALRDY */ #define _CMU_IFC_CALRDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_CALRDY_DEFAULT (_CMU_IFC_CALRDY_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_IFC */ #define CMU_IFC_CALOF (0x1UL << 6) /**< Calibration Overflow Interrupt Flag Clear */ #define _CMU_IFC_CALOF_SHIFT 6 /**< Shift value for CMU_CALOF */ #define _CMU_IFC_CALOF_MASK 0x40UL /**< Bit mask for CMU_CALOF */ #define _CMU_IFC_CALOF_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IFC */ #define CMU_IFC_CALOF_DEFAULT (_CMU_IFC_CALOF_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_IFC */ /* Bit fields for CMU IEN */ #define _CMU_IEN_RESETVALUE 0x00000000UL /**< Default value for CMU_IEN */ #define _CMU_IEN_MASK 0x0000007FUL /**< Mask for CMU_IEN */ #define CMU_IEN_HFRCORDY (0x1UL << 0) /**< HFRCO Ready Interrupt Enable */ #define _CMU_IEN_HFRCORDY_SHIFT 0 /**< Shift value for CMU_HFRCORDY */ #define _CMU_IEN_HFRCORDY_MASK 0x1UL /**< Bit mask for CMU_HFRCORDY */ #define _CMU_IEN_HFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_HFRCORDY_DEFAULT (_CMU_IEN_HFRCORDY_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_HFXORDY (0x1UL << 1) /**< HFXO Ready Interrupt Enable */ #define _CMU_IEN_HFXORDY_SHIFT 1 /**< Shift value for CMU_HFXORDY */ #define _CMU_IEN_HFXORDY_MASK 0x2UL /**< Bit mask for CMU_HFXORDY */ #define _CMU_IEN_HFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_HFXORDY_DEFAULT (_CMU_IEN_HFXORDY_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_LFRCORDY (0x1UL << 2) /**< LFRCO Ready Interrupt Enable */ #define _CMU_IEN_LFRCORDY_SHIFT 2 /**< Shift value for CMU_LFRCORDY */ #define _CMU_IEN_LFRCORDY_MASK 0x4UL /**< Bit mask for CMU_LFRCORDY */ #define _CMU_IEN_LFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_LFRCORDY_DEFAULT (_CMU_IEN_LFRCORDY_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_LFXORDY (0x1UL << 3) /**< LFXO Ready Interrupt Enable */ #define _CMU_IEN_LFXORDY_SHIFT 3 /**< Shift value for CMU_LFXORDY */ #define _CMU_IEN_LFXORDY_MASK 0x8UL /**< Bit mask for CMU_LFXORDY */ #define _CMU_IEN_LFXORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_LFXORDY_DEFAULT (_CMU_IEN_LFXORDY_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_AUXHFRCORDY (0x1UL << 4) /**< AUXHFRCO Ready Interrupt Enable */ #define _CMU_IEN_AUXHFRCORDY_SHIFT 4 /**< Shift value for CMU_AUXHFRCORDY */ #define _CMU_IEN_AUXHFRCORDY_MASK 0x10UL /**< Bit mask for CMU_AUXHFRCORDY */ #define _CMU_IEN_AUXHFRCORDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_AUXHFRCORDY_DEFAULT (_CMU_IEN_AUXHFRCORDY_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_CALRDY (0x1UL << 5) /**< Calibration Ready Interrupt Enable */ #define _CMU_IEN_CALRDY_SHIFT 5 /**< Shift value for CMU_CALRDY */ #define _CMU_IEN_CALRDY_MASK 0x20UL /**< Bit mask for CMU_CALRDY */ #define _CMU_IEN_CALRDY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_CALRDY_DEFAULT (_CMU_IEN_CALRDY_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_IEN */ #define CMU_IEN_CALOF (0x1UL << 6) /**< Calibration Overflow Interrupt Enable */ #define _CMU_IEN_CALOF_SHIFT 6 /**< Shift value for CMU_CALOF */ #define _CMU_IEN_CALOF_MASK 0x40UL /**< Bit mask for CMU_CALOF */ #define _CMU_IEN_CALOF_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_IEN */ #define CMU_IEN_CALOF_DEFAULT (_CMU_IEN_CALOF_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_IEN */ /* Bit fields for CMU HFCORECLKEN0 */ #define _CMU_HFCORECLKEN0_RESETVALUE 0x00000000UL /**< Default value for CMU_HFCORECLKEN0 */ #define _CMU_HFCORECLKEN0_MASK 0x00000007UL /**< Mask for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_AES (0x1UL << 0) /**< Advanced Encryption Standard Accelerator Clock Enable */ #define _CMU_HFCORECLKEN0_AES_SHIFT 0 /**< Shift value for CMU_AES */ #define _CMU_HFCORECLKEN0_AES_MASK 0x1UL /**< Bit mask for CMU_AES */ #define _CMU_HFCORECLKEN0_AES_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_AES_DEFAULT (_CMU_HFCORECLKEN0_AES_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_DMA (0x1UL << 1) /**< Direct Memory Access Controller Clock Enable */ #define _CMU_HFCORECLKEN0_DMA_SHIFT 1 /**< Shift value for CMU_DMA */ #define _CMU_HFCORECLKEN0_DMA_MASK 0x2UL /**< Bit mask for CMU_DMA */ #define _CMU_HFCORECLKEN0_DMA_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_DMA_DEFAULT (_CMU_HFCORECLKEN0_DMA_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_LE (0x1UL << 2) /**< Low Energy Peripheral Interface Clock Enable */ #define _CMU_HFCORECLKEN0_LE_SHIFT 2 /**< Shift value for CMU_LE */ #define _CMU_HFCORECLKEN0_LE_MASK 0x4UL /**< Bit mask for CMU_LE */ #define _CMU_HFCORECLKEN0_LE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFCORECLKEN0 */ #define CMU_HFCORECLKEN0_LE_DEFAULT (_CMU_HFCORECLKEN0_LE_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_HFCORECLKEN0 */ /* Bit fields for CMU HFPERCLKEN0 */ #define _CMU_HFPERCLKEN0_RESETVALUE 0x00000000UL /**< Default value for CMU_HFPERCLKEN0 */ #define _CMU_HFPERCLKEN0_MASK 0x00000FFFUL /**< Mask for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ACMP0 (0x1UL << 0) /**< Analog Comparator 0 Clock Enable */ #define _CMU_HFPERCLKEN0_ACMP0_SHIFT 0 /**< Shift value for CMU_ACMP0 */ #define _CMU_HFPERCLKEN0_ACMP0_MASK 0x1UL /**< Bit mask for CMU_ACMP0 */ #define _CMU_HFPERCLKEN0_ACMP0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ACMP0_DEFAULT (_CMU_HFPERCLKEN0_ACMP0_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ACMP1 (0x1UL << 1) /**< Analog Comparator 1 Clock Enable */ #define _CMU_HFPERCLKEN0_ACMP1_SHIFT 1 /**< Shift value for CMU_ACMP1 */ #define _CMU_HFPERCLKEN0_ACMP1_MASK 0x2UL /**< Bit mask for CMU_ACMP1 */ #define _CMU_HFPERCLKEN0_ACMP1_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ACMP1_DEFAULT (_CMU_HFPERCLKEN0_ACMP1_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_USART0 (0x1UL << 2) /**< Universal Synchronous/Asynchronous Receiver/Transmitter 0 Clock Enable */ #define _CMU_HFPERCLKEN0_USART0_SHIFT 2 /**< Shift value for CMU_USART0 */ #define _CMU_HFPERCLKEN0_USART0_MASK 0x4UL /**< Bit mask for CMU_USART0 */ #define _CMU_HFPERCLKEN0_USART0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_USART0_DEFAULT (_CMU_HFPERCLKEN0_USART0_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_USART1 (0x1UL << 3) /**< Universal Synchronous/Asynchronous Receiver/Transmitter 1 Clock Enable */ #define _CMU_HFPERCLKEN0_USART1_SHIFT 3 /**< Shift value for CMU_USART1 */ #define _CMU_HFPERCLKEN0_USART1_MASK 0x8UL /**< Bit mask for CMU_USART1 */ #define _CMU_HFPERCLKEN0_USART1_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_USART1_DEFAULT (_CMU_HFPERCLKEN0_USART1_DEFAULT << 3) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_TIMER0 (0x1UL << 4) /**< Timer 0 Clock Enable */ #define _CMU_HFPERCLKEN0_TIMER0_SHIFT 4 /**< Shift value for CMU_TIMER0 */ #define _CMU_HFPERCLKEN0_TIMER0_MASK 0x10UL /**< Bit mask for CMU_TIMER0 */ #define _CMU_HFPERCLKEN0_TIMER0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_TIMER0_DEFAULT (_CMU_HFPERCLKEN0_TIMER0_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_TIMER1 (0x1UL << 5) /**< Timer 1 Clock Enable */ #define _CMU_HFPERCLKEN0_TIMER1_SHIFT 5 /**< Shift value for CMU_TIMER1 */ #define _CMU_HFPERCLKEN0_TIMER1_MASK 0x20UL /**< Bit mask for CMU_TIMER1 */ #define _CMU_HFPERCLKEN0_TIMER1_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_TIMER1_DEFAULT (_CMU_HFPERCLKEN0_TIMER1_DEFAULT << 5) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_GPIO (0x1UL << 6) /**< General purpose Input/Output Clock Enable */ #define _CMU_HFPERCLKEN0_GPIO_SHIFT 6 /**< Shift value for CMU_GPIO */ #define _CMU_HFPERCLKEN0_GPIO_MASK 0x40UL /**< Bit mask for CMU_GPIO */ #define _CMU_HFPERCLKEN0_GPIO_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_GPIO_DEFAULT (_CMU_HFPERCLKEN0_GPIO_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_VCMP (0x1UL << 7) /**< Voltage Comparator Clock Enable */ #define _CMU_HFPERCLKEN0_VCMP_SHIFT 7 /**< Shift value for CMU_VCMP */ #define _CMU_HFPERCLKEN0_VCMP_MASK 0x80UL /**< Bit mask for CMU_VCMP */ #define _CMU_HFPERCLKEN0_VCMP_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_VCMP_DEFAULT (_CMU_HFPERCLKEN0_VCMP_DEFAULT << 7) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_PRS (0x1UL << 8) /**< Peripheral Reflex System Clock Enable */ #define _CMU_HFPERCLKEN0_PRS_SHIFT 8 /**< Shift value for CMU_PRS */ #define _CMU_HFPERCLKEN0_PRS_MASK 0x100UL /**< Bit mask for CMU_PRS */ #define _CMU_HFPERCLKEN0_PRS_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_PRS_DEFAULT (_CMU_HFPERCLKEN0_PRS_DEFAULT << 8) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ADC0 (0x1UL << 9) /**< Analog to Digital Converter 0 Clock Enable */ #define _CMU_HFPERCLKEN0_ADC0_SHIFT 9 /**< Shift value for CMU_ADC0 */ #define _CMU_HFPERCLKEN0_ADC0_MASK 0x200UL /**< Bit mask for CMU_ADC0 */ #define _CMU_HFPERCLKEN0_ADC0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_ADC0_DEFAULT (_CMU_HFPERCLKEN0_ADC0_DEFAULT << 9) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_DAC0 (0x1UL << 10) /**< Digital to Analog Converter 0 Clock Enable */ #define _CMU_HFPERCLKEN0_DAC0_SHIFT 10 /**< Shift value for CMU_DAC0 */ #define _CMU_HFPERCLKEN0_DAC0_MASK 0x400UL /**< Bit mask for CMU_DAC0 */ #define _CMU_HFPERCLKEN0_DAC0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_DAC0_DEFAULT (_CMU_HFPERCLKEN0_DAC0_DEFAULT << 10) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_I2C0 (0x1UL << 11) /**< I2C 0 Clock Enable */ #define _CMU_HFPERCLKEN0_I2C0_SHIFT 11 /**< Shift value for CMU_I2C0 */ #define _CMU_HFPERCLKEN0_I2C0_MASK 0x800UL /**< Bit mask for CMU_I2C0 */ #define _CMU_HFPERCLKEN0_I2C0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_HFPERCLKEN0 */ #define CMU_HFPERCLKEN0_I2C0_DEFAULT (_CMU_HFPERCLKEN0_I2C0_DEFAULT << 11) /**< Shifted mode DEFAULT for CMU_HFPERCLKEN0 */ /* Bit fields for CMU SYNCBUSY */ #define _CMU_SYNCBUSY_RESETVALUE 0x00000000UL /**< Default value for CMU_SYNCBUSY */ #define _CMU_SYNCBUSY_MASK 0x00000055UL /**< Mask for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFACLKEN0 (0x1UL << 0) /**< Low Frequency A Clock Enable 0 Busy */ #define _CMU_SYNCBUSY_LFACLKEN0_SHIFT 0 /**< Shift value for CMU_LFACLKEN0 */ #define _CMU_SYNCBUSY_LFACLKEN0_MASK 0x1UL /**< Bit mask for CMU_LFACLKEN0 */ #define _CMU_SYNCBUSY_LFACLKEN0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFACLKEN0_DEFAULT (_CMU_SYNCBUSY_LFACLKEN0_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFAPRESC0 (0x1UL << 2) /**< Low Frequency A Prescaler 0 Busy */ #define _CMU_SYNCBUSY_LFAPRESC0_SHIFT 2 /**< Shift value for CMU_LFAPRESC0 */ #define _CMU_SYNCBUSY_LFAPRESC0_MASK 0x4UL /**< Bit mask for CMU_LFAPRESC0 */ #define _CMU_SYNCBUSY_LFAPRESC0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFAPRESC0_DEFAULT (_CMU_SYNCBUSY_LFAPRESC0_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFBCLKEN0 (0x1UL << 4) /**< Low Frequency B Clock Enable 0 Busy */ #define _CMU_SYNCBUSY_LFBCLKEN0_SHIFT 4 /**< Shift value for CMU_LFBCLKEN0 */ #define _CMU_SYNCBUSY_LFBCLKEN0_MASK 0x10UL /**< Bit mask for CMU_LFBCLKEN0 */ #define _CMU_SYNCBUSY_LFBCLKEN0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFBCLKEN0_DEFAULT (_CMU_SYNCBUSY_LFBCLKEN0_DEFAULT << 4) /**< Shifted mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFBPRESC0 (0x1UL << 6) /**< Low Frequency B Prescaler 0 Busy */ #define _CMU_SYNCBUSY_LFBPRESC0_SHIFT 6 /**< Shift value for CMU_LFBPRESC0 */ #define _CMU_SYNCBUSY_LFBPRESC0_MASK 0x40UL /**< Bit mask for CMU_LFBPRESC0 */ #define _CMU_SYNCBUSY_LFBPRESC0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_SYNCBUSY */ #define CMU_SYNCBUSY_LFBPRESC0_DEFAULT (_CMU_SYNCBUSY_LFBPRESC0_DEFAULT << 6) /**< Shifted mode DEFAULT for CMU_SYNCBUSY */ /* Bit fields for CMU FREEZE */ #define _CMU_FREEZE_RESETVALUE 0x00000000UL /**< Default value for CMU_FREEZE */ #define _CMU_FREEZE_MASK 0x00000001UL /**< Mask for CMU_FREEZE */ #define CMU_FREEZE_REGFREEZE (0x1UL << 0) /**< Register Update Freeze */ #define _CMU_FREEZE_REGFREEZE_SHIFT 0 /**< Shift value for CMU_REGFREEZE */ #define _CMU_FREEZE_REGFREEZE_MASK 0x1UL /**< Bit mask for CMU_REGFREEZE */ #define _CMU_FREEZE_REGFREEZE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_FREEZE */ #define _CMU_FREEZE_REGFREEZE_UPDATE 0x00000000UL /**< Mode UPDATE for CMU_FREEZE */ #define _CMU_FREEZE_REGFREEZE_FREEZE 0x00000001UL /**< Mode FREEZE for CMU_FREEZE */ #define CMU_FREEZE_REGFREEZE_DEFAULT (_CMU_FREEZE_REGFREEZE_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_FREEZE */ #define CMU_FREEZE_REGFREEZE_UPDATE (_CMU_FREEZE_REGFREEZE_UPDATE << 0) /**< Shifted mode UPDATE for CMU_FREEZE */ #define CMU_FREEZE_REGFREEZE_FREEZE (_CMU_FREEZE_REGFREEZE_FREEZE << 0) /**< Shifted mode FREEZE for CMU_FREEZE */ /* Bit fields for CMU LFACLKEN0 */ #define _CMU_LFACLKEN0_RESETVALUE 0x00000000UL /**< Default value for CMU_LFACLKEN0 */ #define _CMU_LFACLKEN0_MASK 0x00000007UL /**< Mask for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_LESENSE (0x1UL << 0) /**< Low Energy Sensor Interface Clock Enable */ #define _CMU_LFACLKEN0_LESENSE_SHIFT 0 /**< Shift value for CMU_LESENSE */ #define _CMU_LFACLKEN0_LESENSE_MASK 0x1UL /**< Bit mask for CMU_LESENSE */ #define _CMU_LFACLKEN0_LESENSE_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_LESENSE_DEFAULT (_CMU_LFACLKEN0_LESENSE_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_RTC (0x1UL << 1) /**< Real-Time Counter Clock Enable */ #define _CMU_LFACLKEN0_RTC_SHIFT 1 /**< Shift value for CMU_RTC */ #define _CMU_LFACLKEN0_RTC_MASK 0x2UL /**< Bit mask for CMU_RTC */ #define _CMU_LFACLKEN0_RTC_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_RTC_DEFAULT (_CMU_LFACLKEN0_RTC_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_LETIMER0 (0x1UL << 2) /**< Low Energy Timer 0 Clock Enable */ #define _CMU_LFACLKEN0_LETIMER0_SHIFT 2 /**< Shift value for CMU_LETIMER0 */ #define _CMU_LFACLKEN0_LETIMER0_MASK 0x4UL /**< Bit mask for CMU_LETIMER0 */ #define _CMU_LFACLKEN0_LETIMER0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFACLKEN0 */ #define CMU_LFACLKEN0_LETIMER0_DEFAULT (_CMU_LFACLKEN0_LETIMER0_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_LFACLKEN0 */ /* Bit fields for CMU LFBCLKEN0 */ #define _CMU_LFBCLKEN0_RESETVALUE 0x00000000UL /**< Default value for CMU_LFBCLKEN0 */ #define _CMU_LFBCLKEN0_MASK 0x00000001UL /**< Mask for CMU_LFBCLKEN0 */ #define CMU_LFBCLKEN0_LEUART0 (0x1UL << 0) /**< Low Energy UART 0 Clock Enable */ #define _CMU_LFBCLKEN0_LEUART0_SHIFT 0 /**< Shift value for CMU_LEUART0 */ #define _CMU_LFBCLKEN0_LEUART0_MASK 0x1UL /**< Bit mask for CMU_LEUART0 */ #define _CMU_LFBCLKEN0_LEUART0_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LFBCLKEN0 */ #define CMU_LFBCLKEN0_LEUART0_DEFAULT (_CMU_LFBCLKEN0_LEUART0_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_LFBCLKEN0 */ /* Bit fields for CMU LFAPRESC0 */ #define _CMU_LFAPRESC0_RESETVALUE 0x00000000UL /**< Default value for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_MASK 0x00000FF3UL /**< Mask for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LESENSE_SHIFT 0 /**< Shift value for CMU_LESENSE */ #define _CMU_LFAPRESC0_LESENSE_MASK 0x3UL /**< Bit mask for CMU_LESENSE */ #define _CMU_LFAPRESC0_LESENSE_DIV1 0x00000000UL /**< Mode DIV1 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LESENSE_DIV2 0x00000001UL /**< Mode DIV2 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LESENSE_DIV4 0x00000002UL /**< Mode DIV4 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LESENSE_DIV8 0x00000003UL /**< Mode DIV8 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LESENSE_DIV1 (_CMU_LFAPRESC0_LESENSE_DIV1 << 0) /**< Shifted mode DIV1 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LESENSE_DIV2 (_CMU_LFAPRESC0_LESENSE_DIV2 << 0) /**< Shifted mode DIV2 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LESENSE_DIV4 (_CMU_LFAPRESC0_LESENSE_DIV4 << 0) /**< Shifted mode DIV4 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LESENSE_DIV8 (_CMU_LFAPRESC0_LESENSE_DIV8 << 0) /**< Shifted mode DIV8 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_SHIFT 4 /**< Shift value for CMU_RTC */ #define _CMU_LFAPRESC0_RTC_MASK 0xF0UL /**< Bit mask for CMU_RTC */ #define _CMU_LFAPRESC0_RTC_DIV1 0x00000000UL /**< Mode DIV1 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV2 0x00000001UL /**< Mode DIV2 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV4 0x00000002UL /**< Mode DIV4 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV8 0x00000003UL /**< Mode DIV8 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV16 0x00000004UL /**< Mode DIV16 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV32 0x00000005UL /**< Mode DIV32 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV64 0x00000006UL /**< Mode DIV64 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV128 0x00000007UL /**< Mode DIV128 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV256 0x00000008UL /**< Mode DIV256 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV512 0x00000009UL /**< Mode DIV512 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV1024 0x0000000AUL /**< Mode DIV1024 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV2048 0x0000000BUL /**< Mode DIV2048 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV4096 0x0000000CUL /**< Mode DIV4096 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV8192 0x0000000DUL /**< Mode DIV8192 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV16384 0x0000000EUL /**< Mode DIV16384 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_RTC_DIV32768 0x0000000FUL /**< Mode DIV32768 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV1 (_CMU_LFAPRESC0_RTC_DIV1 << 4) /**< Shifted mode DIV1 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV2 (_CMU_LFAPRESC0_RTC_DIV2 << 4) /**< Shifted mode DIV2 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV4 (_CMU_LFAPRESC0_RTC_DIV4 << 4) /**< Shifted mode DIV4 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV8 (_CMU_LFAPRESC0_RTC_DIV8 << 4) /**< Shifted mode DIV8 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV16 (_CMU_LFAPRESC0_RTC_DIV16 << 4) /**< Shifted mode DIV16 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV32 (_CMU_LFAPRESC0_RTC_DIV32 << 4) /**< Shifted mode DIV32 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV64 (_CMU_LFAPRESC0_RTC_DIV64 << 4) /**< Shifted mode DIV64 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV128 (_CMU_LFAPRESC0_RTC_DIV128 << 4) /**< Shifted mode DIV128 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV256 (_CMU_LFAPRESC0_RTC_DIV256 << 4) /**< Shifted mode DIV256 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV512 (_CMU_LFAPRESC0_RTC_DIV512 << 4) /**< Shifted mode DIV512 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV1024 (_CMU_LFAPRESC0_RTC_DIV1024 << 4) /**< Shifted mode DIV1024 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV2048 (_CMU_LFAPRESC0_RTC_DIV2048 << 4) /**< Shifted mode DIV2048 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV4096 (_CMU_LFAPRESC0_RTC_DIV4096 << 4) /**< Shifted mode DIV4096 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV8192 (_CMU_LFAPRESC0_RTC_DIV8192 << 4) /**< Shifted mode DIV8192 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV16384 (_CMU_LFAPRESC0_RTC_DIV16384 << 4) /**< Shifted mode DIV16384 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_RTC_DIV32768 (_CMU_LFAPRESC0_RTC_DIV32768 << 4) /**< Shifted mode DIV32768 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_SHIFT 8 /**< Shift value for CMU_LETIMER0 */ #define _CMU_LFAPRESC0_LETIMER0_MASK 0xF00UL /**< Bit mask for CMU_LETIMER0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV1 0x00000000UL /**< Mode DIV1 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV2 0x00000001UL /**< Mode DIV2 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV4 0x00000002UL /**< Mode DIV4 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV8 0x00000003UL /**< Mode DIV8 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV16 0x00000004UL /**< Mode DIV16 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV32 0x00000005UL /**< Mode DIV32 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV64 0x00000006UL /**< Mode DIV64 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV128 0x00000007UL /**< Mode DIV128 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV256 0x00000008UL /**< Mode DIV256 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV512 0x00000009UL /**< Mode DIV512 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV1024 0x0000000AUL /**< Mode DIV1024 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV2048 0x0000000BUL /**< Mode DIV2048 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV4096 0x0000000CUL /**< Mode DIV4096 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV8192 0x0000000DUL /**< Mode DIV8192 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV16384 0x0000000EUL /**< Mode DIV16384 for CMU_LFAPRESC0 */ #define _CMU_LFAPRESC0_LETIMER0_DIV32768 0x0000000FUL /**< Mode DIV32768 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV1 (_CMU_LFAPRESC0_LETIMER0_DIV1 << 8) /**< Shifted mode DIV1 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV2 (_CMU_LFAPRESC0_LETIMER0_DIV2 << 8) /**< Shifted mode DIV2 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV4 (_CMU_LFAPRESC0_LETIMER0_DIV4 << 8) /**< Shifted mode DIV4 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV8 (_CMU_LFAPRESC0_LETIMER0_DIV8 << 8) /**< Shifted mode DIV8 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV16 (_CMU_LFAPRESC0_LETIMER0_DIV16 << 8) /**< Shifted mode DIV16 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV32 (_CMU_LFAPRESC0_LETIMER0_DIV32 << 8) /**< Shifted mode DIV32 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV64 (_CMU_LFAPRESC0_LETIMER0_DIV64 << 8) /**< Shifted mode DIV64 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV128 (_CMU_LFAPRESC0_LETIMER0_DIV128 << 8) /**< Shifted mode DIV128 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV256 (_CMU_LFAPRESC0_LETIMER0_DIV256 << 8) /**< Shifted mode DIV256 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV512 (_CMU_LFAPRESC0_LETIMER0_DIV512 << 8) /**< Shifted mode DIV512 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV1024 (_CMU_LFAPRESC0_LETIMER0_DIV1024 << 8) /**< Shifted mode DIV1024 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV2048 (_CMU_LFAPRESC0_LETIMER0_DIV2048 << 8) /**< Shifted mode DIV2048 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV4096 (_CMU_LFAPRESC0_LETIMER0_DIV4096 << 8) /**< Shifted mode DIV4096 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV8192 (_CMU_LFAPRESC0_LETIMER0_DIV8192 << 8) /**< Shifted mode DIV8192 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV16384 (_CMU_LFAPRESC0_LETIMER0_DIV16384 << 8) /**< Shifted mode DIV16384 for CMU_LFAPRESC0 */ #define CMU_LFAPRESC0_LETIMER0_DIV32768 (_CMU_LFAPRESC0_LETIMER0_DIV32768 << 8) /**< Shifted mode DIV32768 for CMU_LFAPRESC0 */ /* Bit fields for CMU LFBPRESC0 */ #define _CMU_LFBPRESC0_RESETVALUE 0x00000000UL /**< Default value for CMU_LFBPRESC0 */ #define _CMU_LFBPRESC0_MASK 0x00000003UL /**< Mask for CMU_LFBPRESC0 */ #define _CMU_LFBPRESC0_LEUART0_SHIFT 0 /**< Shift value for CMU_LEUART0 */ #define _CMU_LFBPRESC0_LEUART0_MASK 0x3UL /**< Bit mask for CMU_LEUART0 */ #define _CMU_LFBPRESC0_LEUART0_DIV1 0x00000000UL /**< Mode DIV1 for CMU_LFBPRESC0 */ #define _CMU_LFBPRESC0_LEUART0_DIV2 0x00000001UL /**< Mode DIV2 for CMU_LFBPRESC0 */ #define _CMU_LFBPRESC0_LEUART0_DIV4 0x00000002UL /**< Mode DIV4 for CMU_LFBPRESC0 */ #define _CMU_LFBPRESC0_LEUART0_DIV8 0x00000003UL /**< Mode DIV8 for CMU_LFBPRESC0 */ #define CMU_LFBPRESC0_LEUART0_DIV1 (_CMU_LFBPRESC0_LEUART0_DIV1 << 0) /**< Shifted mode DIV1 for CMU_LFBPRESC0 */ #define CMU_LFBPRESC0_LEUART0_DIV2 (_CMU_LFBPRESC0_LEUART0_DIV2 << 0) /**< Shifted mode DIV2 for CMU_LFBPRESC0 */ #define CMU_LFBPRESC0_LEUART0_DIV4 (_CMU_LFBPRESC0_LEUART0_DIV4 << 0) /**< Shifted mode DIV4 for CMU_LFBPRESC0 */ #define CMU_LFBPRESC0_LEUART0_DIV8 (_CMU_LFBPRESC0_LEUART0_DIV8 << 0) /**< Shifted mode DIV8 for CMU_LFBPRESC0 */ /* Bit fields for CMU PCNTCTRL */ #define _CMU_PCNTCTRL_RESETVALUE 0x00000000UL /**< Default value for CMU_PCNTCTRL */ #define _CMU_PCNTCTRL_MASK 0x00000003UL /**< Mask for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKEN (0x1UL << 0) /**< PCNT0 Clock Enable */ #define _CMU_PCNTCTRL_PCNT0CLKEN_SHIFT 0 /**< Shift value for CMU_PCNT0CLKEN */ #define _CMU_PCNTCTRL_PCNT0CLKEN_MASK 0x1UL /**< Bit mask for CMU_PCNT0CLKEN */ #define _CMU_PCNTCTRL_PCNT0CLKEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKEN_DEFAULT (_CMU_PCNTCTRL_PCNT0CLKEN_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKSEL (0x1UL << 1) /**< PCNT0 Clock Select */ #define _CMU_PCNTCTRL_PCNT0CLKSEL_SHIFT 1 /**< Shift value for CMU_PCNT0CLKSEL */ #define _CMU_PCNTCTRL_PCNT0CLKSEL_MASK 0x2UL /**< Bit mask for CMU_PCNT0CLKSEL */ #define _CMU_PCNTCTRL_PCNT0CLKSEL_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_PCNTCTRL */ #define _CMU_PCNTCTRL_PCNT0CLKSEL_LFACLK 0x00000000UL /**< Mode LFACLK for CMU_PCNTCTRL */ #define _CMU_PCNTCTRL_PCNT0CLKSEL_PCNT0S0 0x00000001UL /**< Mode PCNT0S0 for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKSEL_DEFAULT (_CMU_PCNTCTRL_PCNT0CLKSEL_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKSEL_LFACLK (_CMU_PCNTCTRL_PCNT0CLKSEL_LFACLK << 1) /**< Shifted mode LFACLK for CMU_PCNTCTRL */ #define CMU_PCNTCTRL_PCNT0CLKSEL_PCNT0S0 (_CMU_PCNTCTRL_PCNT0CLKSEL_PCNT0S0 << 1) /**< Shifted mode PCNT0S0 for CMU_PCNTCTRL */ /* Bit fields for CMU ROUTE */ #define _CMU_ROUTE_RESETVALUE 0x00000000UL /**< Default value for CMU_ROUTE */ #define _CMU_ROUTE_MASK 0x0000001FUL /**< Mask for CMU_ROUTE */ #define CMU_ROUTE_CLKOUT0PEN (0x1UL << 0) /**< CLKOUT0 Pin Enable */ #define _CMU_ROUTE_CLKOUT0PEN_SHIFT 0 /**< Shift value for CMU_CLKOUT0PEN */ #define _CMU_ROUTE_CLKOUT0PEN_MASK 0x1UL /**< Bit mask for CMU_CLKOUT0PEN */ #define _CMU_ROUTE_CLKOUT0PEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_ROUTE */ #define CMU_ROUTE_CLKOUT0PEN_DEFAULT (_CMU_ROUTE_CLKOUT0PEN_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_ROUTE */ #define CMU_ROUTE_CLKOUT1PEN (0x1UL << 1) /**< CLKOUT1 Pin Enable */ #define _CMU_ROUTE_CLKOUT1PEN_SHIFT 1 /**< Shift value for CMU_CLKOUT1PEN */ #define _CMU_ROUTE_CLKOUT1PEN_MASK 0x2UL /**< Bit mask for CMU_CLKOUT1PEN */ #define _CMU_ROUTE_CLKOUT1PEN_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_ROUTE */ #define CMU_ROUTE_CLKOUT1PEN_DEFAULT (_CMU_ROUTE_CLKOUT1PEN_DEFAULT << 1) /**< Shifted mode DEFAULT for CMU_ROUTE */ #define _CMU_ROUTE_LOCATION_SHIFT 2 /**< Shift value for CMU_LOCATION */ #define _CMU_ROUTE_LOCATION_MASK 0x1CUL /**< Bit mask for CMU_LOCATION */ #define _CMU_ROUTE_LOCATION_LOC0 0x00000000UL /**< Mode LOC0 for CMU_ROUTE */ #define _CMU_ROUTE_LOCATION_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_ROUTE */ #define _CMU_ROUTE_LOCATION_LOC1 0x00000001UL /**< Mode LOC1 for CMU_ROUTE */ #define _CMU_ROUTE_LOCATION_LOC2 0x00000002UL /**< Mode LOC2 for CMU_ROUTE */ #define CMU_ROUTE_LOCATION_LOC0 (_CMU_ROUTE_LOCATION_LOC0 << 2) /**< Shifted mode LOC0 for CMU_ROUTE */ #define CMU_ROUTE_LOCATION_DEFAULT (_CMU_ROUTE_LOCATION_DEFAULT << 2) /**< Shifted mode DEFAULT for CMU_ROUTE */ #define CMU_ROUTE_LOCATION_LOC1 (_CMU_ROUTE_LOCATION_LOC1 << 2) /**< Shifted mode LOC1 for CMU_ROUTE */ #define CMU_ROUTE_LOCATION_LOC2 (_CMU_ROUTE_LOCATION_LOC2 << 2) /**< Shifted mode LOC2 for CMU_ROUTE */ /* Bit fields for CMU LOCK */ #define _CMU_LOCK_RESETVALUE 0x00000000UL /**< Default value for CMU_LOCK */ #define _CMU_LOCK_MASK 0x0000FFFFUL /**< Mask for CMU_LOCK */ #define _CMU_LOCK_LOCKKEY_SHIFT 0 /**< Shift value for CMU_LOCKKEY */ #define _CMU_LOCK_LOCKKEY_MASK 0xFFFFUL /**< Bit mask for CMU_LOCKKEY */ #define _CMU_LOCK_LOCKKEY_DEFAULT 0x00000000UL /**< Mode DEFAULT for CMU_LOCK */ #define _CMU_LOCK_LOCKKEY_LOCK 0x00000000UL /**< Mode LOCK for CMU_LOCK */ #define _CMU_LOCK_LOCKKEY_UNLOCKED 0x00000000UL /**< Mode UNLOCKED for CMU_LOCK */ #define _CMU_LOCK_LOCKKEY_LOCKED 0x00000001UL /**< Mode LOCKED for CMU_LOCK */ #define _CMU_LOCK_LOCKKEY_UNLOCK 0x0000580EUL /**< Mode UNLOCK for CMU_LOCK */ #define CMU_LOCK_LOCKKEY_DEFAULT (_CMU_LOCK_LOCKKEY_DEFAULT << 0) /**< Shifted mode DEFAULT for CMU_LOCK */ #define CMU_LOCK_LOCKKEY_LOCK (_CMU_LOCK_LOCKKEY_LOCK << 0) /**< Shifted mode LOCK for CMU_LOCK */ #define CMU_LOCK_LOCKKEY_UNLOCKED (_CMU_LOCK_LOCKKEY_UNLOCKED << 0) /**< Shifted mode UNLOCKED for CMU_LOCK */ #define CMU_LOCK_LOCKKEY_LOCKED (_CMU_LOCK_LOCKKEY_LOCKED << 0) /**< Shifted mode LOCKED for CMU_LOCK */ #define CMU_LOCK_LOCKKEY_UNLOCK (_CMU_LOCK_LOCKKEY_UNLOCK << 0) /**< Shifted mode UNLOCK for CMU_LOCK */ /** @} End of group EFM32TG110F32_CMU */ /**************************************************************************//** * @defgroup EFM32TG110F32_UNLOCK EFM32TG110F32 Unlock Codes * @{ *****************************************************************************/ #define MSC_UNLOCK_CODE 0x1B71 /**< MSC unlock code */ #define EMU_UNLOCK_CODE 0xADE8 /**< EMU unlock code */ #define CMU_UNLOCK_CODE 0x580E /**< CMU unlock code */ #define TIMER_UNLOCK_CODE 0xCE80 /**< TIMER unlock code */ #define GPIO_UNLOCK_CODE 0xA534 /**< GPIO unlock code */ /** @} End of group EFM32TG110F32_UNLOCK */ /** @} End of group EFM32TG110F32_BitFields */ /**************************************************************************//** * @defgroup EFM32TG110F32_Alternate_Function EFM32TG110F32 Alternate Function * @{ *****************************************************************************/ #include "efm32tg_af_ports.h" #include "efm32tg_af_pins.h" /** @} End of group EFM32TG110F32_Alternate_Function */ /**************************************************************************//** * @brief Set the value of a bit field within a register. * * @param REG * The register to update * @param MASK * The mask for the bit field to update * @param VALUE * The value to write to the bit field * @param OFFSET * The number of bits that the field is offset within the register. * 0 (zero) means LSB. *****************************************************************************/ #define SET_BIT_FIELD(REG, MASK, VALUE, OFFSET) \ REG = ((REG) &~(MASK)) | (((VALUE) << (OFFSET)) & (MASK)); /** @} End of group EFM32TG110F32 */ /** @} End of group Parts */ #ifdef __cplusplus } #endif #endif /* EFM32TG110F32_H */
basilfx/EFM2Riot
dist/cpu/efm32/families/efm32tg/include/vendor/efm32tg110f32.h
C
mit
142,124
########################################################################### # # This file is partially auto-generated by the DateTime::Locale generator # tools (v0.10). This code generator comes with the DateTime::Locale # distribution in the tools/ directory, and is called generate-modules. # # This file was generated from the CLDR JSON locale data. See the LICENSE.cldr # file included in this distribution for license details. # # Do not edit this file directly unless you are sure the part you are editing # is not created by the generator. # ########################################################################### =pod =encoding UTF-8 =head1 NAME DateTime::Locale::ckb_IR - Locale data examples for the ckb-IR locale. =head1 DESCRIPTION This pod file contains examples of the locale data available for the Central Kurdish Iran locale. =head2 Days =head3 Wide (format) Mon Tue Wed Thu Fri Sat Sun =head3 Abbreviated (format) Mon Tue Wed Thu Fri Sat Sun =head3 Narrow (format) M T W T F S S =head3 Wide (stand-alone) Mon Tue Wed Thu Fri Sat Sun =head3 Abbreviated (stand-alone) Mon Tue Wed Thu Fri Sat Sun =head3 Narrow (stand-alone) M T W T F S S =head2 Months =head3 Wide (format) M01 M02 M03 M04 M05 M06 M07 M08 M09 M10 M11 M12 =head3 Abbreviated (format) M01 M02 M03 M04 M05 M06 M07 M08 M09 M10 M11 M12 =head3 Narrow (format) 1 2 3 4 5 6 7 8 9 10 11 12 =head3 Wide (stand-alone) M01 M02 M03 M04 M05 M06 M07 M08 M09 M10 M11 M12 =head3 Abbreviated (stand-alone) M01 M02 M03 M04 M05 M06 M07 M08 M09 M10 M11 M12 =head3 Narrow (stand-alone) 1 2 3 4 5 6 7 8 9 10 11 12 =head2 Quarters =head3 Wide (format) Q1 Q2 Q3 Q4 =head3 Abbreviated (format) Q1 Q2 Q3 Q4 =head3 Narrow (format) 1 2 3 4 =head3 Wide (stand-alone) Q1 Q2 Q3 Q4 =head3 Abbreviated (stand-alone) Q1 Q2 Q3 Q4 =head3 Narrow (stand-alone) 1 2 3 4 =head2 Eras =head3 Wide (format) BCE CE =head3 Abbreviated (format) BCE CE =head3 Narrow (format) BCE CE =head2 Date Formats =head3 Full 2008-02-05T18:30:30 = 2008 M02 5, Tue 1995-12-22T09:05:02 = 1995 M12 22, Fri -0010-09-15T04:44:23 = -10 M09 15, Sat =head3 Long 2008-02-05T18:30:30 = 2008 M02 5 1995-12-22T09:05:02 = 1995 M12 22 -0010-09-15T04:44:23 = -10 M09 15 =head3 Medium 2008-02-05T18:30:30 = 2008 M02 5 1995-12-22T09:05:02 = 1995 M12 22 -0010-09-15T04:44:23 = -10 M09 15 =head3 Short 2008-02-05T18:30:30 = 2008-02-05 1995-12-22T09:05:02 = 1995-12-22 -0010-09-15T04:44:23 = -10-09-15 =head2 Time Formats =head3 Full 2008-02-05T18:30:30 = 18:30:30 UTC 1995-12-22T09:05:02 = 09:05:02 UTC -0010-09-15T04:44:23 = 04:44:23 UTC =head3 Long 2008-02-05T18:30:30 = 18:30:30 UTC 1995-12-22T09:05:02 = 09:05:02 UTC -0010-09-15T04:44:23 = 04:44:23 UTC =head3 Medium 2008-02-05T18:30:30 = 18:30:30 1995-12-22T09:05:02 = 09:05:02 -0010-09-15T04:44:23 = 04:44:23 =head3 Short 2008-02-05T18:30:30 = 18:30 1995-12-22T09:05:02 = 09:05 -0010-09-15T04:44:23 = 04:44 =head2 Datetime Formats =head3 Full 2008-02-05T18:30:30 = 2008 M02 5, Tue 18:30:30 UTC 1995-12-22T09:05:02 = 1995 M12 22, Fri 09:05:02 UTC -0010-09-15T04:44:23 = -10 M09 15, Sat 04:44:23 UTC =head3 Long 2008-02-05T18:30:30 = 2008 M02 5 18:30:30 UTC 1995-12-22T09:05:02 = 1995 M12 22 09:05:02 UTC -0010-09-15T04:44:23 = -10 M09 15 04:44:23 UTC =head3 Medium 2008-02-05T18:30:30 = 2008 M02 5 18:30:30 1995-12-22T09:05:02 = 1995 M12 22 09:05:02 -0010-09-15T04:44:23 = -10 M09 15 04:44:23 =head3 Short 2008-02-05T18:30:30 = 2008-02-05 18:30 1995-12-22T09:05:02 = 1995-12-22 09:05 -0010-09-15T04:44:23 = -10-09-15 04:44 =head2 Available Formats =head3 E (ccc) 2008-02-05T18:30:30 = Tue 1995-12-22T09:05:02 = Fri -0010-09-15T04:44:23 = Sat =head3 EHm (E HH:mm) 2008-02-05T18:30:30 = Tue 18:30 1995-12-22T09:05:02 = Fri 09:05 -0010-09-15T04:44:23 = Sat 04:44 =head3 EHms (E HH:mm:ss) 2008-02-05T18:30:30 = Tue 18:30:30 1995-12-22T09:05:02 = Fri 09:05:02 -0010-09-15T04:44:23 = Sat 04:44:23 =head3 Ed (d, E) 2008-02-05T18:30:30 = 5, Tue 1995-12-22T09:05:02 = 22, Fri -0010-09-15T04:44:23 = 15, Sat =head3 Ehm (E h:mm a) 2008-02-05T18:30:30 = Tue 6:30 PM 1995-12-22T09:05:02 = Fri 9:05 AM -0010-09-15T04:44:23 = Sat 4:44 AM =head3 Ehms (E h:mm:ss a) 2008-02-05T18:30:30 = Tue 6:30:30 PM 1995-12-22T09:05:02 = Fri 9:05:02 AM -0010-09-15T04:44:23 = Sat 4:44:23 AM =head3 Gy (G y) 2008-02-05T18:30:30 = CE 2008 1995-12-22T09:05:02 = CE 1995 -0010-09-15T04:44:23 = BCE -10 =head3 GyMMM (G y MMM) 2008-02-05T18:30:30 = CE 2008 M02 1995-12-22T09:05:02 = CE 1995 M12 -0010-09-15T04:44:23 = BCE -10 M09 =head3 GyMMMEd (G y MMM d, E) 2008-02-05T18:30:30 = CE 2008 M02 5, Tue 1995-12-22T09:05:02 = CE 1995 M12 22, Fri -0010-09-15T04:44:23 = BCE -10 M09 15, Sat =head3 GyMMMd (G y MMM d) 2008-02-05T18:30:30 = CE 2008 M02 5 1995-12-22T09:05:02 = CE 1995 M12 22 -0010-09-15T04:44:23 = BCE -10 M09 15 =head3 H (HH) 2008-02-05T18:30:30 = 18 1995-12-22T09:05:02 = 09 -0010-09-15T04:44:23 = 04 =head3 Hm (HH:mm) 2008-02-05T18:30:30 = 18:30 1995-12-22T09:05:02 = 09:05 -0010-09-15T04:44:23 = 04:44 =head3 Hms (HH:mm:ss) 2008-02-05T18:30:30 = 18:30:30 1995-12-22T09:05:02 = 09:05:02 -0010-09-15T04:44:23 = 04:44:23 =head3 Hmsv (HH:mm:ss v) 2008-02-05T18:30:30 = 18:30:30 UTC 1995-12-22T09:05:02 = 09:05:02 UTC -0010-09-15T04:44:23 = 04:44:23 UTC =head3 Hmv (HH:mm v) 2008-02-05T18:30:30 = 18:30 UTC 1995-12-22T09:05:02 = 09:05 UTC -0010-09-15T04:44:23 = 04:44 UTC =head3 M (L) 2008-02-05T18:30:30 = 2 1995-12-22T09:05:02 = 12 -0010-09-15T04:44:23 = 9 =head3 MEd (MM-dd, E) 2008-02-05T18:30:30 = 02-05, Tue 1995-12-22T09:05:02 = 12-22, Fri -0010-09-15T04:44:23 = 09-15, Sat =head3 MMM (LLL) 2008-02-05T18:30:30 = M02 1995-12-22T09:05:02 = M12 -0010-09-15T04:44:23 = M09 =head3 MMMEd (MMM d, E) 2008-02-05T18:30:30 = M02 5, Tue 1995-12-22T09:05:02 = M12 22, Fri -0010-09-15T04:44:23 = M09 15, Sat =head3 MMMMd (MMMM d) 2008-02-05T18:30:30 = M02 5 1995-12-22T09:05:02 = M12 22 -0010-09-15T04:44:23 = M09 15 =head3 MMMd (MMM d) 2008-02-05T18:30:30 = M02 5 1995-12-22T09:05:02 = M12 22 -0010-09-15T04:44:23 = M09 15 =head3 Md (MM-dd) 2008-02-05T18:30:30 = 02-05 1995-12-22T09:05:02 = 12-22 -0010-09-15T04:44:23 = 09-15 =head3 d (d) 2008-02-05T18:30:30 = 5 1995-12-22T09:05:02 = 22 -0010-09-15T04:44:23 = 15 =head3 h (h a) 2008-02-05T18:30:30 = 6 PM 1995-12-22T09:05:02 = 9 AM -0010-09-15T04:44:23 = 4 AM =head3 hm (h:mm a) 2008-02-05T18:30:30 = 6:30 PM 1995-12-22T09:05:02 = 9:05 AM -0010-09-15T04:44:23 = 4:44 AM =head3 hms (h:mm:ss a) 2008-02-05T18:30:30 = 6:30:30 PM 1995-12-22T09:05:02 = 9:05:02 AM -0010-09-15T04:44:23 = 4:44:23 AM =head3 hmsv (h:mm:ss a v) 2008-02-05T18:30:30 = 6:30:30 PM UTC 1995-12-22T09:05:02 = 9:05:02 AM UTC -0010-09-15T04:44:23 = 4:44:23 AM UTC =head3 hmv (h:mm a v) 2008-02-05T18:30:30 = 6:30 PM UTC 1995-12-22T09:05:02 = 9:05 AM UTC -0010-09-15T04:44:23 = 4:44 AM UTC =head3 ms (mm:ss) 2008-02-05T18:30:30 = 30:30 1995-12-22T09:05:02 = 05:02 -0010-09-15T04:44:23 = 44:23 =head3 y (y) 2008-02-05T18:30:30 = 2008 1995-12-22T09:05:02 = 1995 -0010-09-15T04:44:23 = -10 =head3 yM (y-MM) 2008-02-05T18:30:30 = 2008-02 1995-12-22T09:05:02 = 1995-12 -0010-09-15T04:44:23 = -10-09 =head3 yMEd (y-MM-dd, E) 2008-02-05T18:30:30 = 2008-02-05, Tue 1995-12-22T09:05:02 = 1995-12-22, Fri -0010-09-15T04:44:23 = -10-09-15, Sat =head3 yMMM (y MMM) 2008-02-05T18:30:30 = 2008 M02 1995-12-22T09:05:02 = 1995 M12 -0010-09-15T04:44:23 = -10 M09 =head3 yMMMEd (y MMM d, E) 2008-02-05T18:30:30 = 2008 M02 5, Tue 1995-12-22T09:05:02 = 1995 M12 22, Fri -0010-09-15T04:44:23 = -10 M09 15, Sat =head3 yMMMM (y MMMM) 2008-02-05T18:30:30 = 2008 M02 1995-12-22T09:05:02 = 1995 M12 -0010-09-15T04:44:23 = -10 M09 =head3 yMMMd (y MMM d) 2008-02-05T18:30:30 = 2008 M02 5 1995-12-22T09:05:02 = 1995 M12 22 -0010-09-15T04:44:23 = -10 M09 15 =head3 yMd (y-MM-dd) 2008-02-05T18:30:30 = 2008-02-05 1995-12-22T09:05:02 = 1995-12-22 -0010-09-15T04:44:23 = -10-09-15 =head3 yQQQ (y QQQ) 2008-02-05T18:30:30 = 2008 Q1 1995-12-22T09:05:02 = 1995 Q4 -0010-09-15T04:44:23 = -10 Q3 =head3 yQQQQ (y QQQQ) 2008-02-05T18:30:30 = 2008 Q1 1995-12-22T09:05:02 = 1995 Q4 -0010-09-15T04:44:23 = -10 Q3 =head2 Miscellaneous =head3 Prefers 24 hour time? Yes =head3 Local first day of the week 1 (Mon) =head1 SUPPORT See L<DateTime::Locale>. =cut
jkb78/extrajnm
local/lib/perl5/DateTime/Locale/ckb_IR.pod
Perl
mit
9,030
# -*- coding: utf-8 -*- # Copyright © 2012-2016 Roberto Alsina and others. # Permission is hereby granted, free of charge, to any # person obtaining a copy of this software and associated # documentation files (the "Software"), to deal in the # Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the # Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice # shall be included in all copies or substantial portions of # the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR # PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS # OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """Beg the user to switch to python 3.""" import datetime import os import random import sys import doit.tools from nikola.utils import get_logger, STDERR_HANDLER from nikola.plugin_categories import LateTask PY2_AND_NO_PY3_WARNING = """Nikola is going to deprecate Python 2 support in 2016. Your current version will continue to work, but please consider upgrading to Python 3. Please check http://bit.ly/1FKEsiX for details. """ PY2_WARNING = """Nikola is going to deprecate Python 2 support in 2016. You already have Python 3 available in your system. Why not switch? Please check http://bit.ly/1FKEsiX for details. """ PY2_BARBS = [ "Python 2 has been deprecated for years. Stop clinging to your long gone youth and switch to Python3.", "Python 2 is the safety blanket of languages. Be a big kid and switch to Python 3", "Python 2 is old and busted. Python 3 is the new hotness.", "Nice unicode you have there, would be a shame something happened to it.. switch to python 3!.", "Don't get in the way of progress! Upgrade to Python 3 and save a developer's mind today!", "Winners don't use Python 2 -- Signed: The FBI", "Python 2? What year is it?", "I just wanna tell you how I'm feeling\n" "Gotta make you understand\n" "Never gonna give you up [But Python 2 has to go]", "The year 2009 called, and they want their Python 2.7 back.", ] LOGGER = get_logger('Nikola', STDERR_HANDLER) def has_python_3(): """Check if python 3 is available.""" if 'win' in sys.platform: py_bin = 'py.exe' else: py_bin = 'python3' for path in os.environ["PATH"].split(os.pathsep): if os.access(os.path.join(path, py_bin), os.X_OK): return True return False class Py3Switch(LateTask): """Beg the user to switch to python 3.""" name = "_switch to py3" def gen_tasks(self): """Beg the user to switch to python 3.""" def give_warning(): if sys.version_info[0] == 3: return if has_python_3(): LOGGER.warn(random.choice(PY2_BARBS)) LOGGER.warn(PY2_WARNING) else: LOGGER.warn(PY2_AND_NO_PY3_WARNING) task = { 'basename': self.name, 'name': 'please!', 'actions': [give_warning], 'clean': True, 'uptodate': [doit.tools.timeout(datetime.timedelta(days=3))] } return task
wcmckee/nikola
nikola/plugins/task/py3_switch.py
Python
mit
3,614
<!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='pl'> <head> <meta http-equiv="Content-Language" content="pl" /> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /> <meta name="description" content="Oficjalna strona internetowa parafii Podwyższenia Krzyża świętego w Sandomierzu." /> <meta name="keywords" content="Sandomierz, SANDOMIERZ, diecezja, parafia, sandomierska, diecezja sandomierska" /> <meta name="generator" content="Bluefish 2.2.4" /> <meta name="author" content="Kamil" /> <title>Parafia Podwyższenia Krzyża świętego w Sandomierzu - oficjalna strona internetowa</title> <link rel='shortcut icon' href='obrazy/favicon.png' /> <link rel='stylesheet' type='text/css' href='styles.css' /> </head> <body> <div id="outer"> <!-- nagłówek treści strony i jej tytuł --> <div id="header"> <h1><a href="#">Sandomierska Rzymsko-katolicka Parafia <br />PODWYŻSZENIA KRZYŻA ŚWIĘTEGO</a></h1> <h2>Patron: św. Brat Albert Chmielowski</h2> </div> <!-- koniec nagłówka treści strony --> <!-- menu strony --> <div id="menu"> <ul> <li class="first"><a href="index.html" accesskey="1" title="Strona główna">Strona Główna</a></li> <li><a href="parafia.html" accesskey="2" title="Strona o parafii">O Parafii</a></li> <li><a href="aktualnosci.html" accesskey="3" title="Najnowsze informacje o życiu w Parafii">Aktualności</a></li> <li><a href="liturgia.html" accesskey="4" title="Msze święte">Liturgia</a></li> <li><a href="galeria.html" accesskey="5" title="Galeria zdjęć">Galeria</a></li> <li><a href="grupy.html" accesskey="6" title="Grupy parafialne">Grupy parafialne</a></li> <li><a href="kontakt.html" accesskey="7" title="Strona kontaktowa">Kontakt</a></li> <li><a href="archiwum.html" accesskey="8" title="Archiwalne wpisy">Archiwum</a></li> </ul> </div> <!-- koniec menu strony --> <!-- treść główna --> <div id="content"> <div id="primaryContentContainer2"> <div id="primaryContent2"> <h2>Archiwum wiadomości 2015 rok</h2> <h2>Okres 1. stycznia 2015 - 31. grudnia 2015 r.</h2> <h3>27. grudnia 2015 r.</h3> <h3>NIEDZIELA ŚW. RODZINY</h3> <p>1. Jutro tradycyjnie o&nbsp;godz.&nbsp;18.00 Msza&nbsp;św. w&nbsp;intencji radnych, liderów blokowych i&nbsp;wspomagających nas pań z&nbsp;grup modlitewnych oraz ich rodzin; po&nbsp;Mszy&nbsp;św. spotkanie opłatkowe na&nbsp;plebanii.</p> <p>2. We&nbsp;czwartek na&nbsp;zakończenie starego roku odprawimy o&nbsp;godz.&nbsp;17.00 uroczyste nieszpory, w&nbsp;czasie których będziemy modlić się za&nbsp;tych, którzy zostali ochrzczeni w&nbsp;tym roku, zawarli sakrament małżeństwa i&nbsp;których odprowadziliśmy na&nbsp;miejsce wiecznego spoczynku. Zapraszamy wszystkich parafian do&nbsp;udziału w&nbsp;tym szczególnym nabożeństwie, a&nbsp;zwłaszcza rodziny, które przeżywały w/w uroczystości.</p> <p>3. W&nbsp;piątek, 1&nbsp;stycznia Nowy Rok – Uroczystość Św.&nbsp;Bożej Rodzicielki. Porządek Mszy&nbsp;św. – jak w&nbsp;każdą niedzielę – także o&nbsp;19.30.</p> <p>4. W&nbsp;tym tygodniu wypada pierwszy piątek i&nbsp;sobota miesiąca stycznia.</p> <p>5. <em>Bóg zapłać</em> panu organiście za&nbsp;ofiarowane choinki, panu Bogdanowi Kwaskowi i&nbsp;jego pracownikom za&nbsp;ich ścięcie, przywiezienie i&nbsp;obsadzenie, panom z&nbsp;panem Maciejem za&nbsp;przygotowanie dekoracji żłóbka i&nbsp;kościoła, panu&nbsp;Józefowi Kwaskowi za&nbsp;montaż szopki, panu&nbsp;Piotrowi Burkowskiemu za&nbsp;dekorację ołtarza.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie i&nbsp;złożoną ofiarę przez sprzątających. <br /> <strong>Do&nbsp;sprzątania prosimy w&nbsp;środę po&nbsp;Mszy&nbsp;św. wieczornej – godz.&nbsp;18.30</strong> rodziny z&nbsp;bloku Mickiewicza 51, od&nbsp;11 do&nbsp;20.</p> <p>7. Zwyczajem okresu Bożego Narodzenia jest wizyta duszpasterska, w&nbsp;czasie której odwiedzamy rodziny, błogosławimy domy i&nbsp;mieszkania, modlimy się razem z&nbsp;rodzinami o&nbsp;Boże błogosławieństwo na&nbsp;kolejny rok.</p> <h3>W&nbsp;tym tygodniu z&nbsp;wizytą duszpasterską pójdziemy:</h3> <h3><span style="text-decoration: underline">ŚRODA</span> – 30.12.</h3> <p>od&nbsp;godz. 9.00 – trzech księży – Chwałki wieś (od&nbsp;państwa Tosiów, Żmudów, Karasiaków)</p> <h3><span style="text-decoration: underline">CZWARTEK</span> – 31.12.</h3> <p>od&nbsp;godz. 9.00 – trzech księży – Milczany wieś</p> <h3><span style="text-decoration: underline">SOBOTA</span> – 02.01.</h3> <p>od&nbsp;godz. 9.00 – trzech księży – Kobierniki wieś (od&nbsp;państwa Pyrczów, Klimków, Guściorów)</p> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 04.01.</h3> <p>od&nbsp;godz. 9.00 – dwóch księży – Chwałki za&nbsp;Kauflandem</p><br /> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>20. grudnia 2015 r.</h3> <h3>IV NIEDZIELA ADWENTU ROK C</h3> <p>Są&nbsp;jeszcze nie rozniesione opłatki w&nbsp;blokach: Maciejowskiego 32 i&nbsp;Cieśli&nbsp;1...</p> <p>1. Zapraszamy na&nbsp;Godzinki do&nbsp;NMP o&nbsp;6.15. Roraty o&nbsp;godzinie 6.30.</p> <p>2. Jutro spowiadamy w&nbsp;Katedrze.</p> <p>3. We wtorek od&nbsp;godz. 8.00 pójdziemy z&nbsp;posługą sakramentalną do&nbsp;chorych. Prosimy zgłaszać adresy chorych.</p> <p>4. We&nbsp;czwartek wigilia Bożego Narodzenia. Zachęcamy do&nbsp;zachowania wstrzemięźliwości od&nbsp;potraw mięsnych. Tradycyjnie o&nbsp;pierwszej gwiazdce na&nbsp;niebie siadamy do&nbsp;wieczerzy wigilijnej...</p> <p>5. Pasterka o&nbsp;północy w&nbsp;intencjach dobrodzieja parafii – Bolesława Woźniaka, budowniczych i&nbsp;ofiarodawców.</p> <p>6. W&nbsp;Boże Narodzenie porządek Mszy&nbsp;św. jak w&nbsp;niedziele – także o&nbsp;19.30.</p> <p>7. W&nbsp;sobotę święto św.&nbsp;Szczepana. Porządek Mszy&nbsp;św. jak w&nbsp;niedziele – także o&nbsp;19.30.</p> <p>8. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania prosimy we&nbsp;czwartek na&nbsp;godz. 7.30</strong> mieszkańców bloku Mickiewicza 51 od&nbsp;1 do&nbsp;10.<br /> <em>Bóg zapłać</em> p. Zygmuntowi Skubidzie i&nbsp;jego pracownikom za&nbsp;wymianę żarówek w&nbsp;żyrandolach oraz p.&nbsp;stolarzowi Wacławowi Miszczakowi za&nbsp;pracę dla dobra parafii.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas rozprowadza świece wigilijne, cena małej świecy 5&nbsp;zł, dużej 20&nbsp;zł.</p> <p>10. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Stanisława Wochniaka i&nbsp;Jana Mazura: <em>Wieczny odpoczynek...</em></p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>13. grudnia 2015 r.</h3> <h3>III NIEDZIELA ADWENTU ROK C</h3> <p>Bardzo dziękuję radnym parafialnym, liderom blokowym i&nbsp;paniom z&nbsp;grup modlitewnych za&nbsp;rozniesienie opłatków do&nbsp;Rodzin naszej Parafii. Wam, kochani parafianie składam podziękowanie <em>Bóg zapłać</em> za&nbsp;złożone z&nbsp;tej okazji ofiary na&nbsp;rzecz parafii. Są&nbsp;jeszcze nie rozniesione opłatki w&nbsp;blokach: Maciejowskiego 5; 11; 32; 34; 38.</p> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Zapraszamy codziennie na&nbsp;Godzinki do&nbsp;NMP o&nbsp;6.15. Roraty o&nbsp;godzinie 6.30.</p> <p>3. W&nbsp;tym tygodniu spowiadamy: jutro w&nbsp;kościele Św.&nbsp;Józefa, we&nbsp;wtorek Św.&nbsp;Pawła, w&nbsp;środę w&nbsp;Nadbrzeziu, we&nbsp;czwartek w&nbsp;Darominie, <strong>w&nbsp;piątek w&nbsp;naszym kościele od&nbsp;8.30 do&nbsp;10.00 i&nbsp;po&nbsp;południu od&nbsp;16.00 do&nbsp;18.00. Msza Święta z&nbsp;homilią w&nbsp;piątek o&nbsp;godzinie 9.00 i&nbsp;18.00. Zapraszamy.</strong> W&nbsp;sobotę w&nbsp;Jankowicach.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza 53 od&nbsp;51 do&nbsp;60.</p> <p>5. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas rozprowadza świece wigilijne, cena małej świecy 5&nbsp;zł, dużej 20&nbsp;zł.</p> <p>6. Dzisiaj wychodząc z&nbsp;kościoła możemy złożyć do&nbsp;puszek ofiarę jako ekwiwalent za&nbsp;płody w&nbsp;naturze dla naszego Seminarium Duchownego.</p> <p>7. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Jana Jareckiego: <em>Wieczny odpoczynek...</em></p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>6. grudnia 2015 r.</h3> <h3>II NIEDZIELA ADWENTU ROK C</h3> <p>Bardzo proszę, aby Radni Parafialni, Liderzy Blokowi i&nbsp;Panie z&nbsp;grup modlitewnych wzięli dzisiaj z&nbsp;zakrystii opłatki bożonarodzeniowe i&nbsp;zeszyty poszczególnych rejonów i&nbsp;roznieśli do&nbsp;Rodzin naszej Parafii. Przyjmijcie ich serdecznie...</p> <p>1. W&nbsp;tym tygodniu Ks.&nbsp;Biskup odwołał ks.&nbsp;mgr. Łukasza Pyszka z&nbsp;naszej parafii i&nbsp;mianował wikariuszem w&nbsp;parafii Bieliny oraz ks.&nbsp;dr&nbsp;Piotra Tylec mianując go&nbsp;Prefektem w&nbsp;WSD w&nbsp;Sandomierzu. Bardzo dziękujemy im&nbsp;za&nbsp;pracę w&nbsp;parafii naszej i&nbsp;życzymy Bożego błogosławieństwa w&nbsp;posługiwaniu Bogu i&nbsp;ludziom w&nbsp;nowych miejscach i&nbsp;na&nbsp;nowych stanowiskach.</p> <p>2. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>3. Zapraszamy codziennie na&nbsp;Godzinki do&nbsp;NMP o&nbsp;6.15. Roraty o&nbsp;godzinie 6.30. Ze&nbsp;względu na&nbsp;mniejszą liczbę kapłanów musimy zmienić godziny odprawiania przyjętych intencji mszalnych...</p> <p>4. Jutro zapraszamy dzieci z&nbsp;Rodzicami – jak w&nbsp;latach poprzednich na&nbsp;mikołajkowe zabawy o&nbsp;godzinie 17.00 w&nbsp;budynku za&nbsp;plebanią.</p> <p>5. W&nbsp;wtorek wypada uroczystość Niepokalanego Poczęcia NMP. Zapraszamy na&nbsp;Mszę Świętą o&nbsp;godzinie: 6.30; 9.00; 17.00 oraz 18.00. Seminarium Duchowne zaprasza na&nbsp;godzinę 16.00 na&nbsp;modlitwę przy figurze NMP na&nbsp;Rynku Starego Miasta, później w&nbsp;budynku WSD spektakl teatralny.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza 53 od&nbsp;41 do&nbsp;50.</p> <p>7. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas rozprowadza świece wigilijne, cena małej świecy 5&nbsp;zł, dużej 20&nbsp;zł.</p> <p>8. Dzisiaj wychodząc z&nbsp;kościoła możemy złożyć do&nbsp;puszek ofiarę jako nasza pomoc materialna Kościołowi na&nbsp;Wschodzie. W&nbsp;przyszłą niedziele będziemy składać ofiary jako ekwiwalent za&nbsp;płody w&nbsp;naturze dla naszego Seminarium Duchownego.</p> <p>9. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Feliksa Król oraz Wacława Tochowicz, którego pogrzeb będzie w&nbsp;czwartek o&nbsp;godzinie 13.00. Polećmy ich Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>29. listopada 2015 r.</h3> <h3>I NIEDZIELA ADWENTU ROK C</h3> <h3>TRADYCYJNIE W&nbsp;NASZEJ PARAFII ŚWIĘCIMY DZISIAJ OPŁATKI, KTÓRE PO II&nbsp;NIEDZIELI ADWENTU ROZNIOSĄ RADNI I&nbsp;LIDERZY PARAFIALNI, A&nbsp;KTÓRYMI BĘDZIEMY SIĘ DZIELIĆ Z&nbsp;BLISKIMI PODCZAS WIECZERZY WIGILIJNEJ.</h3> <p>Pan Jacek Woś i&nbsp;Pani Maria Kamińska, która roznosiła opłatki w&nbsp;bloku Maciejowskiego 11, proszą (ze&nbsp;względu na&nbsp;stan zdrowia), aby ich zwolnić z&nbsp;zadania roznoszenia opłatków, dlatego <strong>uprzejmie proszę</strong>, by zgłosili się <strong>chętni do rozniesienia opłatków</strong> po&nbsp;tym terenie.</p> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. W&nbsp;Adwencie Godzinki do&nbsp;NMP o&nbsp;6.15. Roraty o&nbsp;godzinie 6.30. Zapraszamy do&nbsp;licznego udziału we&nbsp;Mszy Świętej Roratniej dzieci, młodzież i&nbsp;starszych. Dzieci prosimy – niech przychodzą z&nbsp;lampionami. Po&nbsp;południu Msza Święta o&nbsp;godzinie 18.00.</p> <p>3. W&nbsp;piątek 4&nbsp;grudnia odpust w&nbsp;parafii Św.&nbsp;Pawła – świętej Barbary.</p> <p>4. W&nbsp;tym tygodniu wypada I&nbsp;czwartek, piątek i&nbsp;sobota miesiąca grudnia.<br /> W&nbsp;I&nbsp;piątek sposobność do&nbsp;spowiedzi od&nbsp;godziny 16.45.</p> 5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających i&nbsp;wszelkie dobro. <em>Bóg zapłać</em> Akcji Katolickiej za&nbsp;okolicznościową dekorację adwentową.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;53 od&nbsp;31 do&nbsp;40. <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas rozprowadza świece wigilijne.</p> <p>7. W&nbsp;przyszłą niedzielę Dzień modlitw i&nbsp;pomocy materialnej Kościołowi na&nbsp;Wschodzie. Zbiórka do&nbsp;puszek.</p> <p>8. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Czesława Ciach. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>22. listopada 2015 r.</h3> <h3>UROCZYSTOŚĆ JEZUSA CHRYSTUSA KRÓLA WSZECHŚWIATA</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Diecezja nasza przeżywa obecny tydzień jako Tydzień Biblijny. Zachęcamy do&nbsp;udziału w&nbsp;Mszy Świętej w&nbsp;ciągu tygodnia, jak również do&nbsp;czytania Słowa Bożego w&nbsp;domach rodzinnych.</p> <p>3. W&nbsp;sobotę o&nbsp;godzinie 15.00 w&nbsp;Katedrze Msza Święta na&nbsp;rozpoczęcie Jubileuszu 1050-tej rocznicy Chrztu Polski, podczas której delegacje z&nbsp;parafii otrzymają świecę jubileuszową, która będzie paliła się w&nbsp;parafialnych kościołach przez cały rok.</p> <p>4. Proboszcz Katedry zaprasza w&nbsp;najbliższą niedzielę na&nbsp;Mszę Świętą o&nbsp;godz. 17.30 – w&nbsp;czasie której odbędzie się obrzęd przyjęcia do&nbsp;Kościoła czterech osób dorosłych, które przygotowują się do&nbsp;przyjęcia sakramentu Chrztu, Eucharystii i Bierzmowania.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza 53 od&nbsp;21 do&nbsp;30.<br /> <em>Bóg zapłać</em> Julianowi i&nbsp;Zdzisławie za&nbsp;zakup i&nbsp;ofiarowanie baniek choinkowych oraz kompletów świateł choinkowych do&nbsp;dekoracji na&nbsp;okres Bożego Narodzenia.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Marię Bryła, której pogrzeb będzie we&nbsp;wtorek o&nbsp;godz. 13.00. Polećmy ją&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>15. listopada 2015 r.</h3> <h3>XXXIII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty, złożoną ofiarę i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza 53 od&nbsp;11 do&nbsp;20.</p> <p>3. Dzisiaj wychodząc z&nbsp;kościoła możemy złożyć ofiarę do&nbsp;puszek na&nbsp;koszta związane z&nbsp;organizacją Światowych Dni Młodzieży w&nbsp;Krakowie w&nbsp;lipcu 2016&nbsp;roku. Za&nbsp;każdy dar serca składamy podziękowanie – <em>Bóg zapłać</em>.</p> <p>4. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>5. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <p>21&nbsp;listopada o&nbsp;godz.&nbsp;16.00 w&nbsp;kościele Seminaryjnym Wieczór Cecyliański, na&nbsp;którym wystąpią: Chór Alumnów naszego Seminarium, Chór Canticus Państwowej Szkoły Muzycznej I&nbsp;stopnia w&nbsp;Tarnobrzegu oraz p.&nbsp;Andrzej Budziński z&nbsp;Ostrowca Świętokrzyskiego, który wykona koncert organowy.</p><br /> <h3>8. listopada 2015 r.</h3> <h3>XXXII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Dzisiaj modlitwy wypominkowe o&nbsp;godzinie 15.30.</p> <p>3. <strong>W&nbsp;środę</strong> przypada rocznica odzyskania niepodległości. <strong>Msza Święta za&nbsp;Ojczyznę</strong> dla wszystkich mieszkańców Sandomierza i&nbsp;okolic – <strong>w&nbsp;Katedrze o&nbsp;godz.&nbsp;10.30</strong>. Następnie przejście na&nbsp;Cmentarz Katedralny i&nbsp;tam modlitwy, i&nbsp;apel poległych.<br /> W&nbsp;naszej parafii będziemy w&nbsp;szczególny sposób polecać Bogu Ojczyznę podczas Mszy&nbsp;Świętej o&nbsp;godz.&nbsp;18.00.</p> <p>4. Jeszcze tylko w&nbsp;dniu dzisiejszym możemy zyskać odpust zupełny, ofiarując go&nbsp;wyłącznie za&nbsp;zmarłych. Warunki odpustu – brak jakiegokolwiek przywiązania do&nbsp;grzechu, nawet powszedniego, stan łaski uświęcającej, przyjęcie Komunii Świętej, odmówienie modlitwy w&nbsp;intencjach Ojca Świętego, nawiedzenie cmentarza z&nbsp;równoczesną modlitwą za&nbsp;zmarłych. Od&nbsp;poniedziałku do&nbsp;końca listopada, spełniając powyższe warunki możemy zyskać odpust cząstkowy.</p> <p>5. Spotkanie scholi – w&nbsp;sobotę o&nbsp;godz.&nbsp;12.00.</p> <p>6. <em>Bóg zapłać</em> za sprzątanie kościoła, złożoną ofiarę i&nbsp;wszelkie dobro.<br /> <strong>Do sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;53 od&nbsp;1 do&nbsp;10.</p> <p>7. Wychodząc z&nbsp;kościoła możemy wesprzeć prześladowanych chrześcijan składając ofiarę do&nbsp;puszki. W&nbsp;następną niedzielę będzie ogólnopolska zbiórka do&nbsp;puszek na&nbsp;Światowe Dni Młodzieży.</p> <p>8. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. W&nbsp;minionym tygodniu z&nbsp;naszej wspólnoty parafialnej odwołał Bóg do&nbsp;wieczności świętej pamięci Teodorę Kapustę, której pogrzeb odbył się wczoraj. Polećmy ją&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>1. listopada 2015 r.</h3> <h3>UROCZYSTOŚĆ WSZYSTKICH ŚWIĘTYCH</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Dzisiaj wystawienie i&nbsp;Nabożeństwo Różańcowe o&nbsp;godzinie 15.30 oraz zmiana tajemnic Róż Różańcowych.</p> <p>3. Jutro Wspomnienie Wszystkich Wiernych Zmarłych. U&nbsp;nas Msza Święta o&nbsp;6.30, 7.30, 9.00 (z&nbsp;procesją po&nbsp;kościele i&nbsp;wypominkami za&nbsp;zmarłych), 17.00; 17.30 "modlitwy wypominkowe" i&nbsp;18.00.<br /> Na&nbsp;cmentarzu Komunalnym o&nbsp;godz. 13.30 poświęcenie Grobu Dziecka Utraconego i&nbsp;o&nbsp;14.00 procesja po&nbsp;cmentarzu połączona z&nbsp;wypominkami za&nbsp;zmarłych.</p> <p>4. W&nbsp;tym tygodniu wypada I&nbsp;czwartek, piątek i&nbsp;sobota miesiąca. W&nbsp;piątek okazja do&nbsp;spowiedzi od&nbsp;godziny 16.30.</p> <p>5. W&nbsp;tych dniach otaczamy szczególną pamięcią naszych zmarłych. Pismo Święte mówi: "rzecz jest święta i&nbsp;zbawienna modlić się za&nbsp;zmarłymi". Wdzięczność za&nbsp;dar życia, dobra materialne, którymi zostaliśmy obdarowani w&nbsp;życiu zobowiązują nas – ludzi wiary – do&nbsp;modlitwy za&nbsp;nich. Przyjmujemy na&nbsp;wypominki za&nbsp;zmarłych oraz intencje mszalne. O&nbsp;godzinie 17.00 całą oktawę będziemy odprawiać Mszę Świętą za&nbsp;zmarłych polecanych w&nbsp;wypominkach.<br /> W&nbsp;dniach od&nbsp;1 do&nbsp;8 listopada możemy zyskać odpust zupełny, ofiarując go&nbsp;wyłącznie za&nbsp;zmarłych. Warunki odpustu – brak jakiegokolwiek przywiązania do&nbsp;grzechu, nawet powszedniego, stan łaski uświęcającej, przyjęcie Komunii Świętej, odmówienie modlitwy w&nbsp;intencjach Ojca Świętego, nawiedzenie cmentarza z&nbsp;równoczesną modlitwą za&nbsp;zmarłych.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;55 od&nbsp;21 do&nbsp;30.</p> <p>7. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>8. Strefa Nauki – Centrum Nauki i&nbsp;Języków Obcych na&nbsp;ulicy Okrzei, zaprasza na&nbsp;pierwsze w&nbsp;Sandomierzu warsztaty matematyczno-przyrodnicze, dla dzieci od&nbsp;I do&nbsp;III klasy. Szczegóły na&nbsp;plakacie w&nbsp;gablocie.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. W&nbsp;minionym tygodniu odszedł do&nbsp;Pana z&nbsp;naszej wspólnoty parafialnej świętej pamięci Mirosław Obrębski, którego pogrzeb będzie we&nbsp;wtorek o&nbsp;13.00. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>Ogłoszenia katechetyczne</h3> <p>Uczniowie przygotowujący się do&nbsp;bierzmowania mają swoje spotkania: klasy pierwsze w&nbsp;środę, klasy drugie w&nbsp;czwartek i&nbsp;klasy trzecie w&nbsp;piątek.</p><br /> <h3>25. października 2015 r.</h3> <h3>XXX Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Zapraszamy dzieci, młodzież i&nbsp;dorosłych na&nbsp;ostatnie w&nbsp;tym roku nabożeństwa różańcowe na&nbsp;godzinę 17.30. Po&nbsp;nabożeństwie Msza Święta.</p> <p>3. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>4. Zbliżamy się do&nbsp;dni szczególnej pamięci o&nbsp;zmarłych. Pismo Święte mówi: "rzecz jest święta i&nbsp;zbawienna modlić się za&nbsp;zmarłymi". Wdzięczność za&nbsp;dar życia, dobra materialne, którymi zostaliśmy obdarowani w&nbsp;życiu zobowiązują nas – ludzi wiary – do&nbsp;modlitwy za&nbsp;nich. Przyjmujemy na&nbsp;wypominki za&nbsp;zmarłych oraz intencje mszalne.</p> <p>5. W&nbsp;następną niedzielę Uroczystość Wszystkich Świętych. U&nbsp;nas w&nbsp;kościele porządek nabożeństw jak w&nbsp;każdą niedzielę; także o&nbsp;19.30.</p> Msza&nbsp;Św.: <ul class="lista_w_aktualnosciach"> <li>na&nbsp;<strong>Cmentarzu Komunalnym</strong> o&nbsp;godz.&nbsp;<strong>12:30</strong>,</li> <li>na&nbsp;<strong>Cmentarzu Katedralnym</strong> o&nbsp;godz.&nbsp;<strong>13.00,</strong></li> <li>na&nbsp;<strong>Świętopawelskim</strong> o&nbsp;godz.&nbsp;<strong>14.00</strong>.</li> </ul> <p>6. W&nbsp;poniedziałek (2&nbsp;listopada) Wspomnienie Wszystkich Wiernych Zmarłych. U&nbsp;nas Msza Święta o&nbsp;6.30, 7.30, 9.00 (z&nbsp;procesją po&nbsp;kościele i&nbsp;wypominkami za&nbsp;zmarłych), 17.00; 17.30 "modlitwy wypominkowe" i&nbsp;18.00.<br /> Na&nbsp;cmentarzu Komunalnym o&nbsp;godz. 13.30 poświęcenie Grobu Dziecka Utraconego i&nbsp;o&nbsp;14.00 procesja po&nbsp;cmentarzu połączona z&nbsp;wypominkami za&nbsp;zmarłych.</p> <p>7. Społeczny Komitet odnowy cmentarza katedralnego będzie prowadził zbiórkę na&nbsp;sandomierskich cmentarzach na&nbsp;renowację zabytkowych nagrobków. Kwesta będzie prowadzona w&nbsp;piątek, sobotę i&nbsp;niedzielę.</p> <p>8. W&nbsp;środę (28.X) jest liturgiczne święto – świętych Apostołów Szymona i&nbsp;Judy Tadeusza. Jest to&nbsp;dzień imienin ks.&nbsp;Tadeusza. Msza Święta w&nbsp;jego intencji będzie odprawiona we&nbsp;wtorek o&nbsp;godz.&nbsp;18.00, na&nbsp;którą serdecznie zapraszamy.</p> <p>9. <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;55 od&nbsp;11 do&nbsp;20.</p> <p>10. Strefa Nauki – Centrum Nauki i&nbsp;Języków Obcych na&nbsp;ulicy Okrzei, zaprasza na&nbsp;pierwsze w&nbsp;Sandomierzu warsztaty matematyczno-przyrodnicze, dla dzieci od&nbsp;I do&nbsp;III klasy. Szczegóły na&nbsp;plakacie w&nbsp;gablocie.</p> <p>11. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p>13. Dzisiaj w&nbsp;Polsce dzień wyborów do Parlamentu. Naszą modlitwą w&nbsp;intencji Ojczyzny i&nbsp;rządzących oraz poprzez udział w&nbsp;wyborach okażmy odpowiedzialność za&nbsp;losy Narodu.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>18. października 2015 r.</h3> <h3>XXIX Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. W&nbsp;październiku nabożeństwo różańcowe o&nbsp;17.30, na&nbsp;które zapraszamy dzieci, młodzież i&nbsp;dorosłych.<br /> Po&nbsp;nabożeństwie Msza Święta.</p> <p>3. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>4. Dzisiejszą niedzielą rozpoczynamy w&nbsp;Kościele Powszechnym Tydzień Misyjny. W&nbsp;czasie Eucharystii i&nbsp;nabożeństwa różańcowego będziemy prosić Boga o&nbsp;dar powołań misyjnych, aby na&nbsp;całym świecie była głoszona Dobra Nowina o&nbsp;zbawieniu.<br /> Wychodząc z&nbsp;kościoła będziemy mogli złożyć swój dar materialny na&nbsp;cele misji.</p> <p>5. Zbliżamy się do&nbsp;dni szczególnej pamięci o&nbsp;zmarłych. Pismo Święte mówi: "rzecz jest święta i&nbsp;zbawienna modlić się za&nbsp;zmarłymi". Wdzięczność za&nbsp;dar życia, dobra materialne, którymi zostaliśmy obdarowani w&nbsp;życiu zobowiązują nas – ludzi wiary – do&nbsp;modlitwy za&nbsp;nich. Przyjmujemy na&nbsp;wypominki za&nbsp;zmarłych.</p> <p>6. Dziś o&nbsp;godzinie 12.30 Msza Święta w&nbsp;intencji ks.&nbsp;Łukasza, który obchodzi swoje imieniny. Życzymy ks.&nbsp;Łukaszowi zdrowia, siły, darów Ducha Świętego, opieki Matki Najświętszej i&nbsp;świętego Patrona na&nbsp;trud posługiwania kapłańskiego. Dzień dzisiejszy to&nbsp;patronalne święto Służby Zdrowia. Polecamy wszystkich pracujących w&nbsp;lecznictwie i&nbsp;opiekujących się chorymi Panu Bogu za&nbsp;wstawiennictwem ich Patrona – świętego Łukasza.</p> <p>7. W&nbsp;piątek (23&nbsp;października) o&nbsp;godz.&nbsp;18.30 w&nbsp;Domu Katolickim w&nbsp;Sandomierzu będzie spotkanie z&nbsp;młodym autorem Kajetanem Rajskim, jest studentem prawa na&nbsp;Uniwersytecie Jagiellońskim i&nbsp;autorem ponad 20&nbsp;książek. Spotkanie pt.: "Prawdziwy święty... czyli kto?" to&nbsp;okazja do&nbsp;zatrzymania się i&nbsp;refleksji nad tym, że&nbsp;każdy z&nbsp;nas jest powołany do&nbsp;świętości.</p> <p>8. W&nbsp;sobotę (24/25.X) jest zmiana czasu na&nbsp;zimowy. Niedzielna Msza Święta – wieczorem – będzie odprawiana o&nbsp;godz. 19.30.</p> <p>9. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, dary stołu i&nbsp;wszelkie dobro. Msza Święta za&nbsp;sprzątających wczoraj będzie odprawiona 25&nbsp;listopada o&nbsp;godz. 18.00.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;55 od&nbsp;1 do&nbsp;10.</p> <p>10. Strefa Nauki – Centrum Nauki i&nbsp;Języków Obcych na&nbsp;ulicy Okrzei, zaprasza na&nbsp;pierwsze w&nbsp;Sandomierzu warsztaty matematyczno-przyrodnicze, dla dzieci od&nbsp;I do&nbsp;III klasy. Szczegóły na&nbsp;plakacie w&nbsp;gablocie. </p> <p>11. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>12. W&nbsp;minionym tygodniu odszedł do&nbsp;Pana Andrzej Mazur. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek racz mu&nbsp;dać Panie...</em></p> <p>13. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>11. października 2015 r.</h3> <h3>XXVIII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. W&nbsp;październiku nabożeństwo różańcowe o&nbsp;17.30, na&nbsp;które zapraszamy dzieci, młodzież i&nbsp;dorosłych. Po&nbsp;nabożeństwie Msza Święta.</p> <p>3. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>4. Dzisiaj przeżywamy kolejny Dzień Papieski. Po&nbsp;Mszy Świętej będą zbierane ofiary do&nbsp;puszek na&nbsp;stypendia dla uzdolnionej młodzieży z&nbsp;ubogich rodzin.</p> <p>5. W&nbsp;przyszłą niedzielę rozpoczynamy w&nbsp;Kościele Powszechnym Tydzień Misyjny. W&nbsp;czasie Eucharystii i&nbsp;Nabożeństwa Różańcowego będziemy prosić Boga o&nbsp;dar powołań misyjnych, aby na&nbsp;całym świecie była głoszona Dobra Nowina o&nbsp;zbawieniu.<br /> Wychodząc z&nbsp;kościoła będziemy mogli złożyć swój dar materialny na&nbsp;cele misji.</p> <p>6. Zbliżamy się do&nbsp;dni szczególnej pamięci o&nbsp;zmarłych. Przyjmujemy na&nbsp;wypominki (roczne, półroczne, kwartalne), oraz oktawalne (na&nbsp;dni od&nbsp;1 do&nbsp;8 listopada).</p> <p>7. W&nbsp;przyszłą niedzielę na&nbsp;Mszy Świętej o&nbsp;godzinie 12.30 będziemy modlić się w&nbsp;intencji ks.&nbsp;Łukasza, który obchodzi swoje imieniny. Zapraszamy do&nbsp;wspólnej modlitwy.<br /> W&nbsp;piątek 9&nbsp;października ks.&nbsp;Piotr Tylec obronił pracę doktorską na&nbsp;Uniwersytecie Papieskim Jana Pawła&nbsp;II w&nbsp;Krakowie. Gratulujemy księdzu doktorowi Piotrowi, zapewniamy o&nbsp;modlitwie i&nbsp;życzymy dalszych sukcesów w&nbsp;pracy naukowej.</p> <p>8. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza&nbsp;57 od&nbsp;21 do&nbsp;30.</p> <p>9. Strefa Nauki – Centrum Nauki i&nbsp;Języków Obcych na&nbsp;ulicy Okrzei, zaprasza na&nbsp;pierwsze w&nbsp;Sandomierzu warsztaty matematyczno-przyrodnicze, dla dzieci od&nbsp;I do&nbsp;III klasy. Szczegóły na&nbsp;plakacie w&nbsp;gablocie.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>4. października 2015 r.</h3> <h3>XXVII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. W&nbsp;październiku nabożeństwo różańcowe o&nbsp;17.30, na&nbsp;które zapraszamy dzieci, młodzież i&nbsp;dorosłych. Po&nbsp;nabożeństwie Msza Święta.</p> <p>3. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa, jest prowadzona przy parafii Księży Pallotynów (przy szpitalu).</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Mickiewicza&nbsp;57 od&nbsp;11 do&nbsp;20.</p> <p>5. W&nbsp;najbliższą niedzielę w&nbsp;Katedrze odpust Błogosławionego Wincentego Kadłubka.</p> <p>6. Przyszła niedziela to&nbsp;kolejny Dzień Papieski. Tematem XV Dnia Papieskiego są&nbsp;słowa: „Jan Paweł&nbsp;II – Patron Rodziny”. Po&nbsp;Mszy Świętej będą zbierane ofiary do&nbsp;puszek na&nbsp;stypendia dla uzdolnionej młodzieży z&nbsp;ubogich rodzin.</p> <p>7. Burmistrz Miasta Sandomierza informuje, że&nbsp;we wszystkich przychodniach sandomierskich można skorzystać z&nbsp;bezpłatnych szczepień przeciw grypie od&nbsp;55 roku życia. Akcja ta&nbsp;będzie prowadzona do&nbsp;30&nbsp;listopada 2015&nbsp;roku. Szczegóły w&nbsp;gablocie.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>OGŁOSZENIA KATECHETYCZNE:</h3> <p>Schola będzie miała swoje spotkanie w&nbsp;piątek o&nbsp;godz.&nbsp;16.00.</p> <p>Ministranci – mają swoje spotkanie w&nbsp;sobotę o&nbsp;godzinie 10.00.</p> <p>I&nbsp;grupa do&nbsp;bierzmowania ma&nbsp;swoje spotkanie w&nbsp;środę. Spotkanie rozpoczynamy Nabożeństwem Różańcowym o&nbsp;17.30.</p><br /> <h3>27. września 2015 r.</h3> <h3>XXVI Niedziela Zwykła Rok B</h3> <h3>Kuria Diecezjalna informuje:</h3> <p>Z&nbsp;dniem 14&nbsp;września 2015&nbsp;r. rozpoczyna działalność przy Sądzie Biskupim w&nbsp;Sandomierzu bezpłatny punkt poradnictwa z&nbsp;zakresu prawa kanonicznego. Wszyscy zainteresowani będą mogli uzyskać w&nbsp;nim informacje dotyczące procesów małżeńskich, a&nbsp;także z&nbsp;innych dziedzin prawa kanonicznego.</p> <p>Jest to&nbsp;odpowiedź na&nbsp;wezwanie Ojca Świętego Franciszka, który w&nbsp;przededniu Synodu o&nbsp;Rodzinie i&nbsp;Roku Miłosierdzia zachęca do&nbsp;tego, aby Kościół otoczył macierzyńską troską wszystkich potrzebujących pomocy i&nbsp;znajdujących się w&nbsp;życiowych trudnościach.</p> <p>Punkt będzie czynny w&nbsp;gmachu Sądu Biskupiego w&nbsp;Sandomierzu, przy ulicy Mariackiej&nbsp;8.</p> <p>Bezpłatnych porad z&nbsp;zakresu kanonicznego prawa małżeńskiego udziela Siostra Alina Słonecka, mgr prawa kanonicznego i&nbsp;świeckiego, we&nbsp;współpracy z&nbsp;innymi pracownikami Sądu: we&nbsp;wtorek w&nbsp;godz. 9.00 – 14.00, środę 14.00 – 18.00.</p> <br /> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. W&nbsp;październiku nabożeństwo różańcowe o&nbsp;17.30, na&nbsp;które zapraszamy dzieci, młodzież i&nbsp;dorosłych. Po&nbsp;nabożeństwie Msza Święta.</p> <p>3. W&nbsp;tym tygodniu wypada I&nbsp;czwartek i&nbsp;I&nbsp;piątek miesiąca. Sposobność do&nbsp;spowiedzi świętej w&nbsp;piątek od&nbsp;godz.&nbsp;16.30. W&nbsp;pierwszą sobotę Msza Święta wynagradzająca za&nbsp;grzechy o&nbsp;16.45; wystawienie Najświętszego Sakramentu, rozważania pierwszosobotnie, różaniec i&nbsp;Msza Święta o&nbsp;18.00.</p> <p>4. 1&nbsp;października po&nbsp;Mszy Świętej wieczornej spotkanie wszystkich przynależących do&nbsp;Parafialnego Oddziału Akcji&nbsp;Katolickiej. Zapraszamy także inne osoby, które chciałyby włączyć się do&nbsp;Akcji Katolickiej.</p> <p>5. Bracia dominikanie wraz z&nbsp;proboszczem Parafii Nawrócenia Świętego Pawła zapraszają księży i&nbsp;wiernych świeckich na&nbsp;obchody uroczystości Matki Bożej Różańcowej w&nbsp;kościele Świętego Jakuba – w&nbsp;sobotę 3&nbsp;października o&nbsp;18.00 Msza Święta w&nbsp;kościele Świętego Pawła i&nbsp;procesja różańcowa do&nbsp;kościoła Świętego Jakuba; w&nbsp;niedzielę 4&nbsp;października o&nbsp;9.15 uroczysta Msza Święta o&nbsp;Matce Bożej Różańcowej w&nbsp;kościele świętego Jakuba i&nbsp;nabożeństwo różańcowe.</p> <p>6. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa rozpoczyna się dzisiaj, w&nbsp;kościele Księży Pallotynów (przy szpitalu).</p> <p>7. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Mickiewicza&nbsp;57 od&nbsp;1 do&nbsp;10.</p> <p>8. Taca z&nbsp;dzisiejszej niedzieli, zgodnie z&nbsp;dekretem finansowym przeznaczona jest na&nbsp;remont katedry sandomierskiej.</p> <p>9. Od&nbsp;5 do&nbsp;8 października 2015 roku, w&nbsp;godzinach od&nbsp;10.00-16.00 – parking przed stadionem sportowym ul.&nbsp;Koseły&nbsp;3a – będą w&nbsp;cytomammobusie wykonywane badania mammograficzne dla kobiet w&nbsp;wieku 50 – 69&nbsp;lat. Szczegóły w&nbsp;komunikacie Urzędu Miejskiego w&nbsp;gablocie przykościelnej.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>20. września 2015 r.</h3> <h3>XXV Niedziela Zwykła Rok B</h3> <h3>Kuria Diecezjalna informuje:</h3> <p>Z&nbsp;dniem 14&nbsp;września 2015&nbsp;r. rozpoczyna działalność przy Sądzie Biskupim w&nbsp;Sandomierzu bezpłatny punkt poradnictwa z&nbsp;zakresu prawa kanonicznego. Wszyscy zainteresowani będą mogli uzyskać w&nbsp;nim informacje dotyczące procesów małżeńskich, a&nbsp;także z&nbsp;innych dziedzin prawa kanonicznego.</p> <p>Jest to&nbsp;odpowiedź na&nbsp;wezwanie Ojca Świętego Franciszka, który w&nbsp;przededniu Synodu o&nbsp;Rodzinie i&nbsp;Roku Miłosierdzia zachęca do&nbsp;tego, aby Kościół otoczył macierzyńską troską wszystkich potrzebujących pomocy i&nbsp;znajdujących się w&nbsp;życiowych trudnościach.</p> <p>Punkt będzie czynny w&nbsp;gmachu Sądu Biskupiego w&nbsp;Sandomierzu, przy ulicy Mariackiej&nbsp;8.</p> <p>Bezpłatnych porad z&nbsp;zakresu kanonicznego prawa małżeńskiego udziela Siostra Alina Słonecka, mgr prawa kanonicznego i&nbsp;świeckiego, we&nbsp;współpracy z&nbsp;innymi pracownikami Sądu: we&nbsp;wtorek w&nbsp;godz. 9.00 – 14.00, środę 14.00 – 18.00.</p> <br /> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy św.&nbsp;wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Katechizacja przedmałżeńska dla tych, którzy planują w&nbsp;najbliższym czasie zawrzeć Sakrament małżeństwa rozpocznie się w&nbsp;niedzielę 27&nbsp;września o&nbsp;godzinie 16.00 w&nbsp;kościele Księży Pallotynów, przy szpitalu.</p> <p>3. W&nbsp;minionym tygodniu odwołał Pan Bóg do&nbsp;wieczności Irenę Chmiel i&nbsp;Stanisława Feliksiaka, którego pogrzeb będzie jutro o&nbsp;10.00. Polecajmy ich Miłosierdziu Bożemu odmawiając wspólnie: wieczny odpoczynek racz im&nbsp;dać Panie...</p> <p>4. Wszystkich, którzy chcą śpiewać w&nbsp;scholi parafialnej, zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 9.00.<br/> Ministrantów – starszych i&nbsp;młodszych oraz chłopców, którzy by&nbsp;chcieli zostać ministrantami zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 10.00.</p> <p>5. Jak co&nbsp;roku z&nbsp;naszej Parafii organizowana jest pielgrzymka parafialna na&nbsp;Jasną Górę w&nbsp;ostatnią niedzielę września, aby przeżywać spotkanie z&nbsp;Jasnogórską Panią razem z&nbsp;Rodzinami z&nbsp;całej Polski. Wyjazd spod kościoła 27&nbsp;września o&nbsp;5.30. Powrót ok.&nbsp;20.00. Cena 50&nbsp;zł.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Mickiewicza 59 od&nbsp;21 do&nbsp;30.</p> <p>7. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>8. XVI Świętokrzyski Rajd Pielgrzymkowy 26&nbsp;września. Szczegóły w&nbsp;gablocie.</p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>13. września 2015 r.</h3> <h3>XXIV Niedziela Zwykła Rok B</h3> <h3>Kuria Diecezjalna informuje:</h3> <p>Z&nbsp;dniem 14&nbsp;września 2015&nbsp;r. rozpoczyna działalność przy Sądzie Biskupim w&nbsp;Sandomierzu bezpłatny punkt poradnictwa z&nbsp;zakresu prawa kanonicznego. Wszyscy zainteresowani będą mogli uzyskać w&nbsp;nim informacje dotyczące procesów małżeńskich, a&nbsp;także z&nbsp;innych dziedzin prawa kanonicznego.</p> <p>Jest to&nbsp;odpowiedź na&nbsp;wezwanie Ojca Świętego Franciszka, który w&nbsp;przededniu Synodu o&nbsp;Rodzinie i&nbsp;Roku Miłosierdzia zachęca do&nbsp;tego, aby Kościół otoczył macierzyńską troską wszystkich potrzebujących pomocy i&nbsp;znajdujących się w&nbsp;życiowych trudnościach.</p> <p>Punkt będzie czynny w&nbsp;gmachu Sądu Biskupiego w&nbsp;Sandomierzu, przy ulicy Mariackiej&nbsp;8.</p> <p>Bezpłatnych porad z&nbsp;zakresu kanonicznego prawa małżeńskiego udziela Siostra Alina Słonecka, mgr prawa kanonicznego i&nbsp;świeckiego, we&nbsp;współpracy z&nbsp;innymi pracownikami Sądu: we&nbsp;wtorek w&nbsp;godz. 9.00 – 14.00, środę 14.00 – 18.00.</p> <br /> <p>1. Kancelaria parafialna czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy św.&nbsp;wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Jutro u&nbsp;nas odpust parafialny tytułu kościoła – Podwyższenia Krzyża Świętego. Zapraszamy wszystkich parafian do&nbsp;udziału we&nbsp;Mszy Świętej. Msza Święta będzie o&nbsp;6.30 oraz o&nbsp;godzinie 9.00 z&nbsp;kazaniem i&nbsp;Suma odpustowa z&nbsp;udziałem kapłanów z&nbsp;dekanatu o&nbsp;godzinie 18.00.<br /> Podczas tej Mszy Świętej młodzież klas II&nbsp;gimn. w&nbsp;ramach przygotowania do&nbsp;bierzmowania złoży wyznanie wiary.<br /> Po&nbsp;Mszy Świętej zapraszamy uczniów klas I&nbsp;wraz z&nbsp;rodzicami na&nbsp;krótkie spotkanie w&nbsp;związku z&nbsp;rozpoczęciem przygotowania do&nbsp;bierzmowania.</p> 3. W&nbsp;dniach 18, 19&nbsp;i&nbsp;20 września w&nbsp;Staszowie odbywać się będą Diecezjalne Dni Młodych. Organizujemy wyjazd dla młodzieży od&nbsp;3&nbsp;klasy Gimnazjum. Koszt – 50&nbsp;zł. Zapisy wraz z&nbsp;wpłatą - do&nbsp;wtorku - u&nbsp;ks.&nbsp;Tadeusza. <p>4. W&nbsp;piątek przeżywamy święto św.&nbsp;Stanisława Kostki – patrona młodzieży. W&nbsp;związku z&nbsp;tym zapraszamy na&nbsp;triduum przygotowujące do&nbsp;tej uroczystości. Specjalne zaproszenie kierujemy do&nbsp;młodzieży przygotowującej się do&nbsp;bierzmowania.<br /> Na&nbsp;Mszę Św.&nbsp;o&nbsp;godz. 18.00 zapraszamy: we&nbsp;środę – kl.&nbsp;I, w&nbsp;czwartek – kl.&nbsp;III, piątek – kl.&nbsp;II.<br /> Młodzież, która nie może przyjść w&nbsp;wyznaczonym dniu, zapraszamy w&nbsp;jeden z&nbsp;dni pozostałych.</p> <p>5. Wszystkich, którzy chcą śpiewać w&nbsp;scholi parafialnej, zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 9.00.<br /> Ministrantów – starszych i&nbsp;młodszych oraz chłopców, którzy by&nbsp;chcieli zostać ministrantami zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 10.00.</p> <p>6. Jak co&nbsp;roku z&nbsp;naszej Parafii organizowana jest pielgrzymka parafialna na&nbsp;Jasną Górę w&nbsp;ostatnią niedzielę września, aby przeżywać spotkanie z&nbsp;Jasnogórską Panią razem z&nbsp;Rodzinami z&nbsp;całej Polski. Wyjazd spod kościoła 27&nbsp;września o&nbsp;5.30. Powrót ok.&nbsp;20.00. Cena 50&nbsp;zł.</p> <p>7. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Mickiewicza&nbsp;59 od&nbsp;11 do&nbsp;20. Bardzo dziękuję Panu Jankowi Łukaszkowi za&nbsp;okazaną mi&nbsp;życzliwość i&nbsp;pomoc w&nbsp;dniu 13&nbsp;sierpnia na&nbsp;Kobiernikach. <em>Bóg zapłać</em> Rodzinie z&nbsp;Kobiernik za&nbsp;przekazaną ofiarę na&nbsp;zakup słodyczy dla dzieci.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. XVI&nbsp;Świętokrzyski Rajd Pielgrzymkowy 26&nbsp;września. Szczegóły w&nbsp;gablocie.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>6. września 2015 r.</h3> <h3>XXIII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna będzie czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. Jutro piesza pielgrzymka do&nbsp;Sulisławic. Wyjście z&nbsp;katedry - szczegóły w&nbsp;gablocie.</p> <p>3. We&nbsp;wtorek 8&nbsp;września święto Narodzenia NMP, zwane Matki Bożej siewnej. Odpust tytułu kościoła w&nbsp;Katedrze. Suma odpustowa o&nbsp;17.30.</p> <p>4. U&nbsp;nas odpust parafialny tytułu kościoła 14&nbsp;września. Suma odpustowa o&nbsp;godzinie 18.00.</p> <p>5. W&nbsp;sobotę 12&nbsp;września w&nbsp;godzinach od&nbsp;9.00 do&nbsp;12.00 spotkanie przy parafii św.&nbsp;Józefa dla pragnących poznać Dzieło Intronizacji Najświętszego Serca Pana Jezusa.</p> <p>6. W&nbsp;dniach 18,&nbsp;19 i&nbsp;20 września w&nbsp;Staszowie odbywać się będą Diecezjalne Dni Młodych. Organizujemy wyjazd dla młodzieży od&nbsp;3&nbsp;klasy Gimnazjum. Koszt – 50&nbsp;zł. Zapisy wraz z&nbsp;wpłatą u&nbsp;ks.&nbsp;Tadeusza.</p> <p>7. Wszystkich, którzy chcą śpiewać w&nbsp;scholi parafialnej, zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 9.00&nbsp;Ministrantów – starszych i&nbsp;młodszych oraz chłopców którzy by&nbsp;chcieli zostać ministrantami zapraszamy na&nbsp;spotkanie w&nbsp;sobotę na&nbsp;godzinę 10.00.</p> <p>8. Jak co&nbsp;roku z&nbsp;naszej Parafii jest pielgrzymka parafialna na&nbsp;Jasną Górę w&nbsp;ostatnią niedzielę września, aby przeżywać spotkanie z&nbsp;Jasnogórską Panią razem z&nbsp;Rodzinami z&nbsp;całej Polski. Wyjazd spod kościoła 27&nbsp;września o&nbsp;5.30. Powrót ok.&nbsp;20.00. Cena 50&nbsp;zł.</p> <p>9. <em>Bóg zapłać</em> za sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <strong>Do sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Mickiewicza&nbsp;59 od&nbsp;1 do&nbsp;10.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>11. W&nbsp;minionym tygodniu odwołał Pan Bóg do&nbsp;wieczności: Helenę Gawron i&nbsp;Zofię Łukaszek. Polećmy je&nbsp;Bożemu miłosierdziu, odmawiając: <em>Wieczny odpoczynek...</em></p> <p>12. XVI Świętokrzyski Rajd Pielgrzymkowy 26&nbsp;września. Szczegóły w&nbsp;gablocie.</p> <p>13. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>30. sierpnia 2015 r.</h3> <h3>XXII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna będzie czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy świętej wieczornej, która jest odprawiana o&nbsp;godzinie 18.00.</p> <p>2. We&nbsp;wtorek 1&nbsp;września o&nbsp;godzinie 8.00 będzie odprawiona Msza Święta na&nbsp;rozpoczęcie roku szkolnego 2015/16. Zachęcamy dzieci i&nbsp;młodzież, by&nbsp;rozpoczęli nowy rok szkolny pojednani z&nbsp;Bogiem w&nbsp;sakramencie pokuty. Spowiadamy codziennie od&nbsp;godziny 6.00 do&nbsp;6.50 i&nbsp;od&nbsp;godziny 17.30 do&nbsp;18.30. Dzieci z&nbsp;klas pierwszych zapraszamy z&nbsp;przyborami szkolnymi do&nbsp;poświęcenia w&nbsp;niedzielę 6&nbsp;września na&nbsp;godzinę 12.30.</p> <p>3. W&nbsp;tym tygodniu wypada I&nbsp;czwartek, piątek i&nbsp;sobota miesiąca września. Spowiadamy w&nbsp;I&nbsp;piątek od&nbsp;godziny 16.45. O&nbsp;17.00 będzie Msza Święta. W&nbsp;sobotę nabożeństwo pierwszosobotnie rozpocznie się o&nbsp;godzinie 17.15.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, zamówioną Mszę Świętą w&nbsp;intencjach sprzątających rodzin, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;2, od&nbsp;51 do&nbsp;60.</p> <p>5. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>6. 5&nbsp;września, w&nbsp;sobotę o&nbsp;19.30 Strefa Nauki przy ul.&nbsp;Okrzei&nbsp;5 zaprasza na&nbsp;kolejne wyjątkowe wydarzenie naukowe pt.&nbsp;„Noc gwiazd”. Szczegóły na&nbsp;plakacie.</p> <p>7. 5&nbsp;września na&nbsp;Rynku Starego Miasta, w&nbsp;godzinach od&nbsp;14 do&nbsp;22 będzie koncert charytatywny, podczas którego będzie przeprowadzona zbiórka pieniędzy dla chorej na&nbsp;raka sandomierzanki Małgorzaty Bażant.</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>23. sierpnia 2015 r.</h3> <h3>XXI Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i&nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą Świętą.</p> <p>3. W&nbsp;środę 26&nbsp;sierpnia jest liturgiczna uroczystość Jasnogórskiej Królowej Polski. Zapraszamy do&nbsp;liczniejszego udziału we&nbsp;Mszy Świętej odprawianej według porządku dnia powszedniego.</p> <p>4. W&nbsp;sobotę 29&nbsp;sierpnia o&nbsp;5.30 wyjście z&nbsp;Katedry pielgrzymki trzeżwościowej do&nbsp;Radomyśla. Możliwość powrotu do&nbsp;Sandomierza busem – po&nbsp;południu.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego 2, od&nbsp;41 do&nbsp;50.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>16. sierpnia 2015 r.</h3> <h3>XX Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i &nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą Świętą.</p> <p>3. Jak ogłaszaliśmy w&nbsp;czerwcu - od&nbsp;1&nbsp;sierpnia dołączył do&nbsp;zespołu kapłanów pracujących w&nbsp;parafii ks.&nbsp;doktorant Piotr Tylec. Jest kapłanem wspomagającym nas w&nbsp;pracy duszpasterskiej, będzie mieszkał w&nbsp;Seminarium Duchownym i&nbsp;pełnił funkcję Dyrektora Biblioteki Seminaryjnej.</p> <p>4. Witamy pieszych pielgrzymów jasnogórskich i&nbsp;składamy podziękowanie – <em>Bóg zapłać</em> – za&nbsp;dar modlitwy w&nbsp;naszych intencjach.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline;">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Maciejowskiego 2, od&nbsp;31 do&nbsp;40.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>9. sierpnia 2015 r.</h3> <h3>XIX Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza Święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i&nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą Świętą.</p> <p>3. W&nbsp;sobotę 15&nbsp;sierpnia Uroczystość Wniebowzięcia NMP, zwana popularnie Uroczystością Matki Bożej Zielnej. Porządek nabożeństw niedzielny. Poświęcenie Ziół na&nbsp;każdej Mszy Świętej. O&nbsp;12.30 zaszczycą naszą świątynię goście w&nbsp;osobach Samorządowców i&nbsp;Sybiraków, a&nbsp;po&nbsp;Mszy Świętej odsłonięcie „Ronda Sybiraka”.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline;"> prosimy</span> w&nbsp;piątek na&nbsp;godz. 18.30</strong> mieszkańców bloku Maciejowskiego&nbsp;2, od&nbsp;21 do&nbsp;30.</p> <p>5. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>6. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>2. sierpnia 2015 r.</h3> <h3>XVIII Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza Święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i&nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą Świętą.</p> <p>3. W&nbsp;tym tygodniu jest pierwszy czwartek i&nbsp;piątek miesiąca sierpnia. W&nbsp;I&nbsp;piątek okazja do&nbsp;spowiedzi od&nbsp;17.00.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline;">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;2, od&nbsp;2 do&nbsp;20.</p> <p>5. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>6. We&nbsp;wtorek wyrusza z&nbsp;Sandomierza piesza pielgrzymka na&nbsp;Jasną Górę.</p> <p>7. W&nbsp;minionym tygodniu odszedł od&nbsp;nas do&nbsp;wieczności Wacław Chaniewski i&nbsp;Piotr Opolski. Polećmy ich Bożemu miłosierdziu odmawiając: wieczny odpoczynek racz im&nbsp;dać Panie...</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>19. lipca 2015 r.</h3> <h3>XVI Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza Święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i&nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą świętą.</p> <p>3. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty, za&nbsp;dary stołu i&nbsp;wszelkie dobro. <br /><strong>Do&nbsp;sprzątania <span style="text-decoration: underline;"> prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;61 do&nbsp;68.</p> <p>4. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>5. W&nbsp;zakrystii można się zapisać na&nbsp;Pieszą Pielgrzymkę Diecezji Sandomierskiej na&nbsp;Jasną Górę.</p> <p>6. W&nbsp;sobotę wspominamy w&nbsp;liturgii Św.&nbsp;Krzysztofa, patrona kierowców. Zapraszamy na&nbsp;Mszę Świętą o&nbsp;godzinie 18.00 wszystkich, którzy chcą poświęcić swój pojazd mechaniczny. Poświęcenie będzie po&nbsp;Mszy Świętej. Przy poświęceniu będzie możliwość złożenia ofiary jako pomoc dla misjonarzy pracujących na&nbsp;misjach na&nbsp;zakup pojazdów ułatwiających misjonarzom pracę na&nbsp;terenach misyjnych. Zwraca się o&nbsp;to do&nbsp;nas organizacja istniejąca przy Episkopacie polskim o&nbsp;nazwie MIVA Polska.</p> <p>7. Tego dnia także imieniny naszego Księdza Biskupa Ordynariusza. Pamiętajmy o&nbsp;Nim w&nbsp;naszych modlitwach.</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>12. lipca 2015 r.</h3> <h3>XV Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej.</p> <p>2. W&nbsp;wakacje w&nbsp;dni powszednie Msza Święta jest odprawiana o&nbsp;godzinie 6.30, 17.30 i&nbsp;18.00. Okazja do&nbsp;spowiedzi 15&nbsp;minut przed Mszą świętą.</p> <p>3. Legion Maryi zakupił szkaplerze, które będzie można otrzymać we&nbsp;czwartek na&nbsp;Mszy Świętej o&nbsp;godzinie 18.00, podczas której będzie przyjęcie do&nbsp;Szkaplerza.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, kwiaty, za&nbsp;dary stołu i&nbsp;wszelkie dobro. <br /><strong>Do sprzątania <span style="text-decoration: underline;">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;51 do&nbsp;60.</p> <p>5. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>6. W&nbsp;zakrystii można się zapisać na&nbsp;Pieszą Pielgrzymkę Diecezji Sandomierskiej na&nbsp;Jasną Górę.</p> <p>7. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Małgorzatę Piotrowską - Pająk i&nbsp;Annę Jeziorowską, której pogrzeb będzie we&nbsp;wtorek o&nbsp;godzinie 14.00.</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>5. lipca 2015 r.</h3> <h3>XIV Niedziela Zwykła Rok B</h3> <em><p>Drodzy Młodzi!</p> <p>Zazwyczaj w&nbsp;tym czasie podejmujecie ważne życiowe wybory, dotyczące dalszej nauki lub pracy. Duch Święty oświeca serca wiernych i&nbsp;mówi, czego Bóg od&nbsp;nas oczekuje. On&nbsp;wskazuje najlepszą drogę, która spełni wszystkie nasze oczekiwania, mając jednocześnie wymiar wspólnotowy.</p> <p>Pośród wielu powołań, wyróżnia się powołanie do&nbsp;kapłaństwa – poświęcenie się na&nbsp;służbę Chrystusowi, aby stać się szafarzem Jego Miłości. Młody Przyjacielu, może właśnie Ciebie Chrystus powołuje do&nbsp;Swojego Kapłaństwa? Módl się wytrwale żeby zrozumieć Jego wolę.</p> <p>Jeżeli czujesz, że&nbsp;możesz mieć powołanie, Seminarium Duchowne w&nbsp;Sandomierzu jest miejscem gdzie możesz je&nbsp;wypełnić poprzez formację. Zostań kapłanem w&nbsp;Sandomierzu, bo&nbsp;tu jest Twój dom i&nbsp;Twoje miejsce. Więcej informacji możesz znaleźć na&nbsp;naszej stronie internetowej: <a href="http://wsdsandomierz.pl/"> wsdsandomierz.pl</a></p> <p style="text-align: right;">Wspólnota Seminarium Duchownego w&nbsp;Sandomierzu</p></em><br /> <p>1. Kancelaria parafialna w&nbsp;wakacje czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej. W&nbsp;wakacje Msze Święte o&nbsp;godzinach 6.30, 17.30 i&nbsp;18.00.</p> <p>2. Jak ogłaszaliśmy tydzień temu, do&nbsp;naszej Parafii przybyli księża wikariusze: ks.&nbsp;mgr Tadeusz Janda i&nbsp;ks.&nbsp;mgr Piotr Niewrzałek. Witamy ich serdecznie i&nbsp;życzymy Bożego błogosławieństwa w&nbsp;pracy dla dobra Parafii.</p> <p>3. <em>Bóg zapłać</em> Państwu Walczak i&nbsp;Majchrzyk za&nbsp;sprzątanie kościoła i&nbsp;złożoną ofiarę, za&nbsp;dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;41 do&nbsp;50.</p> <p>4. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>5. W&nbsp;zakrystii można się zapisać na&nbsp;Pieszą Pielgrzymkę Diecezji Sandomierskiej na&nbsp;Jasną Górę.</p> <p>6. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>28. czerwca 2015 r.</h3> <h3>XIII Niedziela Zwykła Rok B</h3> <em><p>Drodzy Młodzi!</p> <p>Zazwyczaj w&nbsp;tym czasie podejmujecie ważne życiowe wybory, dotyczące dalszej nauki lub pracy. Duch Święty oświeca serca wiernych i&nbsp;mówi, czego Bóg od&nbsp;nas oczekuje. On&nbsp;wskazuje najlepszą drogę, która spełni wszystkie nasze oczekiwania, mając jednocześnie wymiar wspólnotowy.</p> <p>Pośród wielu powołań, wyróżnia się powołanie do&nbsp;kapłaństwa – poświęcenie się na&nbsp;służbę Chrystusowi, aby stać się szafarzem Jego Miłości. Młody Przyjacielu, może właśnie Ciebie Chrystus powołuje do&nbsp;Swojego Kapłaństwa? Módl się wytrwale żeby zrozumieć Jego wolę.</p> <p>Jeżeli czujesz, że&nbsp;możesz mieć powołanie, Seminarium Duchowne w&nbsp;Sandomierzu jest miejscem gdzie możesz je&nbsp;wypełnić poprzez formację. Zostań kapłanem w&nbsp;Sandomierzu, bo&nbsp;tu jest Twój dom i&nbsp;Twoje miejsce. Więcej informacji możesz znaleźć na&nbsp;naszej stronie internetowej: <a href="http://wsdsandomierz.pl/"> wsdsandomierz.pl</a></p> <p style="text-align: right;">Wspólnota Seminarium Duchownego w&nbsp;Sandomierzu</p></em><br /> <p>1. Kancelaria parafialna w&nbsp;wakacje – od&nbsp;jutra – czynna od&nbsp;poniedziałku do&nbsp;piątku codziennie po&nbsp;Mszy Świętej wieczornej.</p> <p>2. Jutro uroczystość Świętych Apostołów Piotra i&nbsp;Pawła. Msza Święta będzie odprawiona o&nbsp;godzinie 6.30, 9.00, 17.00 i&nbsp;18.00. Taca z&nbsp;dnia jutrzejszego przeznaczona jest na&nbsp;Stolicę Apostolską.</p> <p>3. W&nbsp;tym tygodniu wypada I&nbsp;czwartek, piątek i&nbsp;sobota miesiąca lipca. Spowiadamy codziennie rano i&nbsp;wieczorem 15&nbsp;minut przed rozpoczęciem Mszy Świętej; w&nbsp;I&nbsp;piątek od&nbsp;16.30. Nabożeństwo I&nbsp;soboty rozpocznie się o&nbsp;godzinie 17.15.</p> <p>4. W&nbsp;pierwszą niedzielę lipca na&nbsp;Świętym Krzyżu odpust Najdroższej Krwi Chrystusa, na&nbsp;który są&nbsp;zaproszone Rodziny z&nbsp;całej diecezji.</p> <p>5. Otrzymaliśmy w&nbsp;tym tygodniu z&nbsp;Kurii pisma informujące, że&nbsp;z&nbsp;dniem 1&nbsp;lipca 2015 roku ks.&nbsp;Marcin Świeboda zostaje przeniesiony do&nbsp;parafii Św.&nbsp;Józefa w&nbsp;Sandomierzu, a&nbsp;do&nbsp;nas przychodzi ks.&nbsp;Tadeusz Janda ze Stalowej Woli i&nbsp; ks.&nbsp;Piotr Niewrzałek z&nbsp;Trześni oraz od&nbsp;1&nbsp;sierpnia ks.&nbsp;Piotr Tylec na&nbsp;½&nbsp;etatu, z&nbsp;zamieszkaniem w&nbsp;Seminarium Duchownym. W&nbsp;dniach roboczych poświęci Ksiądz pierwszą część dnia na&nbsp;wypełnianie obowiązków diecezjalnych. Odchodzącemu ks.&nbsp;Marcinowi dziękujemy za&nbsp;prawie 2&nbsp;lata pracy w&nbsp;naszej Parafii i&nbsp;życzymy zarówno księdzu Marcinowi jak i&nbsp;Księżom, którzy do&nbsp;nas przychodzą Bożego błogosławieństwa.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /><strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;31 do&nbsp;40.</p> <p>7. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>8. W&nbsp;minionym tygodniu odbył się pogrzeb Emilii Marty Rowińskiej. Polećmy ją&nbsp;Miłosierdziu Bożemu: <em>Wieczny odpoczynek...</em></p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele we&nbsp;Mszy Świętej, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>21. czerwca 2015 r.</h3> <h3>XII Niedziela Zwykła Rok B</h3> <em><p>Drodzy Młodzi!</p> <p>Zazwyczaj w&nbsp;tym czasie podejmujecie ważne życiowe wybory, dotyczące dalszej nauki lub pracy. Duch Święty oświeca serca wiernych i&nbsp;mówi, czego Bóg od&nbsp;nas oczekuje. On&nbsp;wskazuje najlepszą drogę, która spełni wszystkie nasze oczekiwania, mając jednocześnie wymiar wspólnotowy.</p> <p>Pośród wielu powołań, wyróżnia się powołanie do&nbsp;kapłaństwa – poświęcenie się na&nbsp;służbę Chrystusowi, aby stać się szafarzem Jego Miłości. Młody Przyjacielu, może właśnie Ciebie Chrystus powołuje do&nbsp;Swojego Kapłaństwa? Módl się wytrwale żeby zrozumieć Jego wolę.</p> <p>Jeżeli czujesz, że&nbsp;możesz mieć powołanie, Seminarium Duchowne w&nbsp;Sandomierzu jest miejscem gdzie możesz je&nbsp;wypełnić poprzez formację. Zostań kapłanem w&nbsp;Sandomierzu, bo&nbsp;tu jest Twój dom i&nbsp;Twoje miejsce. Więcej informacji możesz znaleźć na&nbsp;naszej stronie internetowej: <a href="http://wsdsandomierz.pl/"> wsdsandomierz.pl</a></p> <p style="text-align: right;">Wspólnota Seminarium Duchownego w&nbsp;Sandomierzu</p></em><br /> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Trwa czerwiec – miesiąc poświęcony Najświętszemu Sercu Pana Jezusa. Dziś nabożeństwo po&nbsp;Mszy&nbsp;św. o&nbsp;godz.&nbsp;16.00, w&nbsp;tygodniu zapraszamy na&nbsp;17.40.</p> <p>3. W&nbsp;piątek na&nbsp;zakończenie roku szkolnego odprawimy Mszę Świętą o&nbsp;godz.&nbsp;8.00, na&nbsp;którą zapraszamy dzieci, młodzież, rodziców, nauczycieli, wychowawców. Zachęcamy do&nbsp;skorzystania z&nbsp;sakramentu pokuty – spowiadamy codziennie od&nbsp;6.00 do&nbsp;7.00 i&nbsp;od&nbsp;17.00 do&nbsp;18.00.</p> <p>4. W&nbsp;pierwszą niedzielę lipca na&nbsp;Świętym Krzyżu odpust Najdroższej Krwi Chrystusa, na&nbsp;który są&nbsp;zaproszone Rodziny z&nbsp;całej diecezji.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, dary stołu, wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz.&nbsp;7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;21 do&nbsp;30.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. W&nbsp;minionym tygodniu odbył się pogrzeb Zdzisława Makarewicza i&nbsp;Zofii Baran. Polećmy naszych zmarłych Miłosierdziu Bożemu: <em>Wieczny odpoczynek...</em></p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>14. czerwca 2015 r.</h3> <h3>XI Niedziela Zwykła Rok B</h3> <em><p>Drodzy Młodzi!</p> <p>Zazwyczaj w&nbsp;tym czasie podejmujecie ważne życiowe wybory, dotyczące dalszej nauki lub pracy. Duch Święty oświeca serca wiernych i&nbsp;mówi, czego Bóg od&nbsp;nas oczekuje. On&nbsp;wskazuje najlepszą drogę, która spełni wszystkie nasze oczekiwania, mając jednocześnie wymiar wspólnotowy.</p> <p>Pośród wielu powołań, wyróżnia się powołanie do&nbsp;kapłaństwa – poświęcenie się na&nbsp;służbę Chrystusowi, aby stać się szafarzem Jego Miłości. Młody Przyjacielu, może właśnie Ciebie Chrystus powołuje do&nbsp;Swojego Kapłaństwa? Módl się wytrwale żeby zrozumieć Jego wolę.</p> <p>Jeżeli czujesz, że&nbsp;możesz mieć powołanie, Seminarium Duchowne w&nbsp;Sandomierzu jest miejscem gdzie możesz je&nbsp;wypełnić poprzez formację. Zostań kapłanem w&nbsp;Sandomierzu, bo&nbsp;tu jest Twój dom i&nbsp;Twoje miejsce. Więcej informacji możesz znaleźć na&nbsp;naszej stronie internetowej: <a href="http://wsdsandomierz.pl/"> wsdsandomierz.pl</a></p> <p style="text-align: right;">Wspólnota Seminarium Duchownego w&nbsp;Sandomierzu</p></em><br /> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Trwa czerwiec – miesiąc poświęcony Najświętszemu Sercu Pana Jezusa. Dziś nabożeństwo po&nbsp;Mszy&nbsp;św. o&nbsp;godz.&nbsp;16.00, w&nbsp;tygodniu zapraszamy na&nbsp;17.40.</p> <p>3. W&nbsp;środę (17&nbsp;czerwca) odpust parafialny – św. Brata Alberta. Msze Święte o&nbsp;godz. 6.30, 9.00. O&nbsp;godz.&nbsp;18.00 – suma z&nbsp;udziałem kapłanów z&nbsp;dekanatu. Zapraszamy do&nbsp;uczestnictwa i&nbsp;uczczenia naszego świętego Patrona.</p> <p>4. W&nbsp;piątek (19&nbsp;czerwca) przypada 30.&nbsp;rocznica święceń kapłańskich Biskupa Krzysztofa Nitkiewicza. Tego dnia w&nbsp;katedrze, o&nbsp;godz.&nbsp;10.00 biskup wyświęci na&nbsp;kapłanów czterech diakonów. Pamiętajmy o&nbsp;nich w&nbsp;modlitwie.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę, dary stołu. <em>Bóg zapłać</em> wszystkim, którzy pomagali pięknie przeżyć oktawę Bożego Ciała. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline"> prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;11 do&nbsp;20.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. Komitet „Stop Aborcji” zachęca nas do&nbsp;złożenia podpisu pod projektem ustawy przeciwko finansowaniu z&nbsp;pieniędzy publicznych zabiegów <em>in&nbsp;vitro</em>, refundacji pigułek wczesnoporonnych dla dzieci, które ukończyły 15&nbsp;lat. Potrzebny jest PESEL.</p> <p>8. W&nbsp;minionym tygodniu odbył się pogrzeb Karola Świerkuli. Jutro o&nbsp;godz.&nbsp;15.00 pożegnamy zmarłą Danutę Oszytko. Polećmy naszych zmarłych Miłosierdziu Bożemu: <em>Wieczny odpoczynek...</em></p> <p>9. Dzisiaj Msza&nbsp;św. o&nbsp;16.00 i&nbsp;spotkanie dla kandydatów do&nbsp;bierzmowania z&nbsp;klas I&nbsp;gimnazjów. W&nbsp;przyszłą niedzielę – Msza&nbsp;św. i&nbsp;spotkanie dla kandydatów z&nbsp;klas&nbsp;II.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>7. czerwca 2015 r.</h3> <h3>X Niedziela Zwykła Rok B</h3> <em><p>Drodzy Młodzi!</p> <p>Zazwyczaj w&nbsp;tym czasie podejmujecie ważne życiowe wybory, dotyczące dalszej nauki lub pracy. Duch Święty oświeca serca wiernych i&nbsp;mówi, czego Bóg od&nbsp;nas oczekuje. On&nbsp;wskazuje najlepszą drogę, która spełni wszystkie nasze oczekiwania, mając jednocześnie wymiar wspólnotowy.</p> <p>Pośród wielu powołań, wyróżnia się powołanie do&nbsp;kapłaństwa – poświęcenie się na&nbsp;służbę Chrystusowi, aby stać się szafarzem Jego Miłości. Młody Przyjacielu, może właśnie Ciebie Chrystus powołuje do&nbsp;Swojego Kapłaństwa? Módl się wytrwale żeby zrozumieć Jego wolę.</p> <p>Jeżeli czujesz, że&nbsp;możesz mieć powołanie, Seminarium Duchowne w&nbsp;Sandomierzu jest miejscem gdzie możesz je&nbsp;wypełnić poprzez formację. Zostań kapłanem w&nbsp;Sandomierzu, bo&nbsp;tu jest Twój dom i&nbsp;Twoje miejsce. Więcej informacji możesz znaleźć na&nbsp;naszej stronie internetowej: <a href="http://wsdsandomierz.pl/"> wsdsandomierz.pl</a></p> <p style="text-align: right;">Wspólnota Seminarium Duchownego w&nbsp;Sandomierzu</p></em><br /> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj I&nbsp;niedziela miesiąca. O&nbsp;godz.&nbsp;15.30 – nabożeństwo eucharystyczne i&nbsp;procesja. Po&nbsp;Mszy&nbsp;św. o&nbsp;godz.&nbsp;16.00 zmiana tajemnic dla członków Kół Żywego Różańca.</p> <p>3. W&nbsp;czerwcu nabożeństwo do&nbsp;Serca Pana Jezusa – godz. 17.30 wraz z&nbsp;procesją. Zapraszamy do&nbsp;licznego udziału. Zakończenie oktawy Bożego Ciała w&nbsp;czwartek. Tego dnia poświęcenie ziół i&nbsp;kwiatów oraz specjalne błogosławieństwo dzieci.</p> <p>4. W&nbsp;piątek Uroczystość Najświętszego Serca Pana Jezusa. Z&nbsp;racji święta nie obowiązuje wstrzemięźliwość od&nbsp;potraw mięsnych. Ministranci i&nbsp;lektorzy mają swoje spotkanie po&nbsp;Mszy o&nbsp;godz.&nbsp;18.00.</p> <p>5. W&nbsp;sobotę, 13&nbsp;czerwca odbędzie się VI&nbsp;Sandomierski Rajd Papieski. Trasa powiedzie do&nbsp;Sulisławic. Rajd wystartuje ze&nbsp;Starego Rynku o&nbsp;godz.&nbsp;9.00. Biuro organizacyjne Rajdu będzie czynne od&nbsp;8:00 Zakończenie – ok.&nbsp;godz.&nbsp;13.00. Zaprasza Biskup Sandomierski i&nbsp;MOSiR.</p> <p>6. Dzisiaj obchodzimy Święto Dziękczynienia. Zbiórka do&nbsp;puszek na&nbsp;rzecz Świątyni Opatrzności Bożej w&nbsp;Warszawie.</p> <p>7. <em>Bóg zapłać</em> za&nbsp;przygotowanie ołtarza na&nbsp;procesję Bożego Ciała. <em>Bóg zapłać</em> za&nbsp;dary stołu, zamówione Msze święte w&nbsp;intencji ks.&nbsp;Proboszcza. <br /><strong>Do sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego&nbsp;4, od&nbsp;1 do&nbsp;10.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. W&nbsp;minionym tygodniu Pan Bóg powołał z&nbsp;naszej wspólnoty parafialnej Zbigniewa Kamińskiego. Polećmy go&nbsp;Bożemu Miłosierdziu – <em>Wieczny odpoczynek...</em></p> <p>10. Msza&nbsp;św. i&nbsp;spotkanie dla kandydatów do&nbsp;bierzmowania z&nbsp;klas I&nbsp;gimnazjów – w&nbsp;przyszłą niedzielę o&nbsp;godz.&nbsp;16.00.</p> <p>11. Kończą się zapisy na&nbsp;turnusy wakacyjne dla dzieci i&nbsp;młodzieży. Są&nbsp;jeszcze wolne miejsca na&nbsp;oazę. Szczegóły – w&nbsp;gablocie i&nbsp;u&nbsp;ks.&nbsp;Marcina.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>31. maja 2015 r.</h3> <h3>Uroczystość Trójcy Świętej</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj zakończenie nabożeństw majowych – godz. 15.30. W&nbsp;czerwcu nabożeństwo do&nbsp;Serca Pana Jezusa w&nbsp;dni powszednie – godz. 17.30.</p> <p>3. W&nbsp;czwartek Uroczystość Bożego Ciała. O&nbsp;godz. 9.30 Msza&nbsp;św. w&nbsp;naszym kościele, której przewodniczył będzie ks.&nbsp;bp&nbsp;Krzysztof Nitkiewicz i&nbsp;poprowadzi procesję do&nbsp;czterech ołtarzy. Zakończenie procesji przy kościele św.&nbsp;Michała. Prosimy jak w&nbsp;latach poprzednich o&nbsp;przygotowanie ołtarza mieszkańców bloków przy ulicy Mickiewicza oraz okolicznych ulic. Przez cały tydzień o&nbsp;17.30 będzie procesja eucharystyczna.</p> <p>4. W&nbsp;tym tygodniu wypada I&nbsp;czwartek, I&nbsp;piątek i&nbsp;I&nbsp;sobota miesiąca czerwca. W&nbsp;I&nbsp;piątek – sposobność do&nbsp;spowiedzi od&nbsp;godz. 16.00; w&nbsp;I&nbsp;sobotę – nabożeństwo dla praktykujących pierwsze soboty – godz. 17.15.</p> <p>5. W&nbsp;przyszłą niedzielę obchodzimy Święto Dziękczynienia. Decyzją Episkopatu Polski – tego dnia zbiórka do&nbsp;puszek na&nbsp;rzecz Świątyni Opatrzności Bożej w&nbsp;Warszawie.</p> <p>6. <em>Bóg zapłać</em> Rodzicom dzieci od&nbsp;I&nbsp;Rocznicy Komunii&nbsp;św. za&nbsp;sprzątanie kościoła, placu kościelnego, wystrój świątyni oraz ofiarę w&nbsp;wysokości 1000&nbsp;zł. <em>Bóg zapłać</em> za&nbsp;zamówienie Mszy Świętej za&nbsp;kapłanów pracujących w&nbsp;parafii, która będzie odprawiona 21&nbsp;czerwca o&nbsp;godzinie 11.15.</p> <p>7. <strong>Do&nbsp;sprzątania prosimy w&nbsp;sobotę na&nbsp;godz. 7.00</strong> mieszkańców bloku Maciejowskiego 5, od&nbsp;40 do&nbsp;50. </p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. Zbliżają się wakacje. Referaty duszpasterskie proponują „Wakacje z&nbsp;Bogiem”. Szczegóły u&nbsp;ks.&nbsp;Marcina i&nbsp;w&nbsp;gablocie.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>24. maja 2015 r.</h3> <h3>Uroczystość Zesłania Ducha Świętego</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dziś zakończenie Okresu Wielkanocnego. W&nbsp;przyszłą niedzielę kończy się okres spowiedzi wielkanocnej.</p> <p>3. Jutro Święto Matki Kościoła – Msze Święte o&nbsp;6.30, 9.00, 17.00 i&nbsp;18.00. Zapraszamy do&nbsp;licznego udziału w&nbsp;Eucharystii ku&nbsp;czci Matki Bożej.</p> <p>4. Dzieci przeżywają tydzień eucharystyczny. Zapraszamy wraz z&nbsp;rodzicami na&nbsp;nabożeństwo majowe o&nbsp;17.30 i&nbsp;Mszę Świętą o&nbsp;godz. 18.00.</p> <p>5. W&nbsp;czwartek jest Święto Jezusa Chrystusa, Najwyższego i&nbsp;Wiecznego Kapłana. U&nbsp;nas będą tego dnia relikwie św.&nbsp;Joanny Beretty Molla. Zapraszamy do&nbsp;liczniejszego udziału w&nbsp;Eucharystii o&nbsp;6.30, 17.00 i&nbsp;18.00. Będziemy się modlić w&nbsp;intencji rodzin i&nbsp;o&nbsp;powołania kapłańskie.</p> <p>6. W&nbsp;przyszłą niedzielę o&nbsp;11.15 będziemy mieli rocznicę I&nbsp;Komunii Świętej. Próby liturgiczne w&nbsp;poniedziałek i&nbsp;wtorek o&nbsp;16.00. Spowiedź w&nbsp;piątek od&nbsp;16.00.</p> <p>7. W&nbsp;niedzielę najbliższą (31.05) w&nbsp;naszym mieście Marsz dla życia. O&nbsp;14.00 w&nbsp;kościele św.&nbsp;Józefa koncert pieśni maryjnych w&nbsp;wykonaniu Chóru Katedralnego, o&nbsp;15.00 Msza Święta i&nbsp;przemarsz na&nbsp;plac zabaw przy ul.&nbsp;Żółkiewskiego i&nbsp;rodzinny piknik.</p> <p>8. <em>Bóg zapłać</em> Rodzicom dzieci od&nbsp;I-szej Komunii za&nbsp;sprzątanie kościoła, placu kościelnego, wystrój świątyni oraz ofiarę w&nbsp;wysokości 3500&nbsp;zł. Zgodnie z&nbsp;umową z&nbsp;Rodzicami zostały wykonane obicia na&nbsp;pozostałe ławki.</p> <p>9. <strong>W&nbsp;sobotę na&nbsp;7.00 rano prosimy o&nbsp;sprzątanie i&nbsp;przygotowanie kościoła Rodziców dzieci od&nbsp;I&nbsp;rocznicy.</strong></p> <p>10. We&nbsp;wtorek po&nbsp;Mszy Świętej wieczornej spotkanie Parafialnego Zespołu Caritas.</p> <p>11. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>12. Dzisiaj – zgodnie z&nbsp;dekretem diecezjalnym o&nbsp;zobowiązaniach finansowych parafii – zbiórka do&nbsp;puszek na&nbsp;rzecz Instytutu Teologicznego w&nbsp;Sandomierzu.</p> <p>13. W&nbsp;Sandomierzu powstała bezpłatna Szkoła Sokrates dla dorosłych (Gimnazjum, Liceum Ogólnokształcące i&nbsp;Szkoła Policealna). Zapisy do&nbsp;września w&nbsp;sekretariacie Szkoły – ul.&nbsp;Mickiewicza 17&nbsp;A, pok.101. (budynek Oskara). Szczegóły na&nbsp;plakacie w&nbsp;gablocie przed kościołem.</p> <p>14. W&nbsp;tym tygodniu odbył się pogrzeb śp.&nbsp;Adriana Reczyńskiego. <em>Wieczny odpoczynek racz mu&nbsp;dać Panie...</em></p> <p>15. Zbliżają się wakacje. Referaty duszpasterskie proponują „Wakacje z&nbsp;Bogiem”. Szczegóły u&nbsp;ks.&nbsp;Marcina i&nbsp;w&nbsp;gablocie.</p> <p>16. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>17. maja 2015 r.</h3> <h3>Uroczystość Wniebowstąpienia Pańskiego</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj nabożeństwo majowe o&nbsp;15.30. Przez cały maj Msza Święta o&nbsp;godzinie 17.00; <br /> o&nbsp;17.30 nabożeństwo majowe i&nbsp;o&nbsp;18.00 Msza Święta.</p> <p>3. Dzieci pierwszokomunijne, ich rodziców i&nbsp;rodziny prosimy do&nbsp;spowiedzi w&nbsp;piątek, od&nbsp;godz. 15.30.</p> <p>4. Neokatechumenat zaprasza na&nbsp;Rynek Starego Miasta w&nbsp;godz. 16.00-18.00 na&nbsp;katechezę.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, państwu Pęgielskim, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania prosimy w&nbsp;sobotę na&nbsp;godz. 7.00 rodziców dzieci pierwszokomunijnych.</strong></p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. Dzisiaj – zgodnie z&nbsp;decyzją Episkopatu Polski – zbiórka do&nbsp;puszek na&nbsp;cele organizacyjne Światowych Dni Młodzieży – Kraków 2016. Możemy także weprzeć akcję „Bilet dla Brata” ze wschodu, kupując gadżety ŚDM: kubki, smycze, koszulki.</p> <p>8. W&nbsp;przyszłą niedzielę zgodnie z&nbsp;dekretem diecezjalnym o&nbsp;zobowiązaniach finansowych parafii zbiórka do&nbsp;puszek na&nbsp;rzecz Instytutu Teologicznego w&nbsp;Sandomierzu. </p> <p>9. W&nbsp;Sandomierzu powstała bezpłatna Szkoła Sokrates dla dorosłych (Gimnazjum, Liceum Ogólnokształcące i&nbsp;Szkoła Policealna). Zapisy do&nbsp;września w&nbsp;sekretariacie Szkoły – ul.&nbsp;Mickiewicza 17&nbsp;A, pok. 101. (budynek Oskara). Szczegóły na&nbsp;plakacie w&nbsp;gablocie przed kościołem.</p> <p>10. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności: Stanisława Bartosz, Genowefę Statuch i&nbsp;Bolesława Frączek, którego pogrzeb będzie we&nbsp;wtorek o&nbsp;godz. 14.00. <em>Wieczny odpoczynek racz im&nbsp;dać Panie...</em></p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>10. maja 2015 r.</h3> <h3>VI Niedziela Wielkanocna Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj nabożeństwo majowe o&nbsp;15.30. Przez cały maj Msza Święta o&nbsp;godzinie 17.00; o&nbsp;17.30 nabożeństwo majowe i&nbsp;o&nbsp;18.00 Msza Święta.</p> <p>3. W&nbsp;odpowiedzi na&nbsp;apel Papieża Franciszka o&nbsp;braterską solidarność z&nbsp;ofiarami trzęsienia ziemi w&nbsp;Nepalu, Caritas Polska prosi o&nbsp;modlitwę i&nbsp;pomoc finansową. W&nbsp;dniu dzisiejszym zbieramy ofiary do&nbsp;puszek na&nbsp;rzecz poszkodowanym w&nbsp;Nepalu. Za&nbsp;każdy dar serca podziękowanie <em>Bóg zapłać</em>.</p> <p>4. Neokatechumenat zaprasza na&nbsp;Rynek Starego Miasta (do&nbsp;17.05.2015&nbsp;r.) w&nbsp;godz. 16.00-18.00 na&nbsp;katechezy. Szczegóły w&nbsp;gablocie przy kościele.</p> <p>5. Bóg zapłać za&nbsp;sprzątanie kościoła, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania prosimy w&nbsp;sobotę na&nbsp;godz. 7.00 rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;5 od&nbsp;31 do&nbsp;40.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. W&nbsp;przyszłą niedzielę – zgodnie z&nbsp;decyzją Episkopatu Polski – zbiórka do&nbsp;puszek na&nbsp;cele organizacyjne Światowych Dni Młodzieży – Kraków 2016. Tego dnia w&nbsp;naszym kościele będziemy mogli również weprzeć akcję „Bilet dla Brata” ze&nbsp;wschodu, kupując gadżety ŚDM: kubki, smycze, koszulki.</p> <p>8. W&nbsp;Sandomierzu powstała bezpłatna Szkoła Sokrates dla dorosłych (Gimnazjum, Liceum Ogólnokształcące i&nbsp;Szkoła Policealna). Zapisy do&nbsp;września w&nbsp;sekretariacie Szkoły – ul.&nbsp;Mickiewicza 17&nbsp;A, pok. 101. (budynek Oskara). Szczegóły na&nbsp;plakacie w&nbsp;gablocie przed kościołem.</p> <p>9. W&nbsp;minionym tygodniu był pogrzeb Ireneusza Lipiec oraz odeszła do&nbsp;wieczności Irena Gach, której pogrzeb będzie we&nbsp;wtorek o&nbsp;14.00. <em>Wieczny odpoczynek racz dać Panie...</em></p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>3. maja 2015 r.</h3> <h3>V Niedziela Wielkanocna Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj nabożeństwo majowe o&nbsp;15.30; z&nbsp;racji I&nbsp;niedzieli miesiąca zmiana tajemnic różańcowych i&nbsp;Msza Święta.</p> <p>3. Na Mszy św. o&nbsp;godz. 20:30 będziemy modlić się o&nbsp;dary Ducha Świętego dla maturzystów, którzy jutro rozpoczynają egzaminy.</p> <p>4. Przez cały maj będzie Msza Święta o&nbsp;godzinie 17.00; o&nbsp;17.30 nabożeństwo majowe i&nbsp;o&nbsp;18.00 Msza Święta.</p> <p>5. Neokatechumenat zaprasza na&nbsp;Rynek Starego Miasta (do&nbsp;17.05.2015&nbsp;r.) w&nbsp;godz. 16.00-18.00 na&nbsp;katechezy. Szczegóły w&nbsp;gablocie przy kościele.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania prosimy w&nbsp;sobotę na&nbsp;godz. 7.00 Rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;5 od&nbsp;21 do&nbsp;30.</p> <p>7. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>8. Wychodząc dzisiaj z&nbsp;kościoła możemy złożyć swoją ofiarę do&nbsp;puszek. Wyjaśniam, że&nbsp;nie są&nbsp;to ofiary na&nbsp;światło w&nbsp;naszym kościele lecz na&nbsp;koszta związane z&nbsp;peregrynacją Symboli światowych dni młodzieży w&nbsp;naszym dekanacie.</p> <p>9. Miło jest nam gościć Panią Joannę Jurkiewicz, autorkę książki „Zwiastunowi z&nbsp;gór” (o&nbsp;Ojcu Świętym Janie Pawle&nbsp;II). Plakaty w&nbsp;gablocie i&nbsp;na&nbsp;drzwiach kościoła informowały nas o&nbsp;tym.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>26. kwietnia 2015 r.</h3> <h3>IV Niedziela Wielkanocna Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Symbole Światowych Dni Młodzieży peregrynują po&nbsp;poszczególnych dekanatach diecezji. W&nbsp;dekanacie sandomierskim będą w&nbsp;dniach 1&nbsp;i&nbsp;2&nbsp;maja. Przywitamy je w&nbsp;kościele w&nbsp;Nadbrzeziu – 1&nbsp;maja o&nbsp;godz. 13.00, o&nbsp;godz. 17.00 – będą podczas nabożeństwa majowego w&nbsp;kościele seminaryjnym, następnie samochodem zostaną przywiezione do&nbsp;naszego kościoła, powitanie Symboli, wprowadzenie i&nbsp;o&nbsp;godz. 18.45 będzie koncert uwielbienia, a&nbsp;po&nbsp;Apelu Jasnogórskim w&nbsp;procesji światła odprowadzimy je&nbsp;ulicą Mickiewicza, przez Stary Rynek do&nbsp;Katedry. Tam o&nbsp;23.00 będzie Msza Święta i&nbsp;nocne czuwanie młodych (nasza parafia ma&nbsp;czuwanie od&nbsp;24.00 do&nbsp;1.00. O&nbsp;7.30 będą przewiezione do&nbsp;szpitala i&nbsp;po&nbsp;powrocie – o&nbsp;10.00 w&nbsp;katedrze Msza Święta i&nbsp;przekazanie Symboli do&nbsp;Zamościa. Zachęcamy młodzież naszego dekanatu do&nbsp;udziału w&nbsp;tych spotkaniach modlitewnych ze&nbsp;znakami Światowych Dni Młodych. Po&nbsp;zakończeniu tych uroczystości Seminarium Duchowne zaprasza na&nbsp;„Dzień Otwartej Furty”.</p> <p>3. 1&nbsp;maja, w&nbsp;piątek – nie obowiązuje katolików wstrzemięźliwość od&nbsp;potraw mięsnych (dyspensa).</p> <p>4. Od&nbsp;jutra będzie odprawiana Msza&nbsp;św. także o&nbsp;17.00. W&nbsp;maju o&nbsp;17.30 nabożeństwa majowe; po&nbsp;nich Msza&nbsp;św.</p> <p>5. W&nbsp;tym tygodniu jest I&nbsp;piątek i&nbsp;sobota miesiąca. Dla tych, którzy planują odprawić pięć pierwszych sobót miesiąca (od&nbsp;maja do&nbsp;września) – nabożeństwo adoracyjne i&nbsp;różaniec o&nbsp;16:45.</p> <p>6. Neokatechumenat zaprasza na&nbsp;Rynek Starego Miasta przez pięć kolejne niedziele wielkanocne (do&nbsp;17.05.2015&nbsp;r.) w&nbsp;godz.&nbsp;16.00-18.00 na&nbsp;katechezy. Szczegóły w&nbsp;gablocie przy kościele.</p> <p>7. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła młodzieży i&nbsp;rodzicom od&nbsp;bierzmowania. <em>Bóg zapłać</em> rodzicom za&nbsp;przekazaną ofiarę, słowa podziękowania dla młodzieży za&nbsp;piękną postawę podczas przyjmowanego Sakramentu. <br /> <strong>Do&nbsp;sprzątania prosimy w&nbsp;sobotę na&nbsp;godz. 7.00 Rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;5, od&nbsp;11 do&nbsp;20 (przepraszamy za&nbsp;zmianę terminu).</p> <p>8. Dziś o&nbsp;godz. 16.00 Msza&nbsp;św. i&nbsp;spotkanie kandydatów do&nbsp;Bierzmowania z&nbsp;klas I&nbsp;i&nbsp;II Gimnazjów.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. W&nbsp;przyszłą niedzielę zbiórka do&nbsp;puszek na&nbsp;koszta związane z&nbsp;dekanalnymi dniami młodzieży. Będziemy również gościć Panią Joannę Jurkiewicz, autorkę książki „Zwiastunowi z&nbsp;gór” (o&nbsp;Ojcu Świętym Janie Pawle&nbsp;II). Plakaty w&nbsp;gablocie i&nbsp;na&nbsp;drzwiach kościoła.</p> <p>11. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Urszulę Nagórną. Polećmy ją&nbsp;Bożemu miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>19. kwietnia 2015 r.</h3> <h3>III Niedziela Wielkanocna Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Dzisiaj o&nbsp;godz.&nbsp;14.00 wyjeżdża młodzież z&nbsp;miasta Sandomierza na&nbsp;Święty Krzyż, aby uroczyście powitać Symbole Światowych Dni Młodych. Symbole będą peregrynować po&nbsp;poszczególnych dekanatach diecezji. W&nbsp;dekanacie sandomierskim będą w&nbsp;dniach 1&nbsp;i&nbsp;2&nbsp;maja. Przywitamy je w&nbsp;kościele w&nbsp;Nadbrzeziu – 1&nbsp;maja o&nbsp;godz.&nbsp;13.00, o&nbsp;godz.&nbsp;17.00 – będą podczas nabożeństwa majowego w&nbsp;kościele seminaryjnym, o&nbsp;godz. 19.00 będą na&nbsp;Rynku podczas koncertu uwielbienia, następnie Drogą Światła (ul.&nbsp;Mickiewicza) przyprowadzimy je do&nbsp;naszego kościoła. O&nbsp;godz. 23.00 będzie uroczysta Msza&nbsp;św. i&nbsp;czas adoracji do&nbsp;godz. 8.00 rano. O&nbsp;godz. 10.00 z&nbsp;Rynku Starego Miasta odwieziemy je do&nbsp;Zamościa. </p> <p>3. Młodzież III klas Gimnazjów zapraszamy na&nbsp;Mszę&nbsp;św. o&nbsp;godz.&nbsp;18.00 w&nbsp;poniedziałek (20.04.), aby wspólnie prosić o&nbsp;dary Ducha&nbsp;Św. i&nbsp;potrzebne łaski na&nbsp;czas egzaminów.</p> <p>4. Bierzmowanie w&nbsp;piątek – 24&nbsp;kwietnia o&nbsp;godz.&nbsp;18.00. Szafarzem sakramentu będzie Ks.&nbsp;Biskup Edward Frankowski. Spowiedź młodzieży przed Bierzmowaniem w&nbsp;czwartek od&nbsp;godz. 17.00. </p> <p>5. Neokatechumenat zaprasza na&nbsp;Rynek Starego Miasta przez pięć kolejnych niedziel (od&nbsp;19.04 do&nbsp;17.05.2015&nbsp;r.) w godz. 16.00-18.00 na katechezy. Szczegóły w&nbsp;gablocie przy kościele.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do sprzątania prosimy Rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;5, od&nbsp;11 do&nbsp;20.</p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>8. Caritas Diecezji Sandomierskiej ogłasza nabór do&nbsp;udziału w&nbsp;projekcie pod nazwą: „Zdobywając Mądrość Serca, osiągamy Mądrość Życia” w&nbsp;ramach Rządowego Programu na&nbsp;Rzecz Aktywności Osób Starszych na&nbsp;lata 2014-2020. Do&nbsp;udziału w&nbsp;projekcie mogą zgłaszać się osoby zainteresowane, po&nbsp;60.&nbsp;roku życia i&nbsp;mieszkające na&nbsp;terenie naszej diecezji. Zgłoszenia są&nbsp;przyjmowane w&nbsp;biurze Caritas, ul.&nbsp;Opatowska&nbsp;10, pokój nr&nbsp;6, od&nbsp;poniedziałku do&nbsp;piątku w&nbsp;godz.&nbsp;9.00-14.00. Rekrutacja trwa od&nbsp;16 do&nbsp;30&nbsp;kwietnia 2015 r.</p> <p>9. Msza&nbsp;św. i&nbsp;spotkanie kandydatów do&nbsp;Bierzmowania z&nbsp;klas I&nbsp;i&nbsp;II&nbsp;Gimnazjów w&nbsp;przyszłą niedzielę o&nbsp;godz.&nbsp;16.00.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>11. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do&nbsp;wieczności Andrzeja Wrzesińskiego. Polećmy go&nbsp;Bożemu miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>12. kwietnia 2015 r.</h3> <h3>Niedziela Miłosierdzia Bożego Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od godziny 16.00 do 17.00, sobota 9.00 do 10.00.</p> <p>2. Sakrament Bierzmowania będzie udzielany w&nbsp;naszej Parafii 24&nbsp;kwietnia o&nbsp;godz. 18.00. Gdyby ktoś z&nbsp;dorosłych, kto nie był bierzmowany, chciał przyjąć ten sakrament, niech się do&nbsp;nas zgłosi. W&nbsp;związku z&nbsp;Bierzmowaniem dziś o&nbsp;16.00 Msza&nbsp;św., na&nbsp;którą zapraszamy Rodziców i&nbsp;młodzież – po&nbsp;Mszy&nbsp;św. dla Rodziców spotkanie organizacyjne. Obecność Rodziców obowiązkowa.</p> <p>3. Koronka do&nbsp;Bożego Miłosierdzia dzisiaj o&nbsp;godz.&nbsp;15.00.</p> <p>4. Dzisiaj wychodząc ze&nbsp;świątyni składamy ofiary do&nbsp;puszek na&nbsp;Caritas.</p> <p>5. W&nbsp;związku z&nbsp;rozpoczęciem pielgrzymowania po&nbsp;Diecezji Symboli Światowych Dni Młodzieży, wyjazd młodych z&nbsp;naszej Parafii na&nbsp;Święty Krzyż, w&nbsp;Niedzielę 19&nbsp;kwietnia o&nbsp;godz.&nbsp;14.00.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do sprzątania <span style="text-decoration: underline"> prosimy</span> Rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;5, od&nbsp;1 do&nbsp;10.</p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>8. Spotkanie młodzieży przygotowującej się do&nbsp;sakramentu małżeństwa dzisiaj po&nbsp;Mszy&nbsp;Św. o&nbsp;godz.&nbsp;16.00.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. W&nbsp;minionym tygodniu odwołał Pan Bóg z&nbsp;naszej wspólnoty parafialnej do wieczności Zygmunta Lipiec. Polećmy go&nbsp;Bożemu miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>5. kwietnia 2015 r.</h3> <h3>Niedziela Zmartwychwstania Rok B</h3> <h3>Alleluja! Chrystus Zmartwychwstał. Niech blask Jego Zmartwychwstania rozpromieni Wasze oblicza i&nbsp;serca Kochani Parafianie i&nbsp;Goście. Niech Ten, który zwyciężył śmierć, błogosławi Wam wszystkim; niech napełni pokojem i&nbsp;radością. Wszystkim życzymy zdrowia i&nbsp;wesołego Alleluja.</h3> <p><strong>Jutro Poniedziałek Wielkanocny. Porządek Mszy Świętych jak w&nbsp;Niedzielę. Taca na&nbsp;Katolicki Uniwersytet Lubelski.</strong></p> <p>1. Kancelaria parafialna czynna: wtorek i&nbsp;piątek od&nbsp;godziny 16.00 do&nbsp;17.00, sobota 9.00 do&nbsp;10.00.</p> <p>2. Sakrament Bierzmowania będzie udzielany w&nbsp;naszej Parafii 24&nbsp;kwietnia o&nbsp;godz.&nbsp;18.00. Gdyby ktoś z&nbsp;dorosłych, kto nie był bierzmowany, chciał przyjąć ten sakrament, niech się do&nbsp;nas zgłosi.</p> <p>3. W&nbsp;piątek z&nbsp;racji oktawy Zmartwychwstania nie obowiązuje nas wstrzemięźliwość od&nbsp;pokarmów mięsnych.</p> <p>4. Nowenna do&nbsp;Bożego Miłosierdzia dzisiaj i&nbsp;jutro o&nbsp;godz.&nbsp;15.00, w&nbsp;pozostałe dni po&nbsp;Mszy Świętej wieczorowej. Dziś o&nbsp;15:30 różaniec, a&nbsp;po Mszy&nbsp;św. godz. 16.00 – zmiana tajemnic.</p> <p>5. Przyszła Niedziela to&nbsp;Niedziela Bożego Miłosierdzia. Rozpoczyna Tydzień Miłosierdzia. Zbiórka do&nbsp;puszek na&nbsp;rzecz Caritas diecezjalnej.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <strong><em>Bóg zapłać</em> wszystkim, którzy przygotowali Ciemnicę i&nbsp;Grób Pański pod przewodnictwem Pana Piotra Burkowskiego.</strong></p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>29. marca 2015 r.</h3> <h3>Niedziela Palmowa Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek i&nbsp;wtorek od&nbsp;godziny 16.00 do&nbsp;17.00.</p> <p>2. Sakrament Bierzmowania będzie udzielany w&nbsp;naszej Parafii 24&nbsp;kwietnia o&nbsp;godzinie 18.00. Gdyby ktoś z&nbsp;dorosłych, kto nie był bierzmowany, chciał przyjąć ten sakrament, niech się do&nbsp;nas zgłosi.</p> <p>3. We&nbsp;wtorek pójdziemy do&nbsp;chorych z&nbsp;posługą sakramentalną od&nbsp;godziny 13.00. Prosimy zgłosić w&nbsp;zakrystii adresy.</p> <p>4. W&nbsp;Wielki Czwartek – Msza Święta Wieczerzy Pańskiej, na&nbsp;którą zapraszamy wszystkich parafian będzie o&nbsp;godzinie 18.00. Adoracja Pana Jezusa w&nbsp;Ołtarzu Adoracji zwanym Ciemnicą będzie do&nbsp;godziny 22.00.</p> <p>5. W&nbsp;Wielki Piątek – adoracja Najświętszego Sakramentu w&nbsp;Ciemnicy od&nbsp;godziny 6.00. O&nbsp;15.00 nowenna do&nbsp;Bożego Miłosierdzia. Droga Krzyżowa o&nbsp;godzinie 17.30 i&nbsp;o&nbsp;godzinie 18.00 rozpocznie się Liturgia Wielkiego Piątku. Ponieważ nasz nowy Krzyż Misyjny nie był święcony, dokonamy tego podczas nabożeństwa. Tam będzie odsłonięcie Drzewa Krzyża i&nbsp;ucałowanie. Przy adoracji Krzyża Świętego składane ofiary są&nbsp;przeznaczone na&nbsp;Grób Pana Jezusa w&nbsp;Jerozolimie. W&nbsp;Wielki Piątek obowiązuje katolików post ścisły (jeden posiłek do&nbsp;syta i&nbsp;dwa lekkie, oraz wstrzemięźliwość od&nbsp;potraw mięsnych). Adoracja Pana Jezusa w&nbsp;przygotowanym Grobie Pańskim będzie do&nbsp;godziny 23.00.</p> <p>6. W&nbsp;Wielką Sobotę zapraszamy do&nbsp;adoracji Najświętszego Sakramentu w&nbsp;Grobie Pańskim od&nbsp;godziny 6.00. <strong>Pokarmy święcimy od&nbsp;godziny 9.00 do&nbsp;13.00.</strong> O&nbsp;13.00 sprzątamy kościół. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline"> prosimy</span> Rodziny</strong> z&nbsp;bloku Maciejowskiego&nbsp;6 – z&nbsp;dwu klatek, a&nbsp;więc od&nbsp;41 do&nbsp;60. <br /> O&nbsp;godz. 15.00 nowenna do&nbsp;Bożego Miłosierdzia. Liturgia Wielkiej Soboty rozpocznie się o&nbsp;godzinie 19.00 od&nbsp;poświęcenia ognia. Przynosimy świece.</p> <p>7. Rezurekcja w&nbsp;Niedzielę Zmartwychwstania o&nbsp;godzinie 6.00, poprzedzona procesją dookoła kościoła. Prosimy przygotować do&nbsp;procesji wszystkie paramenty – aby były czyste. Następna Msza Święta o&nbsp;godzinie 8.00, pozostałe jak w&nbsp;każdą niedzielę.</p> <p>8. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <strong>Bóg zapłać Panom, którzy sprzątali w&nbsp;tym tygodniu plac kościelny po&nbsp;zimie.</strong></p> <p>9. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać&nbsp;1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas parafialna rozprowadza baranki na&nbsp;stół wielkanocny oraz paschaliki.</p> <p>11. Dzisiaj wychodząc z&nbsp;kościoła będziemy mieli możliwość złożenia ofiary do&nbsp;puszek na&nbsp;materiały i&nbsp;kwiaty do&nbsp;Grobu Pana Jezusa.</p> <p>12. W&nbsp;minionym tygodniu odprowadziliśmy na&nbsp;miejsce wiecznego odpoczynku śp.&nbsp;Stanisława Sajda. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek...</em></p> <p>13. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>22. marca 2015 r.</h3> <h3>V Niedziela Wielkiego Postu Rok B</h3> <h3>Bardzo dziękuję wszystkim, którzy z&nbsp;racji moich imienin pamiętali o&nbsp;modlitwie oraz za&nbsp;wszelkie oznaki życzliwości. Odwzajemniam dobroć Waszego serca również darem modlitwy.</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz.&nbsp;9.00 do&nbsp;10.00.</p> <p>2. Sakrament Bierzmowania będzie udzielany w&nbsp;naszej Parafii 24&nbsp;kwietnia o&nbsp;godzinie 18.00. Gdyby ktoś z&nbsp;dorosłych, kto nie był bierzmowany chciałby przyjąć ten sakrament, niech się do&nbsp;nas zgłosi.</p> <p>3. W&nbsp;środę jest uroczystość Zwiastowania NMP. Msza Święta będzie odprawiona o&nbsp;6.30 i&nbsp;18.00. Zapraszamy do&nbsp;udziału. Zachęcamy do&nbsp;włączenia się w&nbsp;Duchową Adopcję dziecka poczętego.</p> <p>4. Droga Krzyżowa w&nbsp;piątek dla dzieci 16.30, dla starszych 17.30 i&nbsp;dla młodzieży o&nbsp;19.00. Stacyjna Droga Krzyżówa w&nbsp;kościele św.&nbsp;Pawła o&nbsp;godz. 17.00.<br /> Gorzkie Żale z&nbsp;kazaniem pasyjnym są&nbsp;odprawiane w&nbsp;niedziele W.&nbsp;Postu o&nbsp;godzinie 15.30.<br /> W&nbsp;środę po&nbsp;Mszy&nbsp;Św. wieczornej o&nbsp;godzinie 18.30 walne zebranie naszego Stowarzyszenia <em>„Rozwój i&nbsp;Integracja”</em></p> <p>5. W&nbsp;przyszłą niedzielę poświęcenie palm na&nbsp;każdej Mszy Świętej. Ks.&nbsp;Biskup zaprasza młodzież na&nbsp;10.00 na&nbsp;Stary Rynek i&nbsp;na&nbsp;Mszę Świętą do&nbsp;Katedry o&nbsp;10.30.</p> <p>6. W&nbsp;tym tygodniu z&nbsp;soboty na&nbsp;niedzielę zmiana czasu na&nbsp;letni. Msza Święta wieczorowa w&nbsp;przyszłą niedzielę już <strong>o&nbsp;godzinie 20.30</strong>.</p> <p>7. 28&nbsp;marca o&nbsp;godzinie 16.00 rozpocznie się Miejska Droga Krzyżowa spod kościoła św.&nbsp;Pawła i&nbsp;przejdzie ulicami: Staromiejską, Koseły, Mickiewicza, Sokolnickiego, Rynek – figura M.&nbsp;B., Opatowską do&nbsp;kościoła św.&nbsp;Ducha.</p> <p>8. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;6, od&nbsp;31 do&nbsp;40.</p> <p>9. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać&nbsp;1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>10. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas parafialna rozprowadza baranki na&nbsp;stół wielkanocny oraz paschaliki.</p> <p>11. Tradycyjnie w&nbsp;przyszłą niedzielę będą zbierane ofiary do&nbsp;puszek na&nbsp;materiały i&nbsp;kwiaty do&nbsp;Grobu Pana Jezusa.</p> <p>12. W&nbsp;minionym tygodniu odeszli z&nbsp;naszej wspólnoty do&nbsp;wieczności: Jan Świtalski i&nbsp;Agnieszka Woźniak, których pogrzeby będą jutro. Polećmy ich Bożemu Miłosierdziu: <em>Wieczny odpoczynek...</em></p> <p>13. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>15. marca 2015 r.</h3> <h3>IV Niedziela Wielkiego Postu Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz.&nbsp;9.00 do&nbsp;10.00.</p> <p>2. We&nbsp;czwartek jest uroczystość Św. Józefa, Oblubieńca NMP, opiekuna rodzin i&nbsp;Kościoła Świętego. Zapraszamy na&nbsp;Mszę Świętą ku&nbsp;Jego czci na&nbsp;godzinę 18.00 wszystkich, a&nbsp;szczególnie ojców rodzin katolickich.<br /> W&nbsp;kościele św.&nbsp;Józefa odpust parafialny. Suma odpustowa o&nbsp;godz.&nbsp;18.00.</p> <p>3. Droga Krzyżowa w&nbsp;piątek dla wszystkich o&nbsp;godzinie 17.00.<br /> Gorzkie Żale z&nbsp;kazaniem pasyjnym w&nbsp;niedziele W.&nbsp;Postu o&nbsp;godzinie 15.30.</p> <p>4. Katecheza przedmałżeńska odbywa się w&nbsp;naszej Parafii - rozpoczyna się Mszą Świętą o&nbsp;godz.&nbsp;16.00.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;6, od&nbsp;21 do&nbsp;30. <em>Bóg zapłać</em> zelatorkom Kół Żywego Różańca Barbary Kuźdub, Barbary Juda, Barbary Nawara i&nbsp;Teodory Kwiecień za&nbsp;złożone ofiary na&nbsp;kwiaty do&nbsp;Grobu Pana Jezusa.</p> <p>6. <em>Bóg zapłać</em> Panu dyrektorowi Stanisławowi Kacprzykowi i&nbsp;jego pracownikom za&nbsp;wykonanie uchwytu – barierki przy ścianie bocznej w&nbsp;prezbiterium, ułatwiającej wchodzenie i&nbsp;schodzenie po&nbsp;schodach.</p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas parafialna rozprowadza baranki na&nbsp;stół wielkanocny oraz paschaliki.</p> <p>9. W minionym tygodniu odeszła z&nbsp;naszej wspólnoty Klara Jakus. Polećmy ją Bożemu Miłosierdziu: <em>Wieczny odpoczynek...</em></p> <p>10. W&nbsp;piątek na&nbsp;godz.&nbsp;19.30 zapraszamy młodzież na&nbsp;„Noc Młodych” do&nbsp;Katedry. Jest to&nbsp;czuwanie modlitewne z&nbsp;ks.&nbsp;Biskupem w&nbsp;intencji Światowych Dni Młodzieży – Kraków 2016.</p> <p>11. Dzisiaj po&nbsp;Mszy&nbsp;św. o&nbsp;godz.&nbsp;16.00 spotkanie kandydatów do&nbsp;Bierzmowania z&nbsp;klas&nbsp;II gimnazjów. W&nbsp;przyszłą Niedzielę zapraszamy uczniów klas&nbsp;III gimnazjów z&nbsp;rodzicami.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>8. marca 2015 r.</h3> <h3>III Niedziela Wielkiego Postu Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz.&nbsp;9.00 do&nbsp;10.00.</p> <p>2. Droga Krzyżowa w&nbsp;piątek dla dzieci o&nbsp;godzinie 16.30, dla wszystkich o&nbsp;17.30, dla młodzieży o&nbsp;19.00. Gorzkie Żale w&nbsp;Niedziele Wielkiego Postu o&nbsp;godz. 15.30. <br /> Stacyjna Droga Krzyżowa w&nbsp;tym tygodniu w&nbsp;parafii św. Józefa – piątek, godz. 17.00.</p> <p>3. Parafia katedralna zaprasza na&nbsp;Mszę Świętą <em>„cibavit”</em> we&nbsp;czwartek, godzina 17.30 – szczególnie pracowników Caritas i&nbsp;korzystających z&nbsp;pomocy Caritas.</p> <p>4. W&nbsp;łączności z&nbsp;Ojcem Świętym w&nbsp;piątek od&nbsp;godz.&nbsp;17.00 przez całą dobę w&nbsp;kościele Świętego Ducha będzie wystawiony Najświętszy Sakrament do&nbsp;adoracji i&nbsp;zapewniona możliwość wyspowiadania się.</p> <p>5. Katecheza przedmałżeńska odbywa się w&nbsp;naszej Parafii i&nbsp;rozpoczyna się Mszą Świętą o&nbsp;godz. 16.00.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego 6, od&nbsp;11 do&nbsp;20, Bóg zapłać zelatorkom Kół Żywego Różańca Marii Kwiatkowskiej i&nbsp;Ireny Kołacz za&nbsp;złożone ofiary na&nbsp;kwiaty do&nbsp;Grobu Pana Jezusa.</p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas parafialna rozprowadza baranki na&nbsp;stół wielkanocny oraz paschaliki.</p> <p>9. Dzisiaj po&nbsp;Mszy&nbsp;św. o&nbsp;godz.&nbsp;16.00 spotkanie kandydatów do&nbsp;Bierzmowania z&nbsp;klas I&nbsp;gimnazjów. W&nbsp;przyszłą Niedzielę zapraszamy uczniów klas II&nbsp;gimnazjów z&nbsp;rodzicami.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>1. marca 2015 r.</h3> <h3>II Niedziela Wielkiego Postu Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz. 16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz. 9.00 do&nbsp;10.00.</p> <p>2. Droga Krzyżowa w&nbsp;piątek dla dzieci o&nbsp;godzinie 16.30, dla wszystkich o&nbsp;17.30, dla młodzieży o&nbsp;19.00. Gorzkie Żale w&nbsp;Niedziele Wielkiego Postu o&nbsp;godz. 15.30. Dzisiaj zmiana tajemnic różańcowych dla członków Kół Żywego Różańca.<br /> Stacyjna Droga Krzyżowa w&nbsp;tym tygodniu w&nbsp;Katedrze – piątek, godz.&nbsp;17.00.</p> <p>3. Katecheza przedmałżeńska odbywa się w&nbsp;naszej Parafii i&nbsp;rozpoczyna się Mszą Świętą o&nbsp;godz. 16.00.</p> <p>4. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego 6, od&nbsp;1 do&nbsp;10.</p> <p>5. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1% na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>6. Dzisiaj zgodnie z&nbsp;dekretem finansowym zbiórka do&nbsp;puszek – jako nasza pomoc misjonarzom <em>„Ad&nbsp;gentes”</em>.</p> <p>7. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej. Caritas parafialna rozprowadza baranki na&nbsp;stół wielkanocny oraz paschaliki.</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>22. lutego 2015 r.</h3> <h3>I Niedziela Wielkiego Postu Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz. 16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz. 9.00 do&nbsp;10.00.</p> <p>2. Bóg zapłać wszystkim, którzy brali udział w&nbsp;rekolekcjach wielkopostnych. Dziękuję Wam za&nbsp;piękną postawę parafianina – katolika, który ma&nbsp;świadomość niedoskonałości i&nbsp;potrzeby nawracania się.</p> <p>3. Droga Krzyżowa w&nbsp;piątek dla dzieci o&nbsp;godzinie 16.30, dla wszystkich o&nbsp;17.30, dla młodzieży o&nbsp;19.00. Stacyjna Droga Krzyżowa w&nbsp;Nadbrzeziu o&nbsp;godz. 17.00. Gorzkie Żale będą w&nbsp;Niedziele Wielkiego Postu o&nbsp;godz. 15.30.</p> <p>4. Katecheza przedmałżeńska rozpoczyna się dzisiaj w&nbsp;naszej Parafii Mszą Świętą o&nbsp;godz. 16.00.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;7, od&nbsp;41 do&nbsp;50. <em>Bóg zapłać</em> Panu Piotrowi za&nbsp;wykonanie okolicznościowej – wielkopostnej dekoracji.</p> <p>6. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1%&nbsp;na Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu”. Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. <em>Bóg zapłać</em>. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1%&nbsp;na Caritas, do&nbsp;czego serdecznie zachęcamy leżą na&nbsp;stolikach pod chórem.</p> <p>7. W&nbsp;przyszłą niedzielę zgodnie z&nbsp;dekretem finansowym zbiórka do&nbsp;puszek <em>„Ad gentes”</em>.</p> <p>8. Spotkanie rodziców dzieci klas&nbsp;II będzie w&nbsp;przyszłą Niedzielę (1&nbsp;marca) po Mszy&nbsp;św. o&nbsp;godz. 12.30.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. Dyrektor Ośrodka Pomocy Społecznej i&nbsp;Komendant Powiatowy Policji w&nbsp;Sandomierzu kierują do&nbsp;mieszkańców Sandomierza Apel, by&nbsp;pamiętać o&nbsp;fundamentalnych zasadach, od&nbsp;których zależy nasze bezpieczeństwo i&nbsp;je przestrzegać. Apel wisi w&nbsp;gablocie.</p> <p>11. Szkolenie Liderów wolontariatu na&nbsp;Światowe Dni Młodzieży odbędzie się w&nbsp;Domu Katolickim w&nbsp;Sandomierzu w&nbsp;dniu 28&nbsp;lutego (sobota) w&nbsp;godz. 10-15.00.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>15. lutego 2015 r.</h3> <h3>VI Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz. 9.00 do&nbsp;10.00.</p> <p>2. Dzisiejsza niedziela rozpoczyna 48&nbsp;Tydzień Modlitw o&nbsp;trzeźwość Narodu.</p> <p>3. W&nbsp;Środę popielcową Msza Święta z&nbsp;posypaniem głów popiołem będzie o&nbsp;godz.&nbsp;9.00, 11.00, 16.00 i&nbsp;18.00. Obowiązuje nas post ścisły i&nbsp;wstrzemięźliwość tzn. jeden posiłek do&nbsp;syta i&nbsp;dwa lekkie, i&nbsp;oczywiście bezmięsne. Taca ze&nbsp;Środy popielcowej jest wg&nbsp;dekretu finansowego na&nbsp;Caritas.</p> <p>4. W&nbsp;naszej Parafii Środą Popielcową rozpoczynają się rekolekcje wielkopostne. Poprowadzi je&nbsp;Sędzia Sądu Biskupiego w&nbsp;Sandomierzu, ks.&nbsp;dr Krzysztof Irek. Proszę, aby Liderzy blokowi i&nbsp;Radni Parafialni wzięli z&nbsp;zakrystii programy i&nbsp;rozwiesili w&nbsp;blokach, i&nbsp;tablicach ogłoszeniowych. Prosimy wszystkich Parafian, aby wzięli udział w&nbsp;rekolekcjach..., zachęcajmy się wzajemnie..., bądźmy Apostołami Chrystusa...</p> <p>5. Katecheza przedmałżeńska rozpocznie się dla całego dekanatu, w&nbsp;naszej Parafii, 22&nbsp;lutego Mszą Świętą o&nbsp;godz. 16.00.</p> <p>6. W&nbsp;przyszłą niedzielę będzie pielgrzymka z&nbsp;Dekanatu sandomierskiego na&nbsp;Jasną Górę na&nbsp;nocne czuwanie w&nbsp;intencji powołań w&nbsp;diecezji sandomierskiej. Wyjazd w&nbsp;niedzielę spod naszego kościoła o&nbsp;godzinie 14.30. Koszt wyjazdu 50&nbsp;zł. Zapisujemy chętnych w&nbsp;zakrystii.</p> <p>7. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;7, od&nbsp;30 do&nbsp;40. Bóg zapłać Panu stolarzowi Wacławowi i&nbsp;Panom z&nbsp;nim współpracującym: Leszkowi Czajce i&nbsp;Jackowi Stola za&nbsp;naprawienie drzwi wejściowych do&nbsp;kościoła.</p> <p>8. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat na&nbsp;konto bankowe Parafii i&nbsp;tym wszystkim, którzy przekazując 1%&nbsp;na&nbsp;Caritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża&nbsp;Św. w&nbsp;Sandomierzu.” Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. Bóg zapłać. Foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1%&nbsp;na&nbsp;Caritas, do czego serdecznie zachęcamy, leżą na&nbsp;stolikach pod chórem.</p> <p>9. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>10. Dyrektor Ośrodka Pomocy Społecznej i&nbsp;Komendant Powiatowy Policji w&nbsp;Sandomierzu kierują do&nbsp;mieszkańców Sandomierza Apel, by&nbsp;pamiętać o&nbsp;fundamentalnych zasadach, od&nbsp;których zależy nasze bezpieczeństwo i&nbsp;je&nbsp;przestrzegać. Apel wisi w&nbsp;gablocie.</p> <p>11. Szkolenie Liderów wolontariatu na&nbsp;Światowe Dni Młodzieży odbędzie się w&nbsp;Domu Katolickim w&nbsp;Sandomierzu w&nbsp;dniu 28&nbsp;lutego(sobota) w&nbsp;godz.&nbsp;10-15.00.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>8. lutego 2015 r.</h3> <h3>V Niedziela Zwykła Rok B</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz. 16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz.&nbsp;9.00 do&nbsp;10.00.</p> <p>2. Rekolekcje wielkopostne w&nbsp;naszej Parafii rozpoczną się tradycyjnie Środą Popielcową, tj.&nbsp;18&nbsp;lutego. Poprowadzi je&nbsp;Sędzia Sądu Biskupiego w&nbsp;Sandomierzu, ks.&nbsp;dr&nbsp;Krzysztof Irek.</p> <p>3. Katecheza przedmałżeńska rozpocznie się dla całego dekanatu, w&nbsp;naszej Parafii, Mszą Świętą o&nbsp;godz. 16.00, 22&nbsp;lutego.</p> <p>4. Z&nbsp;racji Dnia Chorego 11&nbsp;lutego o&nbsp;godzinie 11.00 w&nbsp;katedrze ks.&nbsp;Biskup Ordynariusz odprawi Mszę Świętą dla chorych. U&nbsp;nas w&nbsp;Parafii dzień chorego przeżyjemy w&nbsp;rekolekcje – sobota 21&nbsp;lutego, o&nbsp;godzinie 11.00.</p> <p>5. Parafia Katedralna zaprasza na&nbsp;Mszę Świętą <em>„cibavit”</em> we&nbsp;czwartek 12&nbsp;lutego na&nbsp;godzinę 17.30. Zaproszeni są&nbsp;również przynależący do&nbsp;Legionu Maryi.</p> <p>6. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;7, od&nbsp;21 do&nbsp;30.</p> <p>7. <em>Bóg zapłać</em> Rodzinom, które składają ofiary na&nbsp;rzecz Parafii dokonując wpłat nakonto bankowe Parafii itym wszystkim, którzy przekazując 1% naCaritas dopisują w&nbsp;odpowiedniej rubryce „dla Parafii Podwyższenia Krzyża św.&nbsp;w&nbsp;Sandomierzu.” Z&nbsp;tych ofiar przygotowaliśmy spotkanie mikołajkowe dla dzieci i&nbsp;wigilijne dla Seniorów. Bóg zapłać. Są&nbsp;dostępne foldery Caritas z&nbsp;numerem, który należy wpisać przy rozliczeniu podatkowym – jeśli chcemy przekazać 1% na&nbsp;Caritas - do&nbsp;czego serdecznie zachęcamy.</p> <p>8. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>9. Dzisiaj zbiórka do&nbsp;puszek na&nbsp;rzecz chorych kapłanów Diecezji Sandomierskiej.</p> <p>10. Parafia Św.&nbsp;Józefa zaprasza na katechezy neokatechumenalne, które się odbywają w&nbsp;kościele Św.&nbsp;Józefa w&nbsp;poniedziałki i&nbsp;czwartki o&nbsp;godzinie 18.30.</p> <p>11. W&nbsp;minionym tygodniu odwołał Pan Bóg do&nbsp;wieczności Barbarę Weber, której pogrzeb będzie jutro o&nbsp;godz. 13.00. Wieczny odpoczynek racz jej dać Panie...</p> <p>12. Dzisiaj po&nbsp;Mszy Świętej o&nbsp;godz. 16.00 spotkanie kandydatów do bierzmowania z&nbsp;klas I, II&nbsp;oraz III&nbsp;gimnazjów.</p> <p>13. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>Przygotowując się do&nbsp;Światowych Dni Młodzieży Kraków 2016, naszą Diecezję na&nbsp;przełomie kwietnia i&nbsp;maja nawiedzą Symbole: Krzyż i&nbsp;ikona Matki Bożej. W&nbsp;Sandomierzu będziemy przeżywać ten czas 1-2&nbsp;maja. Zapraszamy wszystkich młodych, gotowych pomagać w&nbsp;Sandomierzu i&nbsp;Krakowie na&nbsp;szkolenie wolontariackie w&nbsp;Domu Katolickim 28&nbsp;lutego od&nbsp;godziny 9.00.</h3><br /> <h3>1. lutego 2015 r.</h3> <h3>IV Niedziela Zwykła Rok B</h3> <h3>Dzisiaj o&nbsp;15.30 nabożeństwo różańcowe, a&nbsp;po&nbsp;Mszy o&nbsp;godz.&nbsp;16.00 zmiana tajemnic dla członków Kół Żywego Różańca naszej Parafii.</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz.&nbsp;9.00 do&nbsp;10.00.</p> <p>2. Jutro <strong>Święto Ofiarowania Pana Jezusa, popularnie zwane Świętem Matki Bożej Gromnicznej.</strong> Poświęcenie świec na&nbsp;każdej Mszy&nbsp;św., a&nbsp;porządek Mszy jest następujący: <strong>6.30, 7.30, 9.30, 11:15, 12:30, 16:00 i&nbsp;18.00</strong>. Taca z&nbsp;dnia jutrzejszego przeznaczona jest na&nbsp;Zgromadzenie Sióstr Klarysek w&nbsp;Sandomierzu. Naszą modlitwą i&nbsp;ofiarą wspomagamy osoby życia konsekrowanego.</p> <p>3. W&nbsp;tym tygodniu przypada I&nbsp;Czwartek, I&nbsp;Piątek, I&nbsp;Sobota miesiąca. W&nbsp;piątek spowiedź od&nbsp;godz.&nbsp;16:45. W&nbsp;sobotę rozważania różańcowe i&nbsp;modlitwa I&nbsp;Soboty o&nbsp;godz.&nbsp;17.00.</p> <p>4. W&nbsp;przyszłą Niedzielę do&nbsp;puszek na&nbsp;rzecz chorych kapłanów Diecezji Sandomierskiej.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;7, od&nbsp;11 do&nbsp;20.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. Duszpasterstwo dzieci i&nbsp;młodzieży naszej Diecezji zaprasza na wypoczynek feryjny: <br /> w&nbsp;Radomyślu nad Sanem – koszt 290&nbsp;zł oraz na&nbsp;turnus obozowy połączony z&nbsp;nauką jazdy na&nbsp;nartach – koszt 310&nbsp;zł. Szczegóły w&nbsp;gablocie i&nbsp;u&nbsp;ks.&nbsp;Marcina.</p> <p>8. W&nbsp;przyszłą Niedzielę spotkanie kandydatów do&nbsp;bierzmowania z&nbsp;klas&nbsp;I, II&nbsp;oraz III&nbsp;gimnazjów.</p> <p>9. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>25. stycznia 2015 r.</h3> <h3>III Niedziela Zwykła Rok B</h3> <h3>Zakończyliśmy wizytę duszpasterską, pragniemy bardzo serdecznie podziękować za&nbsp;życzliwe przyjęcie nas, za&nbsp;Waszą gościnność, za&nbsp;zainteresowanie sprawami Kościoła, kościoła parafialnego, sprawami Ojczyzny, dzieci i&nbsp;młodzieży, oraz ludzi samotnych i&nbsp;bezrobotnych. Dziękujemy za&nbsp;złożone ofiary na&nbsp;rzecz Parafii. Bardzo dziękujemy tym wszystkim, którzy okazali swoją gościnność, zapraszając do&nbsp;wspólnego stołu. Dziękujemy radnym parafialnym i&nbsp;liderom blokowym za&nbsp;pomoc organizacyjną wizyty duszpasterskiej.</h3> <p>1. Kancelaria parafialna czynna: poniedziałek, wtorek i&nbsp;piątek od&nbsp;godz.&nbsp;16.00 do&nbsp;17.00, w&nbsp;sobotę od&nbsp;godz. 9.00 do&nbsp;10.00.</p> <p>2. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do sprzątania <span style="text-decoration: underline"> prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego 7, od&nbsp;1 do&nbsp;10.</p> <p>3. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>4. W&nbsp;minionym tygodniu odwołał Pan do&nbsp;wieczności: Kazimierza Kondeusza oraz Janinę Bidas. Polećmy ich Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek racz jej dać Panie...</em></p> <p>5. Dzisiaj w&nbsp;parafii św.&nbsp;Pawła odpust Nawrócenia św.&nbsp;Pawła. Suma odpustowa o&nbsp;godzinie 12.30.</p> <p>6. Parafia św.&nbsp;Józefa zaprasza 30&nbsp;stycznia o&nbsp;10.00 do&nbsp;kościoła św.&nbsp;Józefa, na&nbsp;II&nbsp;Dziecięcy Przegląd Kolęd i&nbsp;Pastorałek dla oddziałów zerowych z&nbsp;terenu miasta Sandomierza.</p> <p>7. Duszpasterstwo dzieci i&nbsp;młodzieży naszej Diecezji zaprasza na&nbsp;wypoczynek feryjny: w&nbsp;Radomyślu nad Sanem – koszt 290&nbsp;zł oraz na&nbsp;turnus obozowy połączony z&nbsp;nauką jazdy na&nbsp;nartach – koszt 310&nbsp;zł. Szczegóły w&nbsp;gablocie i&nbsp;u ks.&nbsp;Marcina.</p> <p>8. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>18. stycznia 2015 r.</h3> <h3>II Niedziela Zwykła Rok B</h3> <p>1. Sprawy kancelaryjne w&nbsp;okresie kolędowym załatwiamy po&nbsp;Mszy&nbsp;św. porannej i&nbsp;wieczornej.</p> <p>2. W&nbsp;związku z&nbsp;włamaniem i&nbsp;kradzieżą w&nbsp;kościele Matki Bożej Saletyńskiej w&nbsp;Ostrowcu Świętokrzyskim, ksiądz biskup ordynariusz polecił, aby dzisiaj we&nbsp;wszystkich kościołach diecezji odśpiewać suplikacje <em>Święty Boże</em>, jako akt wynagrodzenia za&nbsp;dokonaną profanację Najświętszego Sakramentu.</p> <p>3. Wydział Duszpasterstwa Ogólnego w&nbsp;Sandomierzu zaprasza we&nbsp;czwartek 22&nbsp;stycznia na&nbsp;godz.&nbsp;17.30 do&nbsp;kościoła św.&nbsp;Michała na&nbsp;modlitwy o&nbsp;jedność chrześcijan w&nbsp;Kościele.</p> <p>4. W&nbsp;tym tygodniu został postawiony nowy krzyż misyjny. Cena materiału 2500&nbsp;zł. Bardzo serdecznie dziękuję naszemu stolarzowi Panu Wacławowi za&nbsp;troskę o&nbsp;materiał i&nbsp;wykonanie krzyża, oraz panom: Leszkowi, Grzegorzowi, Januszowi i&nbsp;Jackowi, oraz wszystkim Panom którzy go&nbsp;postawili.</p> <p>5. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku <strong>Maciejowskiego&nbsp;8, od&nbsp;31 do&nbsp;40</strong>.</p> <p>6. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>7. W&nbsp;okresie Bożego Narodzenia odwiedzamy Rodziny w&nbsp;domach. Celem wizyty duszpasterskiej jest spotkanie z&nbsp;Rodziną, wspólna modlitwa i&nbsp;błogosławieństwo domu.<br /> W&nbsp;tym tygodniu pójdziemy z&nbsp;wizytą duszpasterską:</p> <p>8. W&nbsp;minionym tygodniu odeszła do&nbsp;Pana Zofia Bryła, której pogrzeb będzie jutro o&nbsp;godz.&nbsp;14. Polećmy ją&nbsp;Bożemu Miłosierdziu odmawiając: <em>Wieczny odpoczynek racz jej dać Panie...</em></p> <p>9. Jutro na&nbsp;placu kościelnym składamy zużyty sprzęt elektryczny i&nbsp;elektroniczny do&nbsp;godz.&nbsp;10.00. O&nbsp;10.00 mają podjechać samochody, aby zabrać zgromadzony sprzęt.</p> <p>10. Klasy III gimnazjów zapraszamy w&nbsp;Niedzielę na&nbsp;Mszę i&nbsp;spotkanie o&nbsp;godz.&nbsp;16.00.</p> <p>11. Duszpasterstwo dzieci i&nbsp;młodzieży naszej Diecezji zaprasza na&nbsp;wypoczynek feryjny: w&nbsp;Radomyślu nad Sanem – koszt 290&nbsp;zł, oraz na&nbsp;turnus obozowy połączony z&nbsp;nauką jazdy na&nbsp;nartach – koszt 310&nbsp;zł. Szczegóły w&nbsp;gablocie i&nbsp;u&nbsp;ks.&nbsp;Marcina.</p> <p>12. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>PROGRAM WIZYTY DUSZPASTERSKIEJ 2014/2015</h3> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 19.01.</h3> <p>od&nbsp;godz.&nbsp;9.00 – 1&nbsp;ksiądz – ul.&nbsp;Wąska;</p> <p> 1&nbsp;ksiądz – ul.&nbsp;Różana i&nbsp;Szczęśliwa</p> <p> 2&nbsp;księży – Mickiewicza&nbsp;57;</p> <p>od&nbsp;godz.&nbsp;11.00 – 2&nbsp;księży – Mickiewicza&nbsp;59;</p> <p>od&nbsp;godz.&nbsp;15.30 – 3&nbsp;księży – Maciejowskiego&nbsp;6.</p> <h3><span style="text-decoration: underline">WTOREK</span> – 20.01.</h3> <p>od&nbsp;godz.&nbsp;16.00 – 4&nbsp;księży – Mickiewicza&nbsp;43.</p> <h3>Gdyby ktoś chciał zaprosić kapłana z&nbsp;wizytą duszpasterską, bo&nbsp;w&nbsp;wyznaczonym terminie nie spotkaliśmy się w&nbsp;jego domu – niech przyjdzie do&nbsp;zakrystii, aby ustalić miejsce i&nbsp;termin.</h3><br /> <h3>11. stycznia 2015 r.</h3> <h3>Niedziela Chrztu Pańskiego</h3> <p>1. Sprawy kancelaryjne w&nbsp;okresie kolędowym załatwiamy po&nbsp;Mszy&nbsp;św. porannej i&nbsp;wieczornej.</p> <p>2. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro.<br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline"> prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku <strong>Maciejowskiego 8, od&nbsp;21 do&nbsp;30</strong>. </p> <p>3. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>4. Legion Maryi zaprasza nas dzisiaj na&nbsp;modlitwę różańcową na&nbsp;godzinę 13.30. Przed Najświętszym Sakramentem. Będzie odmawiany cały różaniec.</p> <p>5. W&nbsp;okresie Bożego Narodzenia odwiedzamy Rodziny w&nbsp;domach. Celem wizyty duszpasterskiej jest spotkanie z&nbsp;Rodziną, wspólna modlitwa i&nbsp;błogosławieństwo domu.<br /> W&nbsp;tym tygodniu pójdziemy z&nbsp;wizytą duszpasterską:</p> <p>6. W&nbsp;minionym tygodniu odszedł do&nbsp;Pana Sylwester Gajek. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: Wieczny odpoczynek racz mu&nbsp;dać Panie...</p> <p>7. Potrzebujący pomocy, którzy dostarczyli do&nbsp;parafialnej Caritas zaświadczenia z&nbsp;Gminnych Ośrodków Pomocy do&nbsp;otrzymania jednorazowej pomocy, niech się zgłoszą w&nbsp;poniedziałek od&nbsp;10.00 do&nbsp;13.00, lub we&nbsp;wtorek od&nbsp;10.00 do&nbsp;12.00 po&nbsp;odbiór żywności.<br /> Parafialny zespół Caritas składa podziękowanie Panu Józefowi Kwaskowi za&nbsp;transport żywności dla naszych biednych parafian.</p> <p>8. Stowarzyszenie Pomoc Kościołom w&nbsp;Potrzebie, które pomaga wspólnotom Kościoła misyjnego, ofiarom wojen, prześladowań i&nbsp;kataklizmów organizuje po&nbsp;raz drugi w&nbsp;Diecezji naszej akcję zbierania zużytego sprzętu elektronicznego i&nbsp;elektrycznego. Zbiórka na&nbsp;placu przy kościele będzie 19&nbsp;stycznia do&nbsp;godziny 10.00.</p> <p>9. Klasy II&nbsp;gimnazjów zapraszamy w&nbsp;Niedzielę na&nbsp;Mszę i&nbsp;spotkanie o&nbsp;godz.&nbsp;16.00.</p> <p>10. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak&nbsp;również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>PROGRAM WIZYTY DUSZPASTERSKIEJ 2014/2015</h3> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 12.01.</h3> <p>od godz. 9.00 – 1 ksiądz – ul. Morelowa i Wiśniowa;</p> <p>1 ksiądz – ul. Wiejska i Frankowskiego;</p> <p>1 ksiądz – ul. Polna;</p> <p>od godz. 17.00 – 3 księży – blok Maciejowskiego 11.</p> <h3><span style="text-decoration: underline">WTOREK</span> – 13.01.</h3> <p>od godz. 9.00 – 1 ksiądz – Czachowskiego 13; </p> <p> 1 ksiądz – Kochanowskiego, Wiosenna;</p> <p> 1 ksiądz – Westerplatte, Przytulna, Kwiatowa;</p> <p>od godz. 11.30 – 1 ksiądz – Czachowskiego 17;</p> <p>od godz. 15.00 – 1 ksiądz – Maciejowskiego 5;</p> <p>od godz. 16.00 – ulice: Asnyka, Gałczyńskiego, Reymonta.</p> <h3><span style="text-decoration: underline">ŚRODA</span> – 14.01.</h3> <p>od godz. 9.00 – 1 ksiądz – Mickiewicza (domy prywatne) i POW; </p> <p>1 ksiądz – Kubeszewskiego, Czachowskiego, Zielna, Maciejowskiego-szeregówka;</p> <p>1 ksiądz – Maciejowskiego 9;</p> <p>od godz. 11.00 – 1 ksiądz – Żółkiewskiego 8;</p> <p>od godz. 16.00 – 3 księży – Maciejowskiego 40.</p> <h3><span style="text-decoration: underline">CZWARTEK</span> – 15.01.</h3> <p>od godz. 9.00 – 2 księży – Mickiewicza 53;</p> <p> 1 ksiądz – Maciejowskiego 32;</p> <p> 1 ksiądz – Maciejowskiego 34;</p> <p>od godz. 16.00 – 3 księży – Maciejowskiego 4.</p> <h3><span style="text-decoration: underline">PIĄTEK</span> – 16.01.</h3> <p>od godz. 10.00 – 4 księży – Maciejowskiego 7;</p> <p>od godz. 16.00 – 3 księży – Maciejowskiego 2.</p> <h3><span style="text-decoration: underline">SOBOTA</span> – 17.01.</h3> <p>od godz. 9.00 – 1 ksiądz – Czachowskiego 19;</p> <p> 1 ksiądz – Maciejowskiego 38;</p> <p> 1 ksiądz – Maciejowskiego 36;</p> <p> 1 ksiądz – Maciejowskiego 8; </p> <p>od godz. 11.30 – 2 księży – Maciejowskiego 10. </p> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 19.01.</h3> <p>od godz. 9.00 – 1 ksiądz – ul. Wąska;</p> <p> 1 ksiądz – ul. Różana;</p> <p> 2 księży – Mickiewicza 57;</p> <p>od godz. 11.00 – 2 księży – Mickiewicza 59;</p> <p>od godz. 15.30 – 3 księży – Maciejowskiego 6.</p><br /> <h3>4. stycznia 2015 r.</h3> <h3>Niedziela po Narodzeniu Pańskim</h3> <p>1. Sprawy kancelaryjne w&nbsp;okresie kolędowym załatwiamy po&nbsp;Mszy&nbsp;św. porannej i&nbsp;wieczornej.</p> <p>2. We wtorek 6&nbsp;stycznia – Uroczystość Objawienia Pańskiego popularnie znana jako Święto Trzech Króli, poświęcenie wody, kadzidła i&nbsp;kredy, porządek Mszy Świętych, jak w&nbsp;każdą niedzielę, także o&nbsp;19.30. Po&nbsp;Mszy Świętej o&nbsp;11.15 możliwość wyjścia spod kościoła i&nbsp;przejścia na&nbsp;Rynek w&nbsp;Orszaku Trzech Króli.</p> <p>3. <em>Bóg zapłać</em> za&nbsp;sprzątanie kościoła, złożoną ofiarę przez sprzątających, dary stołu i&nbsp;wszelkie dobro. <br /> <strong>Do&nbsp;sprzątania <span style="text-decoration: underline">prosimy</span> w&nbsp;sobotę na&nbsp;godzinę 7.00</strong> Rodziny z&nbsp;bloku Maciejowskiego&nbsp;8, od&nbsp;11 do&nbsp;20.</p> <p>4. Na&nbsp;stoliku pod chórem jest świeża prasa katolicka. Zachęcamy, korzystajcie z&nbsp;niej.</p> <p>5. Legion Maryi zaprasza nas na&nbsp;modlitwę różańcową w&nbsp;przyszłą niedzielę (11&nbsp;stycznia) na&nbsp;godzinę 13.30. Będzie odmawiany cały różaniec.</p> <p>6. W&nbsp;okresie Bożego Narodzenia odwiedzamy Rodziny w&nbsp;domach. Celem wizyty duszpasterskiej jest spotkanie z&nbsp;Rodziną, wspólna modlitwa i&nbsp;błogosławieństwo domu. <br /> W&nbsp;tym tygodniu pójdziemy z&nbsp;wizytą duszpasterską:</p> <p>7. W&nbsp;minionym tygodniu odszedł do&nbsp;Pana Edmund Rosiecki, którego pogrzeb był w&nbsp;piątek. Polećmy go&nbsp;Bożemu Miłosierdziu odmawiając: Wieczny odpoczynek racz mu&nbsp;dać Panie...</p> <p>8. Sandomierska Kapituła Katedralna zaprasza wiernych, a&nbsp;zwłaszcza grupy duszpasterskie miasta Sandomierz do&nbsp;wspólnej modlitwy w&nbsp;intencji Ojczyzny i&nbsp;Miasta w&nbsp;każdy drugi czwartek miesiąca o&nbsp;godzinie 17.30 w&nbsp;bazylice katedralnej. Na&nbsp;rozpoczęcie tej ogólnomiejskiej modlitwy w&nbsp;czwartek 8&nbsp;stycznia br. zostanie ukazane znaczenie i&nbsp;historia nabożeństwa <em>„Cibavit”</em> w&nbsp;Polsce i&nbsp;w&nbsp;Sandomierzu.</p> <p>9. Stowarzyszenie Pomoc Kościołom w&nbsp;Potrzebie, które pomaga wspólnotom Kościoła misyjnego, ofiarom wojen, prześladowań i&nbsp;kataklizmów organizuje po&nbsp;raz drugi w&nbsp;Diecezji naszej akcję zbierania zużytego sprzętu elektronicznego i&nbsp;elektrycznego. Zbiórka na&nbsp;placu przy kościele będzie 19&nbsp;stycznia do&nbsp;godziny 10.00.</p> <p>10. Klasy I&nbsp;gimnazjum zapraszamy na&nbsp;Mszę Świętą i&nbsp;spotkanie w&nbsp;przyszłą niedzielę o&nbsp;16.00.</p> <p>11. Wszystkim, którzy w&nbsp;tym tygodniu obchodzą swoje imieniny, urodziny, jakiekolwiek rocznice, gościom, uczestnikom liturgii, jak również ludziom starszym, schorowanym, którzy już osobiście nie mogą uczestniczyć z&nbsp;nami w&nbsp;kościele w&nbsp;liturgii, składamy najlepsze życzenia i&nbsp;zapewniamy o&nbsp;naszej modlitwie w&nbsp;waszych intencjach.</p> <p style="text-align: right;">Ks. proboszcz kan. mgr Józef Śmigiel</p><br /> <h3>PROGRAM WIZYTY DUSZPASTERSKIEJ 2014/2015</h3> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 5.01.</h3> <p>od&nbsp;godz. 9.00 – dwóch księży – ul.&nbsp;Kwiatkowskiego, Orzechowa, Klonowa, Sucharzewska – schodzą się do&nbsp;siebie,</p> <p>od&nbsp;godz. 9.00 – jeden ksiądz – ul.&nbsp;Ożarowska – do&nbsp;świateł – zaczynając od&nbsp;strony kościoła,</p> <p>od&nbsp;godz. 9.00 – jeden ksiądz – Sucharzów.</p> <h3><span style="text-decoration: underline">ŚRODA</span> – 7.01.</h3> <p>od&nbsp;godz. 9.00 – Kobierniki i&nbsp;Milczany (po&nbsp;szosie) – 2&nbsp;księży – zaczynają od&nbsp;strony myjni – jeden po&nbsp;lewej, drugi po&nbsp;prawej stronie; o&nbsp;11.30 – 1&nbsp;ksiądz od&nbsp;strony byłego CPN-u;</p> <p>od&nbsp;godz. 9.00 – jeden ksiądz – blok Czachowskiego&nbsp;12;</p> <p>od&nbsp;godz. 12.00 – jeden ksiądz – blok Czachowskiego&nbsp;14;</p> <p>od&nbsp;godz. 17.00 – 3&nbsp;księży – blok Mickiewicza&nbsp;45;</p> <p>od&nbsp;godz. 19.00 – 3&nbsp;księży – blok Mickiewicza&nbsp;49.</p> <h3><span style="text-decoration: underline">CZWARTEK</span> – 8.01.</h3> <p>od&nbsp;godz. 9.00 – 1&nbsp;ksiądz – ul.&nbsp;Curie-Skłodowskiej i&nbsp;Młodożeńca;</p> <p>1&nbsp;ksiądz – ul.&nbsp;Dąbrowskiego;</p> <p>1&nbsp;ksiądz – ul.&nbsp;Harcerska i&nbsp;Batalionów Chłopskich;</p> <p>od&nbsp;godz. 9.00 – 1&nbsp;ksiądz – blok Maciejowskiego&nbsp;13;</p> <p>od&nbsp;godz. 12.00 – 1&nbsp;ksiądz – blok Maciejowskiego&nbsp;15;</p> <p>od&nbsp;godz. 19.00 – 3&nbsp;księży – blok Mickiewicza&nbsp;47.</p> <h3><span style="text-decoration: underline">PIĄTEK</span> – 9.01.</h3> <p>od&nbsp;godz. 9.00 – 1&nbsp;ksiądz – ul.&nbsp;Grodzisko i&nbsp;Reja;</p> <p>1&nbsp;ksiądz – ul.&nbsp;15&nbsp;sierpnia;</p> <p>1&nbsp;ksiądz – ul.&nbsp;Orzeszkowej i&nbsp;Modrzewskiego;</p> <p>od&nbsp;godz. 9.00 – 1&nbsp;ksiądz – blok Cieśli&nbsp;1;</p> <p>od&nbsp;godz. 17.00:</p> <p>2&nbsp;księży – blok Mickiewicza&nbsp;51;</p> <p>1&nbsp;ksiądz – blok Mickiewicza&nbsp;55.</p> <h3><span style="text-decoration: underline">SOBOTA</span> – 10.01.</h3> <p>od&nbsp;godz. 9.00 – 2&nbsp;księży – blok Cieśli&nbsp;3;</p> <p>2&nbsp;księży – blok Cieśli&nbsp;7;</p> <p>od&nbsp;godz. 12.00 – 3&nbsp;księży – blok Cieśli&nbsp;9.</p> <h3><span style="text-decoration: underline">PONIEDZIAŁEK</span> – 12.01.</h3> <p>od&nbsp;godz. 9.00 – 1&nbsp;ksiądz – ul.&nbsp;Morelowa i&nbsp;Wiśniowa;</p> <p>1&nbsp;ksiądz – ul.&nbsp;Wiejska i&nbsp;Frankowskiego;</p> <p>1&nbsp;ksiądz – ul.&nbsp;Polna;</p> <p>od&nbsp;godz. 17.00: 3&nbsp;księży – blok Maciejowskiego&nbsp;11.</p><br /> </div> </div> <div class="clear"></div> <p id="tiny">Aktualizacja: 14. lutego 2016</p></div> <!-- koniec treści głównej --> <!-- stopka --> <div id="footer"> <p>Parafia Podwyższenia Krzyża Świętego &copy; 2012-<script>document.write(new Date().getFullYear());</script> Wszelkie prawa zastrzeżone. <a style="text-decoration: none;" href="http://jigsaw.w3.org/css-validator/check/referer"> <img style="border:0;width:60px;height:21px;" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Poprawny CSS!" />&nbsp;</a> <a style="text-decoration: none;" href="http://validator.w3.org/check?uri=referer">&nbsp; <img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="21" width="60" /></a> <br />Przygotował K. Woźniak :: <a href="http://www.darmowe-szablony.net/">Darmowe Szablony</a> </p> <p>Za pliki cookies podmiotem odpowiedzialnym jest - <a href="http://ofirmie.onet.pl/cookies">Republika.onet.pl</a></p> </div> <!-- koniec stopki --> </div> </body> </html>
KamilWo/ppksandomierz2016
wersjeZmian/2016/ParafiaFTP2016-03-28/archiwum4.html
HTML
mit
166,592
<?php namespace Vidal\DrugBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Doctrine\Common\Collections\ArrayCollection; /** @ORM\Entity @ORM\Table(name="article_link") */ class ArticleLink { /** @ORM\Column(type="integer") @ORM\Id @ORM\GeneratedValue */ protected $id; /** @ORM\Column(length=255) */ protected $title; /** @ORM\Column(length=255) */ protected $url; /** @ORM\ManyToOne(targetEntity="Article", inversedBy="links") */ protected $article; public function __toString() { return empty($this->title) ? '' : $this->title; } /** * @param mixed $article */ public function setArticle($article) { $this->article = $article; } /** * @return mixed */ public function getArticle() { return $this->article; } /** * @param mixed $url */ public function setUrl($url) { $this->url = $url; } /** * @return mixed */ public function getUrl() { return $this->url; } /** * @param mixed $title */ public function setTitle($title) { $this->title = $title; } /** * @return mixed */ public function getTitle() { return $this->title; } /** * @return mixed */ public function getId() { return $this->id; } }
Vidal-ru/Vidal
src/Vidal/DrugBundle/Entity/ArticleLink.php
PHP
mit
1,276
// // Progress bar // NProgress.configure({ showSpinner: false }); // // $(document).ready(function() { // $("abbr.timeago").timeago(); // jQuery.timeago.settings.allowFuture = true; // // NProgress.start(); // // // Estimated Reading Time // $(".time").text(function (index, value) { // return Math.round(parseFloat(value)); // }); // $(".hour").text(function (index, value) { // return Math.floor(parseFloat(value)); // }); // // // Popovers // $('[data-toggle="popover"]').popover({ html: true }); // }); // // $(window).load(function() { // NProgress.done(); // }); $(document).ready(function() { // var date = $('#calendar').fullCalendar('getDate').format('D'); var date = moment().format('D'); $('#calendar').fullCalendar({ header: { left: 'title', center: '', right: 'prev today next' }, googleCalendarApiKey: 'AIzaSyBrWdCHFwbNkPi9fXbN3f8w0fIrXfuHN2U', events: { googleCalendarId: '[email protected]' }, eventAfterAllRender: function(view) { $('.fc-state-highlight').html("<span class='highlighted-date'>" + date + "</span>"); } }); $('.fc-state-highlight').html("<span class='highlighted-date'>" + date + "</span>"); $(document).scroll(function () { var y = $(this).scrollTop(); // Show element after user scrolls past // the top edge of its parent $('.navbar-brand').each(function () { var t = $('#about').offset().top - 100; if (y > t) { $(this).fadeIn(150); } else { $(this).fadeOut(150); } }); }); }); $(function() { $('ul.nav a').bind('click',function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1250,'easeInOutExpo'); event.preventDefault(); }); }); $(function() { $('a.more').bind('click',function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1250,'easeInOutExpo'); event.preventDefault(); }); });
ewb-uiuc/ewb-uiuc.github.io
public/js/onload.js
JavaScript
mit
2,122
Router.configure({ layoutTemplate: 'layout', loadingTemplate: 'loading' }); Router.onBeforeAction(function() { if (! Meteor.user()) { if (Meteor.loggingIn()) { this.render(this.loadingTemplate); } else { Accounts.ui.dialog.show('signIn'); } } else { this.next(); } }); Router.onBeforeAction(function() { if (! Roles.userIsInRole(Meteor.userId(), 'ROLE_ADMIN')) { this.render('accessDenied'); } else { this.next(); } }); Router.plugin('dataNotFound', { notFoundTemplate: 'notFound' }); Router.route('/', function() { this.redirect('/dashboard'); });
shine-js/shine-blaze
apps/admin/modules/0/lib/router.js
JavaScript
mit
608
/*! * jQuery AjaxStartDelay Plugin Test Suite * https://github.com/invetek/jquery-ajaxstartdelay * * Copyright 2013 Loran Kloeze - Invetek * Released under the MIT license */ test("is available as method", function(){ ok(typeof $.fn.ajaxStartDelay === 'function', 'Plugin is not available'); }); test("is chainable", function(){ expect(1); var $document = $(document); //We can't use a fixture ok($document.ajaxStartDelay(1, ajaxStartDelay_Callable) instanceof jQuery); //Remove previously attached trigger to keep test atomic $document.off('ajaxStart'); }); asyncTest("call .ajaxStartDelay handler w/o delay", function(){ expect(1); var $document = $(document); //We can't use a fixture $document.ajaxStartDelay(ajaxStartDelay_Callable); $document.trigger('ajaxStart'); //Remove previously attached trigger to keep test atomic $document.off('ajaxStart'); }); asyncTest("call .ajaxStartDelay handler w/ delay as NaN", function(){ expect(1); var $document = $(document); //We can't use a fixture $document.ajaxStartDelay('xx', ajaxStartDelay_Callable); $document.trigger('ajaxStart'); //Remove previously attached trigger to keep test atomic $document.off('ajaxStart'); }); asyncTest("call .ajaxStartDelay handler w/ 1000 ms delay", function(){ expect(1); var $document = $(document); //We can't use a fixture $document.ajaxStartDelay(1000, ajaxStartDelay_Callable); $document.trigger('ajaxStart'); //Remove previously attached trigger to keep test atomic $document.off('ajaxStart'); }); asyncTest("disarming handler in 995 ms before 1000 ms delay is over", function(){ expect(1); var $document = $(document); //We can't use a fixture $document.ajaxStartDelay(1000, ajaxStartDelay_NonCallable); $document.trigger('ajaxStart'); setTimeout(function(){ //Simulating ajax request-response cycle $document.trigger('ajaxStop'); ok(true); start(); }, 995); //Remove previously attached trigger to keep test atomic $document.off('ajaxStart'); }); function ajaxStartDelay_Callable(){ ok(true); start(); } function ajaxStartDelay_NonCallable(){ ok(false, 'ajaxStartDelay handler should not be called'); start(); }
skyvin11/jquery-ajaxstartdelay
test/tests.js
JavaScript
mit
2,420
(function (angular) { "use strict"; var module = angular.module("healthBam.mapQuery"); /** * Resource for map-queries. * @param $resource service. * @returns new $resource instance for map-queries. * @constructor */ function MapQuery( $resource ) { return $resource( "api/map-queries" ); } MapQuery.$inject = [ "$resource" ]; module.factory( "MapQuery", MapQuery ); }(window.angular));
healthbam/healthbam
client/src/main/webjar/map-query/map-query.resource.js
JavaScript
mit
516
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.IO; using System.Security; using System.Collections; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Text.RegularExpressions; using System.Text; using System.Threading; using System.Runtime.InteropServices; using System.Collections.Generic; using Microsoft.Build.Collections; using Microsoft.Build.Internal; using Microsoft.Build.Shared.FileSystem; namespace Microsoft.Build.Shared { /// <summary> /// This class contains utility methods for file IO. /// </summary> /// <comment> /// Partial class in order to reduce the amount of sharing into different assemblies /// </comment> static internal partial class FileUtilities { /// <summary> /// Encapsulates the definitions of the item-spec modifiers a.k.a. reserved item metadata. /// </summary> static internal class ItemSpecModifiers { #if DEBUG /// <summary> /// Whether to dump when a modifier is in the "wrong" (slow) casing /// </summary> private static readonly bool s_traceModifierCasing = (!String.IsNullOrEmpty(Environment.GetEnvironmentVariable("MSBUILDTRACEMODIFIERCASING"))); #endif // NOTE: If you add an item here that starts with a new letter, you need to update the case // statements in IsItemSpecModifier and IsDerivableItemSpecModifier. internal const string FullPath = "FullPath"; internal const string RootDir = "RootDir"; internal const string Filename = "Filename"; internal const string Extension = "Extension"; internal const string RelativeDir = "RelativeDir"; internal const string Directory = "Directory"; internal const string RecursiveDir = "RecursiveDir"; internal const string Identity = "Identity"; internal const string ModifiedTime = "ModifiedTime"; internal const string CreatedTime = "CreatedTime"; internal const string AccessedTime = "AccessedTime"; internal const string DefiningProjectFullPath = "DefiningProjectFullPath"; internal const string DefiningProjectDirectory = "DefiningProjectDirectory"; internal const string DefiningProjectName = "DefiningProjectName"; internal const string DefiningProjectExtension = "DefiningProjectExtension"; // These are all the well-known attributes. internal static readonly string[] All = { FullPath, RootDir, Filename, Extension, RelativeDir, Directory, RecursiveDir, // <-- Not derivable. Identity, ModifiedTime, CreatedTime, AccessedTime, DefiningProjectFullPath, DefiningProjectDirectory, DefiningProjectName, DefiningProjectExtension }; private static HashSet<string> s_tableOfItemSpecModifiers = new HashSet<string>(All, StringComparer.OrdinalIgnoreCase); /// <summary> /// Indicates if the given name is reserved for an item-spec modifier. /// </summary> [SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "Performance")] internal static bool IsItemSpecModifier(string name) { if (name == null) { return false; } /* * What follows requires some explanation. * * This function is called many times and slowness here will be amplified * in critical performance scenarios. * * The following switch statement attempts to identify item spec modifiers that * have the exact case that our constants in ItemSpecModifiers have. This is the * 99% case. * * Further, the switch statement can identify certain cases in which there is * definitely no chance that 'name' is an item spec modifier. For example, a * 7 letter 'name' that doesn't start with 'r' or 'R' can't be RootDir and * therefore is not an item spec modifier. * */ switch (name.Length) { case 7: // RootDir switch (name[0]) { default: return false; case 'R': // RootDir if (name == FileUtilities.ItemSpecModifiers.RootDir) { return true; } break; case 'r': break; } break; case 8: // FullPath, Filename, Identity switch (name[0]) { default: return false; case 'F': // Filename, FullPath if (name == FileUtilities.ItemSpecModifiers.FullPath) { return true; } if (name == FileUtilities.ItemSpecModifiers.Filename) { return true; } break; case 'f': break; case 'I': // Identity if (name == FileUtilities.ItemSpecModifiers.Identity) { return true; } break; case 'i': break; } break; case 9: // Extension, Directory switch (name[0]) { default: return false; case 'D': // Directory if (name == FileUtilities.ItemSpecModifiers.Directory) { return true; } break; case 'd': break; case 'E': // Extension if (name == FileUtilities.ItemSpecModifiers.Extension) { return true; } break; case 'e': break; } break; case 11: // RelativeDir, CreatedTime switch (name[0]) { default: return false; case 'C': // CreatedTime if (name == FileUtilities.ItemSpecModifiers.CreatedTime) { return true; } break; case 'c': break; case 'R': // RelativeDir if (name == FileUtilities.ItemSpecModifiers.RelativeDir) { return true; } break; case 'r': break; } break; case 12: // RecursiveDir, ModifiedTime, AccessedTime switch (name[0]) { default: return false; case 'A': // AccessedTime if (name == FileUtilities.ItemSpecModifiers.AccessedTime) { return true; } break; case 'a': break; case 'M': // ModifiedTime if (name == FileUtilities.ItemSpecModifiers.ModifiedTime) { return true; } break; case 'm': break; case 'R': // RecursiveDir if (name == FileUtilities.ItemSpecModifiers.RecursiveDir) { return true; } break; case 'r': break; } break; case 19: case 23: case 24: return IsDefiningProjectModifier(name); default: // Not the right length for a match. return false; } // Could still be a case-insensitive match. bool result = s_tableOfItemSpecModifiers.Contains(name); #if DEBUG if (result && s_traceModifierCasing) { Console.WriteLine("'{0}' is a non-standard casing. Replace the use with the standard casing like 'RecursiveDir' or 'FullPath' for a small performance improvement.", name); } #endif return result; } /// <summary> /// Indicates if the given name is reserved for one of the specific subset of itemspec /// modifiers to do with the defining project of the item. /// </summary> internal static bool IsDefiningProjectModifier(string name) { switch (name.Length) { case 19: // DefiningProjectName if (name == FileUtilities.ItemSpecModifiers.DefiningProjectName) { return true; } break; case 23: // DefiningProjectFullPath if (name == FileUtilities.ItemSpecModifiers.DefiningProjectFullPath) { return true; } break; case 24: // DefiningProjectDirectory, DefiningProjectExtension switch (name[15]) { default: return false; case 'D': // DefiningProjectDirectory if (name == FileUtilities.ItemSpecModifiers.DefiningProjectDirectory) { return true; } break; case 'd': break; case 'E': // DefiningProjectExtension if (name == FileUtilities.ItemSpecModifiers.DefiningProjectExtension) { return true; } break; case 'e': break; } break; default: return false; } // Could still be a case-insensitive match. bool result = s_tableOfItemSpecModifiers.Contains(name); #if DEBUG if (result && s_traceModifierCasing) { Console.WriteLine("'{0}' is a non-standard casing. Replace the use with the standard casing like 'RecursiveDir' or 'FullPath' for a small performance improvement.", name); } #endif return result; } /// <summary> /// Indicates if the given name is reserved for a derivable item-spec modifier. /// Derivable means it can be computed given a file name. /// </summary> /// <param name="name">Name to check.</param> /// <returns>true, if name of a derivable modifier</returns> internal static bool IsDerivableItemSpecModifier(string name) { bool isItemSpecModifier = IsItemSpecModifier(name); if (isItemSpecModifier) { if (name.Length == 12) { if (name[0] == 'R' || name[0] == 'r') { // The only 12 letter ItemSpecModifier that starts with 'R' is 'RecursiveDir' return false; } } } return isItemSpecModifier; } /// <summary> /// Performs path manipulations on the given item-spec as directed. /// Does not cache the result. /// </summary> internal static string GetItemSpecModifier(string currentDirectory, string itemSpec, string definingProjectEscaped, string modifier) { string dummy = null; return GetItemSpecModifier(currentDirectory, itemSpec, definingProjectEscaped, modifier, ref dummy); } /// <summary> /// Performs path manipulations on the given item-spec as directed. /// /// Supported modifiers: /// %(FullPath) = full path of item /// %(RootDir) = root directory of item /// %(Filename) = item filename without extension /// %(Extension) = item filename extension /// %(RelativeDir) = item directory as given in item-spec /// %(Directory) = full path of item directory relative to root /// %(RecursiveDir) = portion of item path that matched a recursive wildcard /// %(Identity) = item-spec as given /// %(ModifiedTime) = last write time of item /// %(CreatedTime) = creation time of item /// %(AccessedTime) = last access time of item /// /// NOTES: /// 1) This method always returns an empty string for the %(RecursiveDir) modifier because it does not have enough /// information to compute it -- only the BuildItem class can compute this modifier. /// 2) All but the file time modifiers could be cached, but it's not worth the space. Only full path is cached, as the others are just string manipulations. /// </summary> /// <remarks> /// Methods of the Path class "normalize" slashes and periods. For example: /// 1) successive slashes are combined into 1 slash /// 2) trailing periods are discarded /// 3) forward slashes are changed to back-slashes /// /// As a result, we cannot rely on any file-spec that has passed through a Path method to remain the same. We will /// therefore not bother preserving slashes and periods when file-specs are transformed. /// /// Never returns null. /// </remarks> /// <param name="currentDirectory">The root directory for relative item-specs. When called on the Engine thread, this is the project directory. When called as part of building a task, it is null, indicating that the current directory should be used.</param> /// <param name="itemSpec">The item-spec to modify.</param> /// <param name="definingProjectEscaped">The path to the project that defined this item (may be null).</param> /// <param name="modifier">The modifier to apply to the item-spec.</param> /// <param name="fullPath">Full path if any was previously computed, to cache.</param> /// <returns>The modified item-spec (can be empty string, but will never be null).</returns> /// <exception cref="InvalidOperationException">Thrown when the item-spec is not a path.</exception> [SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity", Justification = "Pre-existing")] internal static string GetItemSpecModifier(string currentDirectory, string itemSpec, string definingProjectEscaped, string modifier, ref string fullPath) { ErrorUtilities.VerifyThrow(itemSpec != null, "Need item-spec to modify."); ErrorUtilities.VerifyThrow(modifier != null, "Need modifier to apply to item-spec."); string modifiedItemSpec = null; try { if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.FullPath, StringComparison.OrdinalIgnoreCase)) { if (fullPath != null) { return fullPath; } if (currentDirectory == null) { currentDirectory = String.Empty; } modifiedItemSpec = GetFullPath(itemSpec, currentDirectory); fullPath = modifiedItemSpec; ThrowForUrl(modifiedItemSpec, itemSpec, currentDirectory); } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.RootDir, StringComparison.OrdinalIgnoreCase)) { GetItemSpecModifier(currentDirectory, itemSpec, definingProjectEscaped, ItemSpecModifiers.FullPath, ref fullPath); modifiedItemSpec = Path.GetPathRoot(fullPath); if (!EndsWithSlash(modifiedItemSpec)) { ErrorUtilities.VerifyThrow(FileUtilitiesRegex.StartsWithUncPattern(modifiedItemSpec), "Only UNC shares should be missing trailing slashes."); // restore/append trailing slash if Path.GetPathRoot() has either removed it, or failed to add it // (this happens with UNC shares) modifiedItemSpec += Path.DirectorySeparatorChar; } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.Filename, StringComparison.OrdinalIgnoreCase)) { // if the item-spec is a root directory, it can have no filename if (IsRootDirectory(itemSpec)) { // NOTE: this is to prevent Path.GetFileNameWithoutExtension() from treating server and share elements // in a UNC file-spec as filenames e.g. \\server, \\server\share modifiedItemSpec = String.Empty; } else { // Fix path to avoid problem with Path.GetFileNameWithoutExtension when backslashes in itemSpec on Unix modifiedItemSpec = Path.GetFileNameWithoutExtension(FixFilePath(itemSpec)); } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.Extension, StringComparison.OrdinalIgnoreCase)) { // if the item-spec is a root directory, it can have no extension if (IsRootDirectory(itemSpec)) { // NOTE: this is to prevent Path.GetExtension() from treating server and share elements in a UNC // file-spec as filenames e.g. \\server.ext, \\server\share.ext modifiedItemSpec = String.Empty; } else { modifiedItemSpec = Path.GetExtension(itemSpec); } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.RelativeDir, StringComparison.OrdinalIgnoreCase)) { modifiedItemSpec = GetDirectory(itemSpec); } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.Directory, StringComparison.OrdinalIgnoreCase)) { GetItemSpecModifier(currentDirectory, itemSpec, definingProjectEscaped, ItemSpecModifiers.FullPath, ref fullPath); modifiedItemSpec = GetDirectory(fullPath); if (NativeMethodsShared.IsWindows) { int length = -1; if (FileUtilitiesRegex.StartsWithDrivePattern(modifiedItemSpec)) { length = 2; } else { length = FileUtilitiesRegex.StartsWithUncPatternMatchLength(modifiedItemSpec); } if (length != -1) { ErrorUtilities.VerifyThrow((modifiedItemSpec.Length > length) && IsSlash(modifiedItemSpec[length]), "Root directory must have a trailing slash."); modifiedItemSpec = modifiedItemSpec.Substring(length + 1); } } else { ErrorUtilities.VerifyThrow(!string.IsNullOrEmpty(modifiedItemSpec) && IsSlash(modifiedItemSpec[0]), "Expected a full non-windows path rooted at '/'."); // A full unix path is always rooted at // `/`, and a root-relative path is the // rest of the string. modifiedItemSpec = modifiedItemSpec.Substring(1); } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.RecursiveDir, StringComparison.OrdinalIgnoreCase)) { // only the BuildItem class can compute this modifier -- so leave empty modifiedItemSpec = String.Empty; } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.Identity, StringComparison.OrdinalIgnoreCase)) { modifiedItemSpec = itemSpec; } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.ModifiedTime, StringComparison.OrdinalIgnoreCase)) { // About to go out to the filesystem. This means data is leaving the engine, so need // to unescape first. string unescapedItemSpec = EscapingUtilities.UnescapeAll(itemSpec); FileInfo info = FileUtilities.GetFileInfoNoThrow(unescapedItemSpec); if (info != null) { modifiedItemSpec = info.LastWriteTime.ToString(FileTimeFormat, null); } else { // File does not exist, or path is a directory modifiedItemSpec = String.Empty; } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.CreatedTime, StringComparison.OrdinalIgnoreCase)) { // About to go out to the filesystem. This means data is leaving the engine, so need // to unescape first. string unescapedItemSpec = EscapingUtilities.UnescapeAll(itemSpec); if (FileSystems.Default.FileExists(unescapedItemSpec)) { modifiedItemSpec = File.GetCreationTime(unescapedItemSpec).ToString(FileTimeFormat, null); } else { // File does not exist, or path is a directory modifiedItemSpec = String.Empty; } } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.AccessedTime, StringComparison.OrdinalIgnoreCase)) { // About to go out to the filesystem. This means data is leaving the engine, so need // to unescape first. string unescapedItemSpec = EscapingUtilities.UnescapeAll(itemSpec); if (FileSystems.Default.FileExists(unescapedItemSpec)) { modifiedItemSpec = File.GetLastAccessTime(unescapedItemSpec).ToString(FileTimeFormat, null); } else { // File does not exist, or path is a directory modifiedItemSpec = String.Empty; } } else if (IsDefiningProjectModifier(modifier)) { if (String.IsNullOrEmpty(definingProjectEscaped)) { // We have nothing to work with, but that's sometimes OK -- so just return String.Empty modifiedItemSpec = String.Empty; } else { if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.DefiningProjectDirectory, StringComparison.OrdinalIgnoreCase)) { // ItemSpecModifiers.Directory does not contain the root directory modifiedItemSpec = Path.Combine ( GetItemSpecModifier(currentDirectory, definingProjectEscaped, null, ItemSpecModifiers.RootDir), GetItemSpecModifier(currentDirectory, definingProjectEscaped, null, ItemSpecModifiers.Directory) ); } else { string additionalModifier = null; if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.DefiningProjectFullPath, StringComparison.OrdinalIgnoreCase)) { additionalModifier = ItemSpecModifiers.FullPath; } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.DefiningProjectName, StringComparison.OrdinalIgnoreCase)) { additionalModifier = ItemSpecModifiers.Filename; } else if (string.Equals(modifier, FileUtilities.ItemSpecModifiers.DefiningProjectExtension, StringComparison.OrdinalIgnoreCase)) { additionalModifier = ItemSpecModifiers.Extension; } else { ErrorUtilities.ThrowInternalError("\"{0}\" is not a valid item-spec modifier.", modifier); } modifiedItemSpec = GetItemSpecModifier(currentDirectory, definingProjectEscaped, null, additionalModifier); } } } else { ErrorUtilities.ThrowInternalError("\"{0}\" is not a valid item-spec modifier.", modifier); } } catch (Exception e) when (ExceptionHandling.IsIoRelatedException(e)) { ErrorUtilities.VerifyThrowInvalidOperation(false, "Shared.InvalidFilespecForTransform", modifier, itemSpec, e.Message); } return modifiedItemSpec; } /// <summary> /// Indicates whether the given path is a UNC or drive pattern root directory. /// <para>Note: This function mimics the behavior of checking if Path.GetDirectoryName(path) == null.</para> /// </summary> /// <param name="path"></param> /// <returns></returns> private static bool IsRootDirectory(string path) { // Eliminate all non-rooted paths if (!Path.IsPathRooted(path)) { return false; } int uncMatchLength = FileUtilitiesRegex.StartsWithUncPatternMatchLength(path); // Determine if the given path is a standard drive/unc pattern root if (FileUtilitiesRegex.IsDrivePattern(path) || FileUtilitiesRegex.IsDrivePatternWithSlash(path) || uncMatchLength == path.Length) { return true; } // Eliminate all non-root unc paths. if (uncMatchLength != -1) { return false; } // Eliminate any drive patterns that don't have a slash after the colon or where the 4th character is a non-slash // A non-slash at [3] is specifically checked here because Path.GetDirectoryName // considers "C:///" a valid root. if (FileUtilitiesRegex.StartsWithDrivePattern(path) && ((path.Length >= 3 && path[2] != '\\' && path[2] != '/') || (path.Length >= 4 && path[3] != '\\' && path[3] != '/'))) { return false; } // There are some edge cases that can get to this point. // After eliminating valid / invalid roots, fall back on original behavior. return Path.GetDirectoryName(path) == null; } /// <summary> /// Temporary check for something like http://foo which will end up like c:\foo\bar\http://foo /// We should either have no colon, or exactly one colon. /// UNDONE: This is a minimal safe change for Dev10. The correct fix should be to make GetFullPath/NormalizePath throw for this. /// </summary> private static void ThrowForUrl(string fullPath, string itemSpec, string currentDirectory) { if (fullPath.IndexOf(':') != fullPath.LastIndexOf(':')) { // Cause a better error to appear fullPath = Path.GetFullPath(Path.Combine(currentDirectory, itemSpec)); } } } } }
jeffkl/msbuild
src/Shared/Modifiers.cs
C#
mit
33,376
const vi = { langName: `Tiếng Việt`, // Change this to the name of your language (written in your language) langCode: `vi`, header: {}, footer: { 'header_v1': [ { name: `__githubRepoLink__`, text: `Công Cụ Cliff Effects`, }, ], 'cfbCredit_v1': [ `Được làm với `, { name: `__heartIcon__` }, ` bởi Code for Boston`, ], }, homePage: { 'appName_v1': `Công Cụ Cliff Effects`, 'prototypeNote_v1': `NGUYÊN MẪU HƯỚNG DẪN*`, 'cautionaryNote_v1': `*Dụng cụ này là mẫu đầu tiên và không nên dùng để quyết định việc tài chính`, 'toFirstInputPage_v1': `Bắt Đầu Dùng`, 'toAboutPage_v1': `Tìm Hiểu Thêm`, }, aboutPage: { 'aboutPageHeader_v1': `Tìm Hiểu Thêm Về Công Cụ Cliff Effects`, 'whatForHeader_v1': `Cái công cụ này cho ai?`, 'whatForImportantNote_v1': [ { name: `__importantNote__`, text: `Lưu Ý Quan Trọng:`, }, // v2: `This application is a minimum viable product. It should not be used as the only tool to understand a client's SNAP or Section 8 financial situation, or for any other public assistance program. It's made by volunteers with limited time and the tool may not be up to date with the current regulations.`, `Ứng dụng này là sản phẩm hữu hiệu thiểu. Bạn không nên dùng dụng cụ này là dụng cụ duy nhất để hiểu biết tình hình tài chính của chương trình phiếu mua hàng SNAP hoặc của chương trình Section 8 Housing liên quan với khách, hoặc dùng cho chương trình hỗ trợ công cộng khác.`, ], 'whatFor_v2': [ `Công cụ này có thể giúp người dùng xem sự thay đổi trong các quyền lợi nhân được từ trợ cấp công cộng từ phiếu mua hàng SNAP (Supplemental Nutrition Assistance Program) và chương trình Section 8 Housing nếu mà tiền lương của khách bị thay đổi. Cái ứng dụng này được thiết kế cho người quản lý hồ sơ tại `, { name: `__projectHope__` }, ` với mục đích để giúp đoán những thay đổi trong các quyền lợi của khách.`, ], 'whyHeader_v1': `Tại sao công cụ này quan trọng?`, // v2: All the ways that benefits interact with a family's circumstances and with each other are impossible for one person to calculate accurately. A family making fanancial choices these days is making them blind. We're exploring ways to deal with this issue of complexity and help families better understand and predict their situation. 'why1_v1': `Hiệu ứng vách đá này xảy ra khi có sự thay đổi nhỏ trong hoàn cảnh của hộ gia đình - như tăng tiền lương nhẹ - và cái đó làm giảm lợi ích của họ một cách không cân xứng. Hộ gia đình đang làm việc để tăng lượng của họ, nhưng cuối cùng họ sẽ bị lỗ với tiền nhân được hàng tháng. Những cái hiệu ứng vách đá ngăn chặn nhiều gia đình thực sự rời khỏi chương trình hỗ trợ công cộng.`, // v2: A cliff effect occurs when a slight change in a household’s circumstances - say, a slight pay raise - disproportionately lowers their benefits. Some situations can leave a family earning more, but bringing in less money all together. Sometimes these cliff effects prevent many families from actually getting off of public assistance programs. A lot of people are working to improve the situation, but there's a lot of work left to do. SNAP itself underwent some major changes in the past few years that aim to improve the course of that benefit. Below are links to more information specifically about cliff effects relevant to 2017 and before. 'why2_v1': `Những hiệu ứng vách đá cũng khó để dự đoán. Các tương tác giữa tiền lương, số người trong hộ nhà đinh, và nhiều tiêu chí khác, cũng như các hiệu ứng mà mỗi chương trình đã tác động lẫn nhau kết quả cách bất ngờ. Chúng tôi đang tìm cách giải quyết vấn đề phức tạp này và giúp các gia đình hiểu rõ hơn và dự đoán tình hình của họ.`, 'videoLinkText_v1': `Phim dài hai phút mô tả hiệu ứng vách đá`, 'quantLinkText_v1': `Những kịch bản định lượng thể hiện hiệu ứng vách đá`, 'benefitsLinkText_v1': `Phân tích các lợi ích khác nhau được cung cấp trong MA`, 'howToUseHeader_v1': `Cách sử dụng công cụ này?`, 'howToUse_v1': `Đi từng bước một để thêm thông tin về lợi ích hiện tại của khách, hộ gia đình, tiền lương, và các thông tin liên quan khác. Thông tin này sẽ được sử dụng để dự đoán số tiền trợ cấp. Lúc mà bạn đến trang cuối, hãy thay đổi số tiền ở trong ô “Tiền Lương Trong Tương Lai” để xem thấy đổi tiền lương sẽ gây ra thay đổi về số tiền trợ cấp như sao. Hiện tại, các chương trình phiếu mua hàng SNAP và chương trình Section 8 Housing đều có sẵn. Lưu ý rằng các dự đoán có thể không khớp trục tiếp với số tiền trợ cấp hiện tại của khách. Trọng tâm của ứng dụng là số lượng thay đổi xảy ra trong lợi ích khi có thay đổi về mức lương của tiền lương.`, 'howToUseNote_v1': [ `Xin lưu ý rằng ứng dụng này không lưu trữ dữ liệu người dùng, vì vậy `, { name: `__refreshWarning__`, text: `nếu bạn cập nhật trang, dữ liệu bạn đã nhập vào sẽ bị mất.`, }, ` Mỗi khi bạn khởi động ứng dụng, dữ liệu người dùng của bạn sẽ đặt lại.`, ], 'whoMadeThisHeader_v1': `Ai là những người ủng hộ sáng kiến này?`, 'whoMadeThis1_v1': [ `Ứng dụng này là một phần của dự án được thực hiện bởi thành phố Boston’s Foundation Open Door tiền trợ cấp cho trường đại học University of Massachusetts Boston's `, { name: `__centerForSocialPolicy__` }, `, hợp tác chặt chẽ với `, { name: `__projectHope__` }, ` và `, { name: `__codeForBoston__` }, `. Trung Tâm Chính Sách Xã Hội là đối tác chính cho `, { name: `__onSolidGroundCoalition__` }, `.`, ], 'whoMadeThis2_v1': [ `Bộ mã này đang được duy trì trên `, { name: `__github__` }, ` bởi các tình nguyện viên tại `, { name: `__codeForBoston__` }, `. Để biết thêm thông tin hoặc báo cáo sự cố, vui lòng liên lạc `, { name: `__contactEmail__` }, `.`, ], 'whoMadeThis3_v1': [ `Đây là một lời cảm ơn đặc biệt đến tất cả các tình nguyện viên tại Code for Boston đã mang đến cho bạn ứng dụng này, đặc biệt là `, { name: `__namesExceptLast__` }, `, và `, { name: `__lastName__` }, `.`, ], }, visitPage: { 'previous_v1': `Trang Trước`, 'next_v1': `Trang Kế Tiếp`, 'newClient_v1': `Khách Mới`, stepBar: { 'currentBenefits_v1': `Lợi Ích Hiện Tại`, 'household_v1': `Hộ Gia Đình`, 'currentIncome_v1': `Tiền Lương`, 'currentExpenses_v1': `Chi Phí`, 'predictions_v1': `Dự Đoán`, }, formHelpers: { 'weekly_v1': `Hàng Tuần`, 'monthly_v1': `Hàng Tháng`, 'yearly_v1': `Hàng Năm`, 'yesLabel_v1': `Vâng`, 'noLabel_v1': `Không`, }, currentBenefits: { currentBenefits_v1: `Lợi Ích Hiện Tại`, selectBenefits_v1: `Chọn những lợi ích bạn hiện đang nhận được`, has_section8_label_v1: `Bạn có chương trình Section 8 Housing không?`, has_snap_label_v1: `Bạn có chương trình phiếu mua hàng SNAP không?`, }, household: { title_v1: `Hộ Gia Đình`, clarifier_v1: `Thông tin về các thành viên trong hộ gia đình của bạn.`, role_v1: `Vai`, age_v1: `Tuổi Tác`, disabled_v1: `Tàn Tật`, headOfHousehold_v1: `Chủ Hộ`, addMember_v1: `Thêm Thành Viên`, spouse_v1: `Vợ/Chồng của Chủ Hộ`, childOther_v1: `Trẻ Em/Thành Viên Khác Trong Gia Đình`, previous_v1: `Trang Trước`, next_v1: `Trang Kế Tiếp`, }, currentIncome: { title_v1: `Lượng hiện tại của hộ gia đình`, clarifier_v1: `Tiền lương bạn đã thu được trong 12 tháng qua.`, explainSnapCalculation_v1: `Nguyên mẫu này sẽ tính toán số tiền nhận được từ chương trình phiếu mua hàng SNAP`, earnedIncome: { label_v1: `Tiền lương kiếm được`, hint_v1: `Tiền lương kiếm được là bao nhiêu bạn và gia đình bạn được trả lúc đi làm`, }, TAFDC: { label_v1: `TAFDC`, hint_v1: `Chương trình TAFDC (Transitional Aid to Families with Dependent Children) cung cấp hỗ trợ tài chính trong thời gian ngắn cho các gia đình có con`, }, SSI: { label_v1: `SSI`, hint_v1: `Chương trình liên bang SSI (Supplemental Security Income) cung cấp hỗ trợ tài chính và chăm sóc sức khỏe cho những người từ 65 tuổi trở lên, hoặc những người bị mù hoặc tàn tật`, }, SSDI: { label_v1: `SSDI`, hint_v1: `Chương trình liên bang SSDI (Social Security Disability Income) giúp đỡ người tàn tật`, }, childSupport: { label_v1: `Tiền hỗ trợ trẻ em nhận được`, hint_v1: `Tiền hỗ trợ trẻ em là tiền trả cho bạn bởi người phối ngẫu để giúp con bạn`, }, unemployment: { label_v1: `Tiến thất nghiệp`, hint_v1: `Tiền trợ cấp thất nghiệp cung cấp thu nhập cho những người đã bị sa thải`, }, workersComp: { label_v1: `Tiền bồi thường lao động`, hint_v1: `Tiền bồi thường lao động cung cấp hỗ trợ cho những người đã bị thương trong công việc`, }, pension: { label_v1: `Tiền lương hưu`, hint_v1: `Tiền lương hưu cung cấp thu nhập cho người về hưu, thường là từ các chủ trước của họ`, }, socialSecurity: { label_v1: `Tiền an ninh xã hội`, hint_v1: `Tiền an ninh xã hội là một chương trình liên bang cung cấp hỗ trợ cho người về hưu`, }, alimony: { label_v1: `Tiền cấp dưởng`, hint_v1: `Tiền cấp dưởng là tiền do vợ/chồng trả tiền cho người kia sau khi ly dị`, }, otherIncome: { label_v1: `Thu nhập khác`, hint_v1: `Xin vui lòng cho biết thu nhập bạn có thể có từ các nguồn không được liệt kê ở trên`, }, previous_v1: `Trang Trước`, next_v1: `Trang Kế Tiếp`, }, currentExpenses: { title_v1: `Chỉ phí hộ gia đình hiện tại`, unreimbursedNonMedicalChildCare: { sectionHeading_v1: `Tiền hợp lý không được bồi thường để chăm sóc trẻ em cho việc không liên quan với y tế`, subheading_v1: `Một “đứa trẻ” là một người tự 12 tuổi trở xuống. Xin đừng bao gồm số tiền được trả bởi các chương trình quyền lợi khác.`, columnExpenseType_v1: `Tiền Chi Phi`, childDirectCare: { label_v1: `Tiền chi phí trực tiếp cho việc chăm sóc`, hint_v1: `Bạn trả bao nhiêu cho việc hỗ trợ trẻ em ra khỏi túi?`, }, childBeforeAndAfterSchoolCare: { label_v1: `Tiền chăm sóc trước và sau giờ học`, hint_v1: `Bạn trả bao nhiêu cho việc giữ trẻ trước hoặc sau giờ học?`, }, childTransportation: { label_v1: `Tiền chi phí cho sự chuyên chở`, hint_v1: `Bạn trả bao nhiêu cho việc chuyên chở?`, }, childOtherCare: { label_v1: `Tiền cho việc chăm sóc khác`, hint_v1: `Bạn trả bao nhiêu cho bất kỳ dịch vụ khác để chăm sóc trẻ?`, }, doEarnBecauseOfChildCare_v1: `Các dịch vụ giữ trẻ em có cho phép bạn kiếm thêm thu nhập hay không?`, earnedBecauseOfChildCare_v1: `Thu nhập thực hiện được do chi phí chăm sóc trẻ em`, }, childSupport: { sectionHeading_v1: `Hỗ Trợ Trẻ Em`, columnExpenseType_v1: `Tiền Chi Phi`, childSupportPaidOut: { legallyObligated_v1: `Bắt buộc về mặt pháp lý`, childSupport_v1: ` hỗ trợ trẻ em`, }, }, housing: { sectionHeading_v1: `Việc Nhà Ở`, monthlyContractRent: { label_v1: `Hợp Đồng Thuê Hàng Tháng (tổng số tiền thuê nhà của bạn)`, hint_v1: `Tổng số tiền thuê nhà hàng tháng của bạn`, }, monthlyRentShare: { label_v1: `Chia sẻ của tiền thuê nhà hàng tháng của bạn (tổng số tiền thuê bạn phải trả nếu bạn chia sẻ tiền chi phí)`, hint_v1: `Bạn phải trả bao nhiêu trong tổng số tiền thuê nhà`, }, utilitiesSubheading_v1: `Trong những ngành phục vụ công cộng, bạn trả tiền cho những cái nào?`, climateControl: { label_v1: `Tiền Cho Sưởi Ấm Hoặc Làm Mát (ví dụ máy lạnh trong mùa hè)`, hint_v1: `Bạn trả bao nhiêu tiền nếu bạn có hóa đơn riêng để sưởi ấm và/hoặc làm mát`, }, nonHeatElectricity: { label_v1: `Sử dụng điện cho mục đích không sưởi ấm`, hint_v1: `Bạn trả bao nhiêu tiền cho bất kỳ việc sử dụng điện (ngoài sự dũng cho sưởi ấm)`, }, phone: { label_v1: `Dịch vụ điện thoại`, hint_v1: `Bạn trả bao nhiêu cho dịch vụ điện thoại cơ bản`, }, fuelAssistance: { label_v1: `Bạn có được hỗ trợ nhiên liệu không?`, hint_v1: `Hỗ trợ nhiên liệu giúp bạn trả tiền cho sử sưởi ấm nhiên liệu`, }, }, previous_v1: `Trang Trước`, next_v1: `Trang Kế Tiếp`, }, predictions: { 'title_v1': `Chuyện Gì Có Thể Xảy Ra?`, 'futureIncomeQuestion_v1': `Bạn sẽ được trả bao nhiêu tiền trong tương lai? (Bạn có thể thử số tiền khác nhau)`, 'tabTitleChanges_v1': `Những Thay Đổi`, 'tabTitleChangesChart_v1': `Biểu Đồ Của Những Thay Đổi`, 'tabTitleStackedIncomes_v1': `Xếp Chồng Tiền Thu Nhập Lên Nhau`, 'tabTitleBenefitPrograms_v1': `Chương Trình Lợi Ích`, 'chartsHeader_v1': `Với việc tăng lương, lợi ích của bạn có thể thay đổi như thế nào?`, 'warningMessage_v1': `Công cụ này đang được thử nghiệm và những con số này có thể không đúng. Nếu chúng không đúng, xin vui lòng gửi cho chúng tôi phản hồi của bạn.`, 'submitFeedback_v1': `Gửi Phản Hồi`, beforeMoney_v1: ``, afterMoney_v1: `$`, thousandsSeparator_v0: `,`, beforeMoneyWithTime_v1: ` / tháng`, afterMoneyWithTime_v1: `$`, xAxisTitleEnd_v0: ` Pay`, panInstructions_v0: `To pan, hold 'alt' while you click and drag`, currentPayPlotLineLabel_v0: `Current pay:`, noBenefitsSelected_v0: `No public benefit programs have been selected`, 'benefitsTableTitle_v1': `Những Thay Đổi`, 'columnBenefit_v1': `Lợi Ích `, 'columnCurrentBenefits_v1': `Lợi Ích Hiện Tại`, 'columnNewEstimate_v1': `Ước Tính Mới`, 'columnDifference_v1': `Sự Khác Biệt`, 'rowSNAP_v1': `Chương Trình Phiếu Mua Hàng SNAP`, 'rowSection8_v1': `Chương Trình Section 8 Housing`, 'rowTotalBenefits_v1': `Tổng Lợi Ích`, rowEarned_v1: `Tiền Thu Nhập`, rowNetTotal_v1: `Tổng số tiền sau khi chi phí`, stackedBarGraphTitle_v1: `Đồ Thị Về Việc Thay Đổi`, moneyInAsPayChanges_v1: `Tiền Nhận Được Lúc Mà Thay Đổi Thu Nhập`, stackedAreaGraphTitle_v1: `Xếp Chồng Tiền Thu Nhập Lên Nhau`, allMoneyComingIn_v1: `Tổng Tiền Nhận Được Lúc Mà Thay Đổi Thu Nhập`, benefitProgramsTitle_v1: `Số tiền trợ cấp của cá nhân nhận được cho gia đình lúc mà thay đổi thu nhập`, benefitValue_v1: `Giá Trị Của Lợi Ích ($)`, totalMoney_v1: `Tổng Số Tiền Nhận Được ($)`, weeklyPay_v1: `Tiền Lương Hàng Tuần ($)`, monthlyPay_v1: `Tiền Lương Hàng Tháng ($)`, yearlyPay_v1: `Tiền Lương Hàng Năm ($)`, hasPay_v1: `Tiền Lương`, hasSNAP_v1: `Chương Trình Phiếu Mua Hàng SNAP`, hasSection8_v1: `Chương Trình Section 8 Housing`, futurePayLine_v1: `Tiền Lương Trong Tương Lai`, buttonWeekly_v1: `Hàng Tuần`, buttonMonthly_v1: `Hàng Tháng`, buttonYearly_v1: `Hàng Năm`, }, }, }; // ends vi export { vi };
knod/cliff-effects-1
src/localization/vi.js
JavaScript
mit
18,411
// Copyright (c) MarinAtanasov. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the project root for license information. using System; using System.Collections.Generic; namespace AppBrix.Configuration.Memory; /// <summary> /// In-memory implementation of the <see cref="IConfigService"/>. /// </summary> public sealed class MemoryConfigService : IConfigService { #region Public and overriden methods /// <summary> /// Gets the currently loaded instance of the specified config. /// If the config is not loaded, creates a new instance. /// </summary> /// <param name="type">The type of the configuration.</param> /// <returns>The configuration.</returns> public IConfig Get(Type type) { if (type is null) throw new ArgumentNullException(nameof(type)); if (!configs.TryGetValue(type, out var config)) { config = (IConfig)type.CreateObject(); configs[type] = config; } return config; } /// <summary> /// Saves one configuration. Does not do anything. /// </summary> /// <param name="config">The configuration to save.</param> public void Save(IConfig config) { if (config is null) throw new ArgumentNullException(nameof(config)); this.configs[config.GetType()] = config; } /// <summary> /// Saves all modified configurations. Does not do anything. /// </summary> public void Save() { } #endregion #region Private fields and constants private readonly Dictionary<Type, IConfig> configs = new Dictionary<Type, IConfig>(); #endregion }
MarinAtanasov/AppBrix
Core/AppBrix.Configuration.Memory/MemoryConfigService.cs
C#
mit
1,688
<h1 style="text-align: center;"><strong>Get-CaasAclRules</strong></h1> <h2><strong>Synopsis</strong></h2> <p style="margin-left: 40px;">Get the ACL rules for a network.</p> <h2><strong>Syntax</strong></h2> <pre style="margin-left: 40px;">Get-CaasAclRules -Network &lt;NetworkWithLocationsNetwork&gt; [[-Name] &lt;String&gt;] [-Connection &lt;ComputeServiceConnection&gt;] [&lt;CommonParameters&gt;] </pre> <h2><strong>Description</strong></h2> <h2><strong>Parameters</strong></h2> <h3><strong>-Network</strong> <em style="font-weight: 100;">&lt;NetworkWithLocationsNetwork&gt;</em></h3> <table border="1" style="margin-left: 40px;"> <tbody> <tr> <td>Required?</td> <td>True</td> </tr> <tr> <td>Position?</td> <td>named</td> </tr> <tr> <td>Default value</td> <td>&nbsp;</td> </tr> <tr> <td>Accept pipeline input?</td> <td>true (ByPropertyName)</td> </tr> <tr> <td>Accept wildcard characters?</td> <td>False</td> </tr> </tbody> </table> <h3><strong>-Name</strong> <em style="font-weight: 100;">&lt;String&gt;</em></h3> <table border="1" style="margin-left: 40px;"> <tbody> <tr> <td>Required?</td> <td>False</td> </tr> <tr> <td>Position?</td> <td>0</td> </tr> <tr> <td>Default value</td> <td>&nbsp;</td> </tr> <tr> <td>Accept pipeline input?</td> <td>true (ByValue)</td> </tr> <tr> <td>Accept wildcard characters?</td> <td>False</td> </tr> </tbody> </table> <h3><strong>-Connection</strong> <em style="font-weight: 100;">&lt;ComputeServiceConnection&gt;</em></h3> <table border="1" style="margin-left: 40px;"> <tbody> <tr> <td>Required?</td> <td>False</td> </tr> <tr> <td>Position?</td> <td>named</td> </tr> <tr> <td>Default value</td> <td>&nbsp;</td> </tr> <tr> <td>Accept pipeline input?</td> <td>true (ByPropertyName)</td> </tr> <tr> <td>Accept wildcard characters?</td> <td>False</td> </tr> </tbody> </table> <h3>&lt;CommonParameters&gt;</h3> <p style="margin-left: 40px;">This cmdlet supports the common parameters: Verbose, Debug,<br /> ErrorAction, ErrorVariable, WarningAction, WarningVariable,<br /> OutBuffer, PipelineVariable, and OutVariable. For more information, see<br /> about_CommonParameters (<a href="http://go.microsoft.com/fwlink/?LinkID=113216">http://go.microsoft.com/fwlink/?LinkID=113216</a>).</p> <h2><strong>Inputs</strong></h2> <p style="margin-left: 40px;"></p> <p style="margin-left: 80px;"></p> <h2><strong>Outputs</strong></h2> <p style="margin-left: 40px;"></p> <p style="margin-left: 80px;"></p> <h2><strong>Notes</strong></h2> <h2><strong>Examples</strong></h2> <h2><strong>Related links</strong></h2>
DimensionDataCBUSydney/DimensionData.ComputeClient
Help/PowerShell Commands/Get-CaasAclRules.html
HTML
mit
2,692
namespace Common.Addins.GitVersion; /// <summary> /// <para>Contains functionality related to <see href="https://github.com/gittools/gitversion">GitVersion</see>.</para> /// <para> /// In order to use the commands for this alias, include the following in your build.cake file to download and /// install from nuget.org, or specify the ToolPath within the <see cref="GitVersionSettings" /> class: /// <code> /// #tool "nuget:?package=GitVersion.CommandLine" /// </code> /// </para> /// </summary> [CakeAliasCategory("GitVersion")] public static class GitVersionAliases { /// <summary> /// Retrieves the GitVersion output. /// </summary> /// <param name="context">The context.</param> /// <returns>The Git version info.</returns> /// <example> /// <para>Update the assembly info files for the project.</para> /// <para>Cake task:</para> /// <code> /// <![CDATA[ /// Task("UpdateAssemblyInfo") /// .Does(() => /// { /// GitVersion(new GitVersionSettings { /// UpdateAssemblyInfo = true /// }); /// }); /// ]]> /// </code> /// <para>Get the Git version info for the project using a dynamic repository.</para> /// <para>Cake task:</para> /// <code> /// <![CDATA[ /// Task("GetVersionInfo") /// .Does(() => /// { /// var result = GitVersion(new GitVersionSettings { /// UserName = "MyUser", /// Password = "MyPassword, /// Url = "http://git.myhost.com/myproject.git" /// Branch = "develop" /// Commit = EnvironmentVariable("MY_COMMIT") /// }); /// // Use result for building NuGet packages, setting build server version, etc... /// }); /// ]]> /// </code> /// </example> [CakeMethodAlias] public static GitVersion GitVersion(this ICakeContext context) { if (context == null) { throw new ArgumentNullException(nameof(context)); } return GitVersion(context, new GitVersionSettings()); } /// <summary> /// Retrieves the GitVersion output. /// </summary> /// <param name="context">The context.</param> /// <param name="settings">The GitVersion settings.</param> /// <returns>The Git version info.</returns> /// <example> /// <para>Update the assembly info files for the project.</para> /// <para>Cake task:</para> /// <code> /// <![CDATA[ /// Task("UpdateAssemblyInfo") /// .Does(() => /// { /// GitVersion(new GitVersionSettings { /// UpdateAssemblyInfo = true /// }); /// }); /// ]]> /// </code> /// <para>Get the Git version info for the project using a dynamic repository.</para> /// <para>Cake task:</para> /// <code> /// <![CDATA[ /// Task("GetVersionInfo") /// .Does(() => /// { /// var result = GitVersion(new GitVersionSettings { /// UserName = "MyUser", /// Password = "MyPassword, /// Url = "http://git.myhost.com/myproject.git" /// Branch = "develop" /// Commit = EnvironmentVariable("MY_COMMIT") /// }); /// // Use result for building NuGet packages, setting build server version, etc... /// }); /// ]]> /// </code> /// </example> [CakeMethodAlias] public static GitVersion GitVersion(this ICakeContext context, GitVersionSettings settings) { if (context == null) { throw new ArgumentNullException(nameof(context)); } var gitVersionRunner = new GitVersionRunner(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools, context.Log); return gitVersionRunner.Run(settings); } }
asbjornu/GitVersion
build/common/Addins/GitVersion/GitVersionAliases.cs
C#
mit
3,793
html { font-size: 100%; } body { font-size: 15px; font-size: 0.9375rem; font-family: "Open sans", Helvetica, Arial, sans-serif; color: #666666; padding: 0; } .topspace { margin-top: 40px; } /********************************************************************* Navigation in header **********************************************************************/ .navbar { border-width: 1px 0; -webkit-border-radius: 0; -webkit-background-clip: padding-box; -moz-border-radius: 0; -moz-background-clip: padding; border-radius: 0; background-clip: padding-box; width: 100%; } .navbar.stick { position: fixed; top: 0; left: 0; opacity: .85; } .navbar-collapse { -webkit-border-radius: 0; -webkit-background-clip: padding-box; -moz-border-radius: 0; -moz-background-clip: padding; border-radius: 0; background-clip: padding-box; font-family: "Open sans", Helvetica, Arial, sans-serif; font-weight: 300; text-transform: uppercase; } .navbar-collapse .navbar-nav { float: none; margin: 0 auto; text-align: center; } .navbar-collapse .navbar-nav > li { float: none; display: inline-block; } .navbar-collapse .navbar-nav > li > a { padding: 20px 30px; } .dropdown ul.dropdown-menu { top: 85%; text-align: left; } .dropdown ul.dropdown-menu > li > a { padding: 5px 30px; } .navbar-default { background-color: #ffffff; border-color: #cccccc; } .navbar-default .navbar-nav > li > a { color: #454545; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #000000; background-color: #ffffff; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #000000; background-color: #ffffff; } .navbar-default .dropdown ul.dropdown-menu > li > a { color: #454545; } .navbar-default .dropdown ul.dropdown-menu > li > a:hover { background-color: #eeeeee; color: #000000; } .navbar-default .navbar-toggle { border-color: #666666; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ffffff; } .navbar-default .navbar-toggle .icon-bar { background-color: #333333; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #cccccc; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #ffffff; color: #000000; } /**************************************************************************************** Sidebar special Nav *****************************************************************************************/ .nav-side { font-size: 24px; font-size: 1.5rem; font-weight: 300; margin-top: -0.37em; } .nav-side > li > a { padding-top: 5px; padding-bottom: 5px; color: #f392b4; } .nav-side > li > a:hover { color: #bd1550; background: none; } .nav-side > li.active > a { color: #bd1550; } /********************************************************************* TYPOGRAPHY **********************************************************************/ p { line-height: 1.6em; margin: 0 0 30px 0; } ul, ol { line-height: 1.6em; margin: 0 0 30px 0; } blockquote { padding: 10px 20px; margin: 0 0 30px; border-left: 5px solid #eee; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Open sans", Helvetica, Arial, sans-serif; font-weight: 400; color: #333333; } h1 { font-size: 40px; font-size: 2.5rem; } h2 { font-size: 36px; font-size: 2.25rem; } h3 { font-size: 30px; font-size: 1.875rem; } h4 { font-size: 24px; font-size: 1.5rem; } h5 { font-size: 20px; font-size: 1.25rem; } a { color: #bd1550; } a:hover { color: #e93675; } .lead { font-weight: 300; font-size: 21px; font-size: 1.3125rem; } .text-msg { line-height: 1.7em; color: #b3b3b3; font-weight: 300; text-transform: capitalize; margin-top: -0.23em; } .size-auto, .size-full, .size-large, .size-medium, .size-thumbnail { max-width: 100%; height: auto; } /********************************************************************* HEADER **********************************************************************/ #head { background: #f4f4f4 url(../images/bg_head.jpg) top center; background-size: cover; color: #7C7C7C; padding: 30px 0 35px 0; } #head img.img-circle { display: block; width: 140px; height: 140px; overflow: hidden; border: 9px solid rgba(0, 0, 0, 0.05); margin: 0 auto; } #head .title { font-family: Alice, Georgia, serif; font-size: 49px; font-size: 3.0625rem; } #head .title a { text-decoration: none; color: #333333; } #head .tagline { display: block; font-size: 14px; font-size: 0.875rem; line-height: 1.2em; color: #7C7C7C; margin: 5px 0 0; } #head .tagline b { font-weight: normal; } #head .tagline a { color: #5E5E5E; } .home #head { padding: 90px 0; } .home #head .title { font-size: 49px; font-size: 3.0625rem; } .home #head .tagline { font-size: 16px; font-size: 1rem; margin: 15px 0 0; } /********************************************************************* CONTENT **********************************************************************/ img { max-width: 100%; } .btn { font-size: 12px; font-size: 0.75rem; text-decoration: none; text-transform: uppercase; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; color: #333; -webkit-border-radius: 0px; -webkit-background-clip: padding-box; -moz-border-radius: 0px; -moz-background-clip: padding; border-radius: 0px; background-clip: padding-box; -webkit-transition-property: all; -moz-transition-property: all; -o-transition-property: all; -ms-transition-property: all; transition-property: all; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; border: 0 none; padding: 12px 35px; text-shadow: 0 1px 0px #780d33; } .btn-primary { color: #fff; background-color: #bd1550; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active { color: #fff; background-color: #e61f65; } .btn-action { font-weight: bold; background: transparent!important; border: 1px solid #333; text-shadow: none; } .btn-action:hover, .btn-action:focus, .btn-action:active, .btn-action.active { color: #bd1550; border-color: #bd1550; } .btn-lg { padding: 15px 60px; font-size: 12px; line-height: 1.33; font-weight: bold; } .panel-cta { box-shadow: 0 0 0 1px #e1e1e1, 0 0 0 3px #fff, 0 0 0 4px #e1e1e1; background: #f3f3f3; -webkit-border-radius: 0; -webkit-background-clip: padding-box; -moz-border-radius: 0; -moz-background-clip: padding; border-radius: 0; background-clip: padding-box; } .panel-cta p, .panel-cta h3, .panel-cta h4, .panel-cta h5, .panel-cta h6 { margin: 0; } .panel-cta .panel-body { padding: 35px; } /* Section - Featured */ .featured { font-size: 13px; font-size: 0.8125rem; } .featured h3 { font-weight: bold; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 24px; font-size: 1.5rem; text-transform: uppercase; line-height: 1.4em; vertical-align: middle; margin: 0 0 25px 0; } /* Section - Recent works */ .thumbnails { padding: 0; } .thumbnails li { margin-bottom: 30px; } .thumbnails .details { display: block; text-align: center; font-size: 12px; font-size: 0.75rem; } .thumbnail { display: block; -webkit-border-radius: 0; -webkit-background-clip: padding-box; -moz-border-radius: 0; -moz-background-clip: padding; border-radius: 0; background-clip: padding-box; border: 0 none; margin-bottom: 10px; padding: 0; text-align: center; text-decoration: none; color: #333; } .thumbnail .img { display: block; width: 100%; overflow: hidden; height: 180px; margin: 0 0 20px; position: relative; } .thumbnail .title { text-transform: uppercase; margin: 0 2em; display: block; text-indent: 0; } .thumbnail .cover { position: absolute; display: block; opacity: 0; width: 100%; height: 180px; background-color: rgba(255, 255, 255, 0.8); -webkit-transition-property: all; -moz-transition-property: all; -o-transition-property: all; -ms-transition-property: all; transition-property: all; -webkit-transition-duration: 550ms; -moz-transition-duration: 550ms; -o-transition-duration: 550ms; transition-duration: 550ms; } .thumbnail .cover .more { position: absolute; bottom: 15px; right: 0; height: 32px; line-height: 32px; padding: 0 20px; -webkit-border-radius: 1px 0 0 1px; -webkit-background-clip: padding-box; -moz-border-radius: 1px 0 0 1px; -moz-background-clip: padding; border-radius: 1px 0 0 1px; background-clip: padding-box; font-size: 12px; font-size: 0.75rem; text-transform: uppercase; text-shadow: 0 1px 0px #780d33; background: #bd1550; color: white; } .thumbnail img { width: 100%; position: absolute; top: 0; left: 0; } .thumbnail:hover { color: #333; text-decoration: none; } .thumbnail:hover img { -webkit-filter: saturate(0%); } .thumbnail:hover .cover { opacity: 1; } /* pagination */ .pagination > li > a { color: #808080; border: 0 none; font-size: 20px; font-size: 1.25rem; font-family: Georgia, serif; } .pagination > li > a:hover { color: #000000; background: none; } .pagination > li.active > a { color: #333333; background: none; } .pagination > li.active > a:hover { color: #000000; background: none; } /********************************************************************* BLOG **********************************************************************/ .section-title, .entry-title { display: block; width: 100%; overflow: hidden; margin: 0px 0 25px; text-align: center; font-weight: 300; text-transform: uppercase; font-size: 36px; font-size: 2.25rem; letter-spacing: 1px; } .section-title a, .entry-title a { color: #333333; } .section-title span, .entry-title span { display: inline-block; position: relative; } .section-title span:before, .entry-title span:before, .section-title span:after, .entry-title span:after { content: ""; position: absolute; height: 4px; top: .53em; width: 400%; border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; } .section-title span:before, .entry-title span:before { right: 100%; margin-right: 45px; } .section-title span:after, .entry-title span:after { left: 100%; margin-left: 45px; } .entry-header .entry-meta { text-align: center; font-family: Georgia, serif; font-size: 18px; font-size: 1.125rem; font-style: italic; font-weight: normal; color: #a5a5a5; margin: 0 0 15px 0; } .entry-header .entry-meta a { color: #a5a5a5; } .entry-content { margin: 0 0 60px 0; } .entry-content h2 { line-height: 1.2; font-size: 30px; font-size: 1.875rem; padding-top: 20px; margin-bottom: 20px; } .meta-nav, .more-link { font-family: Georgia, serif; font-style: italic; font-weight: bold; color: #666666; text-decoration: none; } .meta-nav:hover, .more-link:hover { color: #333333; text-decoration: underline; } .more-link { display: block; width: 100%; text-align: right; } /* Posts navigation */ #nav-below { position: fixed; top: 48%; } #nav-below .meta-nav { display: block; padding: 27px 7px; background: #444; color: #fff; -webkit-border-radius: 3px; -webkit-background-clip: padding-box; -moz-border-radius: 3px; -moz-background-clip: padding; border-radius: 3px; background-clip: padding-box; font-family: "Open sans", Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; text-decoration: none; opacity: 0.2; } #nav-below .meta-nav:hover { text-decoration: none; color: #333; } #nav-below .nav-next { position: fixed; right: -3px; } #nav-below .nav-previous { position: fixed; left: -3px; } #nav-below b { display: none; } footer.entry-meta { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; margin: 0 0 35px 0; padding: 2px 0; color: #888888; font-size: 12px; font-size: 0.75rem; } footer.entry-meta a { color: #333333; } footer.entry-meta .meta-in { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px 0; } .page-header { padding-bottom: 0; margin: 0; border-bottom: none; text-align: left; } .page-header .page-title { margin-top: 0; margin-bottom: 30px; } /********************************************************************* COMMENTS **********************************************************************/ #comments { font-size: 13px; font-size: 0.8125rem; } #comments .comments-title { margin: 0 0 5px 0; } #comments .leave-comment { display: block; margin: 0 0 40px 0; } #comments ul, #comments ol { margin: 0; padding: 0; } #comments .comment { margin: 0; padding: 0; list-style: none; clear: both; } #comments .comments-title { text-shadow: none; margin-bottom: 0; } #comments .avatar { float: left; width: 70px; height: 70px; margin-bottom: 30px; border: 5px solid #eeeeee; -webkit-border-radius: 50%; -webkit-background-clip: padding-box; -moz-border-radius: 50%; -moz-background-clip: padding; border-radius: 50%; background-clip: padding-box; } #comments .children { margin: 0 0 0 90px; } #comments .comment-meta { margin: 0 0 0 90px; } #comments .comment-meta a { color: #333333; } #comments .comment-meta a:hover { color: #bd1550; } #comments .comment-meta .author { margin: 0 20px 0 0; font-weight: bold; } #comments .comment-meta .date { margin: 0 20px 0 0; } #comments .comment-meta .date a { color: #666666; } #comments .comment-meta .reply { float: right; } #comments .comment-body { margin: 0 0 35px 90px; } .comment-navigation { width: 100%; border-top: 1px solid #ccc; padding: 2px 0 0 0; } .comment-navigation .nav-content { border-top: 1px solid #ccc; width: 100%; padding: 10px 0 0 0; } .comment-navigation .nav-previous { float: left; width: 50%; } .comment-navigation .nav-next { float: right; width: 50%; text-align: right; } #respond { margin: 55px 0 0 0; } /********************************************************************* FOOTER **********************************************************************/ #footer { background: #232323; padding: 30px 0 0 0; font-size: 12px; color: #999; } #footer a { color: #ccc; } #footer a:hover { color: #fff; } #footer h3.widget-title { font-size: 15px; font-size: 0.9375rem; text-transform: uppercase; color: #ccc; margin: 0 0 20px; } #underfooter { background: #191919; padding: 15px 0; color: #777; font-size: 12px; } #underfooter a { color: #aaa; } #underfooter a:hover { color: #fff; } #underfooter p { margin: 0; } .follow-me-icons { font-size: 30px; } .follow-me-icons i { float: left; margin: 0 10px 0 0; } /* Max page width /////////////////////////////////////////////////////////////////////*/ @media (min-width: 1200px) { .container { max-width: 1080px; } }
ktucec/miniblog
miniblog/static/css/styles.css
CSS
mit
16,225
#!/bin/bash FN="plasFIA_1.16.0.tar.gz" URLS=( "https://bioconductor.org/packages/3.11/data/experiment/src/contrib/plasFIA_1.16.0.tar.gz" "https://bioarchive.galaxyproject.org/plasFIA_1.16.0.tar.gz" "https://depot.galaxyproject.org/software/bioconductor-plasfia/bioconductor-plasfia_1.16.0_src_all.tar.gz" ) MD5="f3f6962cbf57a9b23bd57b035568bcfe" # Use a staging area in the conda dir rather than temp dirs, both to avoid # permission issues as well as to have things downloaded in a predictable # manner. STAGING=$PREFIX/share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM mkdir -p $STAGING TARBALL=$STAGING/$FN SUCCESS=0 for URL in ${URLS[@]}; do curl $URL > $TARBALL [[ $? == 0 ]] || continue # Platform-specific md5sum checks. if [[ $(uname -s) == "Linux" ]]; then if md5sum -c <<<"$MD5 $TARBALL"; then SUCCESS=1 break fi else if [[ $(uname -s) == "Darwin" ]]; then if [[ $(md5 $TARBALL | cut -f4 -d " ") == "$MD5" ]]; then SUCCESS=1 break fi fi fi done if [[ $SUCCESS != 1 ]]; then echo "ERROR: post-link.sh was unable to download any of the following URLs with the md5sum $MD5:" printf '%s\n' "${URLS[@]}" exit 1 fi # Install and clean up R CMD INSTALL --library=$PREFIX/lib/R/library $TARBALL rm $TARBALL rmdir $STAGING
roryk/recipes
recipes/bioconductor-plasfia/post-link.sh
Shell
mit
1,287
class FlowdockConnection RESPONSE_STATUS_ERROR = /Unexpected response status (\d{3})/ def initialize(irc_connection) @source = nil @on_message_block = nil @irc_connection = irc_connection @errors = [] @restarts = 0 end def message(&block) @on_message_block = block end def error(&block) @errors << block end def start! flows = @irc_connection.channels.values.select(&:open?).map(&:visible_name) username = @irc_connection.email password = @irc_connection.password # Control user's Flowdock activity based on the away message. active = if @irc_connection.away_message 'idle' else 'true' end @source = EventMachine::EventSource.new((ENV["FLOWDOCK_UNSECURE_HTTP"] ? "http" : "https") + "://stream.#{IrcServer::FLOWDOCK_DOMAIN}/flows", { 'filter' => flows.join(','), 'active' => active, 'user' => 1 }, { 'Accept' => 'text/event-stream', 'authorization' => [username, password] }) @source.message(&@on_message_block) @source.inactivity_timeout = 90 @source.open do @restarts = 0 end @source.error do |error| $logger.error "Error reading EventSource for #{username}: #{error.inspect}" if @source.ready_state == EventMachine::EventSource::CLOSED if internal_server_error?(error) && @restarts < 3 @restarts += 1 EventMachine::Timer.new(3) do restart! end else @errors.each { |handler| handler.call error } end end end $logger.info "Connecting #{username} to #{flows.size} flows, active: #{active}" @source.start end def close! $logger.debug "Closing EventSource" @source.close if @source end def restart! close! start! end private def internal_server_error?(error) match = error.match RESPONSE_STATUS_ERROR match && match[1].to_i >= 500 end end
devkev/oulu
lib/flowdock_connection.rb
Ruby
mit
1,932
package apps.graph; import structures.graph.DirGraph; import structures.linear.List; import structures.linear.Stack; import java.io.PrintWriter; /** * This class implements the Dijkstra's single-source shortest paths algorithm, * on a directed graph with positive edge weights. The algorithm can be run * with any source vertex. After the algorithm terminates on a specified source, * the shortest distance/path can be queried for any destination vertex. * * This is a reference implementation that uses a simple list to store fringe * vertices. A more efficient implementation should use an updatable heap for the fringe, * i.e. a heap that supports insert, delete, and update operations in O(log n) time. * * @author Sesh Venugopal * * @param <T> The type of vertex objects. */ public class ShortestPaths<T> { /** * The weighted directed graph on which shortest paths are to be computed. */ DirGraph<T> G; /** * Number of vertices in the graph. */ int numverts; /** * The current starting (source) vertex number. */ int sourceNum; /** * The current ending (destination) vertex number. */ int destNum; /** * The simple list that stores the fringe vertices. */ List<WeightedNeighbor> fringe; /** * The current distances of all vertices from the source vertex. */ int Distance[]; /** * The set of previous vertices for the vertices that are done or in the fringe. */ int Previous[]; /** * The set of vertices that are done, i.e. for which shortest distances have been found. */ boolean Done[]; /** * Initializes the algorithm by setting up all data structures and parameters. * * @param G The target weighted directed graph. */ public void init(DirGraph<T> G) { this.G = G; numverts = G.numberOfVertices(); // create all data structures fringe = new List<WeightedNeighbor>(); Distance = new int[numverts]; Previous = new int[numverts]; Done = new boolean[numverts]; } /** * Sets up the source vertex for a run of the algorithm. * * @param sourceVertex Source vertex. */ public void from(T sourceVertex) { sourceNum = G.vertexNumberOf(sourceVertex); // initialize all data structures for (int i=0; i < numverts; i++) { Done[i] = false; Distance[i] = Integer.MAX_VALUE; Previous[i] = i; } fringe.clear(); // do steps 1,2,3 Done[sourceNum] = true; Distance[sourceNum] = 0; WeightedNeighbor nbr = (WeightedNeighbor)G.firstNeighbor(sourceNum); while (nbr != null) { int w = nbr.vertexNumber; Distance[w] = nbr.weight; Previous[w] = sourceNum; fringe.add(nbr); nbr = (WeightedNeighbor)G.nextNeighbor(sourceNum); } } /** * Deletes the minimum distance vertex from the fringe. * * @return The minimum-distance vertex number. */ int fringeDeleteMin() { int minWeight = Integer.MAX_VALUE; int minVertex = -1; WeightedNeighbor minnbr=null; WeightedNeighbor nbr = (WeightedNeighbor)fringe.first(); while (nbr != null) { int w = nbr.vertexNumber; if (Distance[w] < minWeight) { minWeight = Distance[w]; minVertex = w; minnbr = nbr; } nbr = (WeightedNeighbor)fringe.next(); } fringe.remove(minnbr); return minVertex; } /** * Runs the algorithm to completion for the current source vertex. */ public void runAll() { runSome(numverts-1); } /** * Runs the algorithm for a specified number of steps--each step stands for * one vertex pick from the fringe. * * @param howManySteps Number of steps. */ public void runSome(int howManySteps) { int step=0; while (step < howManySteps) { if (fringe.isEmpty()) break; int minVertex = fringeDeleteMin(); Done[minVertex] = true; WeightedNeighbor nbr = (WeightedNeighbor)G.firstNeighbor(minVertex); while (nbr != null) { int w = nbr.vertexNumber; if (Distance[w] == Integer.MAX_VALUE) { Distance[w] = Distance[minVertex] + nbr.weight; Previous[w] = minVertex; fringe.add(nbr); } else if (Distance[w] > (Distance[minVertex] + nbr.weight)) { Distance[w] = Distance[minVertex] + nbr.weight; Previous[w] = minVertex; } nbr = (WeightedNeighbor)G.nextNeighbor(minVertex); } step++; } } /** * Returns the shortest distance from the current source vertex to a specified * destination vertex. * * @param destVertex Destination vertex. * @return Shortest distance to destination vertex. */ public int distTo(T destVertex) { destNum = G.vertexNumberOf(destVertex); if (destNum == -1) { return -1; } return Distance[destNum]; } /** * Returns a stack that contains the path from the current source vertex to a * specified destination vertex. * * @param destVertex Destination vertex. * @return Path stack in which the source vertex is at the top and * the destination vertex is at the bottom. */ public Stack<T> pathTo(T destVertex) { destNum = G.vertexNumberOf(destVertex); if (Distance[destNum] == Integer.MAX_VALUE) { return null; } Stack<T> pathStack = new Stack<T>(); pathStack.push(destVertex); int prev = destNum; do { prev = Previous[prev]; pathStack.push(G.vertexInfoOf(prev)); } while (prev != sourceNum); return pathStack; } /** * Prints the current status of the execution of the algorithm. * * @param pw PrintWriter used to print the status. */ public void printStatus(PrintWriter pw) { pw.println(); pw.print("DONE:\t"); for (int i=0; i < numverts; i++) { if (Done[i]) { pw.print("(" + G.vertexInfoOf(i) + "," + G.vertexInfoOf(Previous[i]) + "," + Distance[i] + ") "); } } pw.print("\n\nFRINGE:\t"); for (int i=0; i < numverts; i++) { if (!Done[i] && (Distance[i] != Integer.MAX_VALUE)) { pw.print("(" + G.vertexInfoOf(i) + "," + G.vertexInfoOf(Previous[i]) + "," + Distance[i] + ") "); } } pw.println(); } }
USMC1941/CS112-Rutgers
Textbook/src/apps/graph/ShortestPaths.java
Java
mit
5,955
fileName = 'something/something.txt'; logger = new log() def getLogger(): return logger class log(): def findLogString(string): def addToFile(logString): """ Open file add logString close file """
moiseslorap/RIT
Intro to Software Engineering/Release 2/HealthNet/HealthNetApp/logging.py
Python
mit
229
// <copyright file="Directive.cs" company="Oleg Sych"> // Copyright © Oleg Sych. All Rights Reserved. // </copyright> namespace T4Toolbox.TemplateAnalysis { using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Diagnostics; using System.Linq; using System.Runtime.CompilerServices; using Microsoft.VisualStudio.Text; internal abstract class Directive : NonterminalNode { private static readonly ConcurrentDictionary<Type, IReadOnlyDictionary<string, PropertyDescriptor>> PropertyCache = new ConcurrentDictionary<Type, IReadOnlyDictionary<string, PropertyDescriptor>>(); private readonly DirectiveBlockStart start; private readonly DirectiveName name; private readonly IReadOnlyDictionary<string, Attribute> attributes; private readonly BlockEnd end; protected Directive(DirectiveBlockStart start, DirectiveName name, IEnumerable<Attribute> attributes, BlockEnd end) { Debug.Assert(start != null, "start"); Debug.Assert(name != null, "name"); Debug.Assert(attributes != null, "attributes"); Debug.Assert(end != null, "end"); this.start = start; this.name = name; this.attributes = attributes.ToDictionary(a => a.Name, a => a, StringComparer.OrdinalIgnoreCase); this.end = end; } public sealed override SyntaxKind Kind { get { return SyntaxKind.Directive; } } public string DirectiveName { get { return this.name.Text; } } public IReadOnlyDictionary<string, Attribute> Attributes { get { return this.attributes; } } public override Position Position { get { return this.start.Position; } } public override Span Span { get { return Span.FromBounds(this.start.Span.Start, this.end.Span.End); } } public static Directive Create(DirectiveBlockStart start, DirectiveName name, IEnumerable<Attribute> attributes, BlockEnd end) { switch (name.Text.ToUpperInvariant()) { case "ASSEMBLY": return new AssemblyDirective(start, name, attributes, end); case "IMPORT": return new ImportDirective(start, name, attributes, end); case "INCLUDE": return new IncludeDirective(start, name, attributes, end); case "OUTPUT": return new OutputDirective(start, name, attributes, end); case "PARAMETER": return new ParameterDirective(start, name, attributes, end); case "TEMPLATE": return new TemplateDirective(start, name, attributes, end); default: return new CustomDirective(start, name, attributes, end); } } public override IEnumerable<SyntaxNode> ChildNodes() { yield return this.start; yield return this.name; foreach (Attribute attribute in this.attributes.Values) { yield return attribute; } yield return this.end; } /// <summary> /// Extends the default behavior to return value of the <see cref="DescriptionAttribute"/> applied to a /// directive property when its <see cref="Attribute"/> contains the specified <paramref name="position"/>. /// </summary> public override bool TryGetDescription(int position, out string description, out Span applicableTo) { // Block start returns its own description if (this.start.TryGetDescription(position, out description, out applicableTo)) { return true; } // Name returns description of the parent directive if (this.name.Span.Contains(position) && base.TryGetDescription(position, out description, out applicableTo)) { applicableTo = this.name.Span; return true; } // Attributes return description of their respective properties IReadOnlyDictionary<string, PropertyDescriptor> properties = this.GetProperties(); foreach (Attribute attribute in this.Attributes.Values) { PropertyDescriptor property; if (attribute.Span.Contains(position) && properties.TryGetValue(attribute.Name, out property)) { description = property.Description; if (!string.IsNullOrEmpty(description)) { applicableTo = attribute.Span; return true; } } } // Block end returns its own description if (this.end.TryGetDescription(position, out description, out applicableTo)) { return true; } // No description for gaps between children to prevent directive's tooltip from sticking during horizontal mouse movement and blocking childrens' tooltips. description = string.Empty; applicableTo = default(Span); return false; } public override IEnumerable<TemplateError> Validate() { var context = new ValidationContext(this); var results = new List<ValidationResult>(); Validator.TryValidateObject(this, context, results, validateAllProperties: true); foreach (ValidationResult result in results) { yield return this.CreateTemplateError(result); } foreach (TemplateError error in this.ValidateAttributes()) { yield return error; } } protected virtual IEnumerable<TemplateError> ValidateAttributes() { DirectiveDescriptor directiveDescriptor = DirectiveDescriptor.GetDirectiveDescriptor(this.GetType()); foreach (Attribute attribute in this.Attributes.Values) { AttributeDescriptor attributeDescriptor; if (directiveDescriptor.Attributes.TryGetValue(attribute.Name, out attributeDescriptor)) { if (attributeDescriptor.Values.Count > 0 && !attributeDescriptor.Values.ContainsKey(attribute.Value)) { AttributeValue attributeValue = attribute.ChildNodes().OfType<AttributeValue>().First(); yield return new TemplateError( string.Format("Unexpected {0} attribute value: {1}", attribute.Name, attribute.Value), attributeValue.Span, attributeValue.Position); } } else { yield return new TemplateError("Unexpected attribute: " + attribute.Name, attribute.Span, attribute.Position); } } } protected string GetAttributeValue([CallerMemberName]string propertyName = null) { Attribute attribute; if (this.Attributes.TryGetValue(propertyName, out attribute)) { return attribute.Value; } PropertyDescriptor property = this.GetProperties()[propertyName]; if (this.Attributes.TryGetValue(property.DisplayName, out attribute)) { return attribute.Value; } return string.Empty; } private static IReadOnlyDictionary<string, PropertyDescriptor> GetProperties(Type directiveType) { var properties = new Dictionary<string, PropertyDescriptor>(StringComparer.OrdinalIgnoreCase); foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(directiveType)) { properties[property.Name] = property; properties[property.DisplayName] = property; } return properties; } private IReadOnlyDictionary<string, PropertyDescriptor> GetProperties() { return PropertyCache.GetOrAdd(this.GetType(), GetProperties); } private TemplateError CreateTemplateError(ValidationResult result) { Span errorSpan = this.Span; Position errorPosition = this.Position; foreach (string memberName in result.MemberNames) { Attribute attribute; if (this.Attributes.TryGetValue(memberName, out attribute)) { errorSpan = attribute.Span; errorPosition = attribute.Position; } } return new TemplateError(result.ErrorMessage, errorSpan, errorPosition); } } }
olegsych/T4Toolbox
src/T4Toolbox.TemplateAnalysis/Directive.cs
C#
mit
9,328
# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext help: @echo "Please use \`make <target>' where <target> is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " text to make text files" @echo " man to make manual pages" @echo " texinfo to make Texinfo files" @echo " info to make Texinfo files and run them through makeinfo" @echo " gettext to make PO message catalogs" @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: -rm -rf $(BUILDDIR)/* html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/patchit.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/patchit.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/patchit" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/patchit" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." $(MAKE) -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." texinfo: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." @echo "Run \`make' in that directory to run these through makeinfo" \ "(use \`make info' here to do that automatically)." info: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo "Running Texinfo files through makeinfo..." make -C $(BUILDDIR)/texinfo info @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." gettext: $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale @echo @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt."
eisensheng/patchit
docs/Makefile
Makefile
mit
5,568
module Hydra #:nodoc: module RunnerListener #:nodoc: # Abstract listener that implements all the events # but does nothing. class Abstract # Create a new listener. # # Output: The IO object for outputting any information. # Defaults to STDOUT, but you could pass a file in, or STDERR def initialize(output = $stdout) @output = output end # Fired by the runner just before requesting the first file def runner_begin( runner ) end # Fired by the runner just after stoping def runner_end( runner ) end end end end
ngauthier/hydra
lib/hydra/runner_listener/abstract.rb
Ruby
mit
613
body { overflow-x: hidden; font-family: 'Roboto Slab', 'Helvetica Neue', Helvetica, Arial, sans-serif; } p { line-height: 1.75; } .nav.navbar-nav li a { color: #fed136; } .nav.navbar-nav a:hover { color: #fec503; }
edzh/Rubix
app/static/css/header.css
CSS
mit
237
# grunt-backstop > BackstopJs Shim for Grunt ## Getting Started This plugin requires Grunt `~0.4.5` If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command: ```shell npm install grunt-backstop --save-dev ``` Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript: ```js grunt.loadNpmTasks('grunt-backstop'); ``` ## Overview * Provides a way to setup [BackstopJS](https://github.com/garris/BackstopJS) off of an initial npm or bower install without needing to access `node_modules` or `bower_components` * Mirrors tests and reference files to a separate, user defined `tests` folder, which can easily be check into the repository. * Run backstop commands from the project root using grunt * Allows you to easily integrate BackstopJS tests into build or CI workflows. ## Setup In your project's Gruntfile, add a section named `backstop` to the data object passed into `grunt.initConfig()`. ```js grunt.initConfig({ backstop: { your_target: { options: { backstop_path: './bower_components/backstopjs', test_path: './tests', setup: true, configure: true, create_references: true, run_tests: true } }, }, }); ``` #### target.backstop_path Type: `String` Identifies the location of the BackstopJs module (usually `bower_components` or `node_modules`) #### target.test_path Type: `String` Identifies the location of the directory that will contain your tests #### target.configure Type: `Boolean` When true, the target will trigger an npm install inside of the `backstop_path`. #### target.setup Type: `Boolean` When true, the target will copy the checked in reference files in your `test_path` into the `backstop_path` #### target.create_references Type: `Boolean` When true, the target will create new backstopJS references and mirror them to the `test_path` #### target.run_tests Type: `Boolean` When true, the target will run the css regression tests ## Usage Notes You may configure your targets to run as many of the available options, and in any combination you like. However, they are setup to be run in a series as such: 1. `setup` 2. `configure` 3. `create references` 4. `test` ## Release Notes `0.1.3` - provide sane default options ## TODO * Create a stop command (The server has a 15 minute time out when you run the tests) * Add tests
f/grunt-backstop
README.md
Markdown
mit
2,708
class RenameCategoyFromFilmCategories < ActiveRecord::Migration def change rename_column :film_categories, :categoy, :category end end
dodoliu/FilmOcean
film_ocean/db/migrate/20151214144537_rename_categoy_from_film_categories.rb
Ruby
mit
142
# Makefile.in generated by automake 1.14.1 from Makefile.am. # include/curl/Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994-2013 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 modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/curl pkglibdir = $(libdir)/curl pkglibexecdir = $(libexecdir)/curl am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = x86_64-unknown-linux-gnu host_triplet = x86_64-unknown-linux-gnu subdir = include/curl DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(srcdir)/curlbuild.h.in $(top_srcdir)/mkinstalldirs \ $(pkginclude_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/curl-compilers.m4 \ $(top_srcdir)/m4/curl-confopts.m4 \ $(top_srcdir)/m4/curl-functions.m4 \ $(top_srcdir)/m4/curl-openssl.m4 \ $(top_srcdir)/m4/curl-override.m4 \ $(top_srcdir)/m4/curl-reentrant.m4 $(top_srcdir)/m4/libtool.m4 \ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ $(top_srcdir)/m4/xc-am-iface.m4 \ $(top_srcdir)/m4/xc-cc-check.m4 \ $(top_srcdir)/m4/xc-lt-iface.m4 \ $(top_srcdir)/m4/xc-translit.m4 \ $(top_srcdir)/m4/xc-val-flgs.m4 \ $(top_srcdir)/m4/zz40-xc-ovr.m4 \ $(top_srcdir)/m4/zz50-xc-ovr.m4 \ $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/lib/curl_config.h curlbuild.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_$(V)) am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_$(V)) am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_$(V)) am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pkgincludedir)" HEADERS = $(pkginclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)curlbuild.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) pkgincludedir = $(includedir)/curl ACLOCAL = ${SHELL} "/home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/missing" --run aclocal-1.14 AMTAR = $${TAR-tar} AM_DEFAULT_VERBOSITY = 1 AR = /usr/bin/ar AS = as AUTOCONF = ${SHELL} "/home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/missing" --run autoconf AUTOHEADER = ${SHELL} "/home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/missing" --run autoheader AUTOMAKE = ${SHELL} "/home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/missing" --run automake-1.14 AWK = gawk BLANK_AT_MAKETIME = CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -O2 -Wno-system-headers CFLAG_CURL_SYMBOL_HIDING = -fvisibility=hidden CONFIGURE_OPTIONS = " '--disable-shared' '--enable-static' '--without-libidn' '--without-ssl' '--without-librtmp' '--without-gnutls' '--without-nss' '--without-libssh2' '--without-zlib' '--without-winidn' '--disable-rtsp' '--disable-ldap' '--disable-ldaps' '--disable-ipv6'" CPP = gcc -E CPPFLAGS = CPPFLAG_CURL_STATICLIB = -DCURL_STATICLIB CURLVERSION = 7.36.0 CURL_CA_BUNDLE = "/usr/share/ssl/certs/ca-bundle.crt" CURL_CFLAG_EXTRAS = CURL_DISABLE_DICT = CURL_DISABLE_FILE = CURL_DISABLE_FTP = CURL_DISABLE_GOPHER = CURL_DISABLE_HTTP = CURL_DISABLE_IMAP = CURL_DISABLE_LDAP = 1 CURL_DISABLE_LDAPS = 1 CURL_DISABLE_POP3 = CURL_DISABLE_PROXY = CURL_DISABLE_RTSP = 1 CURL_DISABLE_SMTP = CURL_DISABLE_TELNET = CURL_DISABLE_TFTP = CURL_LT_SHLIB_VERSIONED_FLAVOUR = CURL_NETWORK_AND_TIME_LIBS = -lrt CURL_NETWORK_LIBS = CYGPATH_W = echo DEFS = -DHAVE_CONFIG_H DEPDIR = .deps DLLTOOL = false DSYMUTIL = DUMPBIN = ECHO_C = ECHO_N = -n ECHO_T = EGREP = /bin/grep -E ENABLE_SHARED = no ENABLE_STATIC = yes EXEEXT = FGREP = /bin/grep -F GREP = /bin/grep HAVE_GNUTLS_SRP = HAVE_LDAP_SSL = HAVE_LIBZ = HAVE_SSLEAY_SRP = IDN_ENABLED = INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s IPV6_ENABLED = LD = /usr/bin/ld -m elf_x86_64 LDFLAGS = LIBCURL_LIBS = -lrt LIBMETALINK_CPPFLAGS = LIBMETALINK_LDFLAGS = LIBMETALINK_LIBS = LIBOBJS = LIBS = -lrt LIBTOOL = $(SHELL) $(top_builddir)/libtool LIPO = LN_S = ln -s LTLIBOBJS = MAINT = # MAKEINFO = ${SHELL} "/home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/missing" --run makeinfo MANIFEST_TOOL = : MANOPT = -man MKDIR_P = /bin/mkdir -p NM = /usr/bin/nm -B NMEDIT = NROFF = /usr/bin/gnroff OBJDUMP = objdump OBJEXT = o OTOOL = OTOOL64 = PACKAGE = curl PACKAGE_BUGREPORT = a suitable curl mailing list: http://curl.haxx.se/mail/ PACKAGE_NAME = curl PACKAGE_STRING = curl - PACKAGE_TARNAME = curl PACKAGE_URL = PACKAGE_VERSION = - PATH_SEPARATOR = : PERL = /usr/bin/perl PKGADD_NAME = cURL - a client that groks URLs PKGADD_PKG = HAXXcurl PKGADD_VENDOR = curl.haxx.se PKGCONFIG = RANDOM_FILE = RANLIB = ranlib REQUIRE_LIB_DEPS = yes SED = /bin/sed SET_MAKE = SHELL = /bin/sh SSL_ENABLED = STRIP = strip SUPPORT_FEATURES = SUPPORT_PROTOCOLS = DICT FILE FTP GOPHER HTTP IMAP POP3 SMTP TELNET TFTP USE_ARES = USE_AXTLS = USE_CYASSL = USE_DARWINSSL = USE_GNUTLS = USE_GNUTLS_NETTLE = USE_LIBRTMP = USE_LIBSSH2 = USE_NGHTTP2 = USE_NSS = USE_OPENLDAP = USE_POLARSSL = USE_SCHANNEL = USE_SSLEAY = USE_WINDOWS_SSPI = VERSION = - VERSIONNUM = 072400 ZLIB_LIBS = abs_builddir = /home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/include/curl abs_srcdir = /home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/include/curl abs_top_builddir = /home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0 abs_top_srcdir = /home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0 ac_ct_AR = ac_ct_CC = gcc ac_ct_DUMPBIN = am__include = include am__leading_dot = . am__quote = am__tar = $${TAR-tar} chof - "$$tardir" am__untar = $${TAR-tar} xf - bindir = ${exec_prefix}/bin build = x86_64-unknown-linux-gnu build_alias = build_cpu = x86_64 build_os = linux-gnu build_vendor = unknown builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} dvidir = ${docdir} exec_prefix = ${prefix} host = x86_64-unknown-linux-gnu host_alias = host_cpu = x86_64 host_os = linux-gnu host_vendor = unknown htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /home/users/xieyan/app/search/audio/audio-www/server_api/sample/cplusplus/curl-7.36.0/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec libext = a localedir = ${datarootdir}/locale localstatedir = ${prefix}/var mandir = ${datarootdir}/man mkdir_p = $(MKDIR_P) oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr/local program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin sharedstatedir = ${prefix}/com srcdir = . subdirs = sysconfdir = ${prefix}/etc target_alias = top_build_prefix = ../../ top_builddir = ../.. top_srcdir = ../.. #*************************************************************************** # _ _ ____ _ # Project ___| | | | _ \| | # / __| | | | |_) | | # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # # Copyright (C) 1998 - 2011, Daniel Stenberg, <[email protected]>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://curl.haxx.se/docs/copyright.html. # # You may opt to use, copy, modify, merge, publish, distribute and/or sell # copies of the Software, and permit persons to whom the Software is # furnished to do so, under the terms of the COPYING file. # # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY # KIND, either express or implied. # ########################################################################### pkginclude_HEADERS = \ curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \ typecheck-gcc.h curlbuild.h curlrules.h # curlbuild.h does not exist in the git tree. When the original libcurl # source code distribution archive file is created, curlbuild.h.dist is # renamed to curlbuild.h and included in the tarball so that it can be # used directly on non-configure systems. # # The distributed curlbuild.h will be overwritten on configure systems # when the configure script runs, with one that is suitable and specific # to the library being configured and built. # # curlbuild.h.in is the distributed template file from which the configure # script creates curlbuild.h at library configuration time, overwiting the # one included in the distribution archive. # # curlbuild.h.dist is not included in the source code distribution archive. EXTRA_DIST = curlbuild.h.in DISTCLEANFILES = curlbuild.h all: curlbuild.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: $(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/curl/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign include/curl/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: # $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): # $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): curlbuild.h: stamp-h2 @test -f $@ || rm -f stamp-h2 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h2 stamp-h2: $(srcdir)/curlbuild.h.in $(top_builddir)/config.status @rm -f stamp-h2 cd $(top_builddir) && $(SHELL) ./config.status include/curl/curlbuild.h distclean-hdr: -rm -f curlbuild.h stamp-h2 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-local: all-am: Makefile $(HEADERS) curlbuild.h all-local installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-pkgincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-pkgincludeHEADERS .MAKE: all install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am clean \ clean-generic clean-libtool cscopelist-am ctags ctags-am \ distclean distclean-generic distclean-hdr distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-pkgincludeHEADERS \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-pkgincludeHEADERS checksrc: @/usr/bin/perl $(top_srcdir)/lib/checksrc.pl -Wcurlbuild.h -D$(top_srcdir)/include/curl $(pkginclude_HEADERS) $(EXTRA_DIST) # for debug builds, we scan the sources on all regular make invokes #all-local: checksrc # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT:
terrs/AudiorRec
sample/linux c/curl/include/curl/Makefile
Makefile
mit
21,903
<template> <import from="./navigation/navigation"></import> <div id="wrapper"> <navigation title="${router.title}" href="#/" router.bind="router"></navigation> <div id="page-wrapper" class="page-host"> <router-view></router-view> </div> </div> </template>
atornes/aurelia-sb-admin-2
src/app.html
HTML
mit
281
version https://git-lfs.github.com/spec/v1 oid sha256:d56bd58328322ab937e64a8d911fb34394577dc55bb7c4fdb7fef8c857d14f4b size 5418
yogeshsaroya/new-cdnjs
ajax/libs/rxjs/2.2.3/rx.aggregates.min.js
JavaScript
mit
129
// Globals var PROXY = "https://rww.io/proxy?uri={uri}"; var AUTH_PROXY = "https://rww.io/auth-proxy?uri="; var TIMEOUT = 90000; var DEBUG = true; // Angular angular.module( 'App', [ 'templates-app', 'templates-common', 'App.home', 'App.login', 'App.about', 'ui.router', 'ngProgress' ]) .config( function AppConfig ( $stateProvider, $urlRouterProvider ) { $urlRouterProvider.otherwise( '/login' ); }) .run( function run () { }) .controller( 'MainCtrl', function MainCtrl ( $scope, $location, $timeout, ngProgress ) { // Some default values $scope.appuri = window.location.hostname+window.location.pathname; $scope.loginSuccess = false; $scope.userProfile = {}; $scope.userProfile.picture = 'assets/generic_photo.png'; $scope.login = function () { $location.path('/login'); }; $scope.logout = function () { // Logout WebID (only works in Firefox and IE) if (document.all == null) { if (window.crypto) { try{ window.crypto.logout(); //firefox ok -- no need to follow the link } catch (err) {//Safari, Opera, Chrome -- try with tis session breaking } } } else { // MSIE 6+ document.execCommand('ClearAuthenticationCache'); } // clear sessionStorage $scope.clearLocalCredentials(); $scope.userProfile = {}; $location.path('/login'); }; // cache user credentials in sessionStorage to avoid double sign in $scope.saveCredentials = function () { var app = {}; var _user = {}; app.userProfile = $scope.userProfile; sessionStorage.setItem($scope.appuri, JSON.stringify(app)); }; // retrieve from sessionStorage $scope.loadCredentials = function () { if (sessionStorage.getItem($scope.appuri)) { var app = JSON.parse(sessionStorage.getItem($scope.appuri)); if (app.userProfile) { if (!$scope.userProfile) { $scope.userProfile = {}; } $scope.userProfile = app.userProfile; $scope.loggedin = true; if ($scope.userProfile.channels) { $scope.defaultChannel = $scope.userProfile.channels[0]; } // load from PDS (follows) if ($scope.userProfile.mbspace && (!$scope.users || $scope.users.length === 0)) { $scope.getUsers(); } // refresh data $scope.getInfo(app.userProfile.webid, true); } else { // clear sessionStorage in case there was a change to the data structure sessionStorage.removeItem($scope.appuri); } } }; // clear sessionStorage $scope.clearLocalCredentials = function () { sessionStorage.removeItem($scope.appuri); }; $scope.$watch('loginSuccess', function(newVal, oldVal) { if (newVal === true && $scope.userProfile.webid) { $scope.getInfo($scope.userProfile.webid, true, false); } }); // get relevant info for a webid $scope.getInfo = function(webid, mine, update) { if (DEBUG) { console.log("Getting user info for: "+webid); } // start progress bar ngProgress.start(); if (mine) { $scope.loading = true; } $scope.found = true; var RDF = $rdf.Namespace("http://www.w3.org/1999/02/22-rdf-syntax-ns#"); var FOAF = $rdf.Namespace("http://xmlns.com/foaf/0.1/"); var SPACE = $rdf.Namespace("http://www.w3.org/ns/pim/space#"); var ACL = $rdf.Namespace("http://www.w3.org/ns/auth/acl#"); var g = $rdf.graph(); var f = $rdf.fetcher(g, TIMEOUT); // add CORS proxy $rdf.Fetcher.crossSiteProxyTemplate=PROXY; var docURI = webid.slice(0, webid.indexOf('#')); var webidRes = $rdf.sym(webid); // fetch user data f.nowOrWhenFetched(docURI,undefined,function(ok, body) { if (!ok) { if ($scope.search && $scope.search.webid && $scope.search.webid == webid) { notify('Warning', 'WebID profile not found.'); $scope.found = false; $scope.searchbtn = 'Search'; // reset progress bar ngProgress.reset(); $scope.$apply(); } } // get some basic info var name = g.any(webidRes, FOAF('name')); var pic = g.any(webidRes, FOAF('img')); var depic = g.any(webidRes, FOAF('depiction')); // get storage endpoints var storage = g.any(webidRes, SPACE('storage')); // get list of delegatees var delegs = g.statementsMatching(webidRes, ACL('delegatee'), undefined); /* if (delegs.length > 0) { jQuery.ajaxPrefilter(function(options) { options.url = AUTH_PROXY + encodeURIComponent(options.url); }); } */ // Clean up name name = (name)?name.value:''; // set avatar picture if (pic) { pic = pic.value; } else { if (depic) { pic = depic.value; } else { pic = 'assets/generic_photo.png'; } } var _user = { webid: webid, name: name, picture: pic, storagespace: storage }; // add to search object if it was the object of a search if ($scope.search && $scope.search.webid && $scope.search.webid == webid) { $scope.search = _user; } if (update) { $scope.refreshinguser = true; $scope.users[webid].name = name; $scope.users[webid].picture = pic; $scope.users[webid].storagespace = storage; } // get channels for the user if (storage !== undefined) { storage = storage.value; // get channels for user // $scope.getChannels(storage, webid, mine, update); } else { $scope.gotstorage = false; } if (mine) { // mine $scope.userProfile.name = name; $scope.userProfile.picture = pic; $scope.userProfile.storagespace = storage; // find microblogging feeds/channels if (!storage) { $scope.loading = false; // hide spinner } // cache user credentials in sessionStorage $scope.saveCredentials(); // update DOM $scope.loggedin = true; $scope.profileloading = false; ngProgress.complete(); $scope.$apply(); } }); if ($scope.search && $scope.search.webid && $scope.search.webid == webid) { $scope.searchbtn = 'Search'; } }; $scope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams){ if ( angular.isDefined( toState.data.pageTitle ) ) { $scope.pageTitle = toState.data.pageTitle + ' | App Name' ; } }); // initialize by retrieving user info from sessionStorage $scope.loadCredentials(); });
linkeddata/app-bp
src/app/app.js
JavaScript
mit
6,651
package todo.service; import java.util.Calendar; import java.util.Date; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.hibernate.Session; import todo.model.TodoItem; import com.breeze.webserver.BreezeControllerServlet; public class TodoControllerServlet extends BreezeControllerServlet { private static final long serialVersionUID = 1L; public void ping(HttpServletRequest request, HttpServletResponse response) { writeResponse(response, "pong"); } public void reset(HttpServletRequest request, HttpServletResponse response) { Session session = this._sessionFactory.openSession(); session.beginTransaction(); purgeDatabase(session); seedDatabase(session); session.getTransaction().commit(); session.close(); writeResponse(response, "reset"); } public void purge(HttpServletRequest request, HttpServletResponse response) { Session session = this._sessionFactory.openSession(); session.beginTransaction(); purgeDatabase(session); session.getTransaction().commit(); session.close(); writeResponse(response, "purged"); } private void purgeDatabase(Session session) { List todos = session.createCriteria(TodoItem.class).list(); for(Object todo: todos) { session.delete(todo); } } private static void seedDatabase(Session session) { _calendar = Calendar.getInstance(); _calendar.set(Calendar.YEAR, 2012); _calendar.set(Calendar.MONTH, 8); _calendar.set(Calendar.DATE, 22); _calendar.set(Calendar.HOUR, 9); _calendar.set(Calendar.MINUTE, 0); _calendar.set(Calendar.SECOND, 0); TodoItem[] todos = { // Description, IsDone, IsArchived createTodo("Food", true, true), createTodo("Water", true, true), createTodo("Shelter", true, true), createTodo("Bread", false, false), createTodo("Cheese", true, false), createTodo("Wine", false, false) }; for(TodoItem newTodo: todos){ session.save(newTodo); } } private static Date _baseCreatedAtDate; private static Calendar _calendar; private static TodoItem createTodo(String description, Boolean isDone, Boolean isArchived) { _calendar.add(Calendar.MINUTE, 1); _baseCreatedAtDate = _calendar.getTime(); TodoItem newTodoItem = new TodoItem(); newTodoItem.setCreatedAt(_baseCreatedAtDate); newTodoItem.setDescription(description); newTodoItem.setIsDone(isDone); newTodoItem.setIsArchived(isArchived); return newTodoItem; } }
kyroskoh/breeze.js.samples
java/TodoAngular/src/main/java/todo/service/TodoControllerServlet.java
Java
mit
2,491
<?php /** * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\ObjectManager\Code\Generator; /** * Class Sample for Proxy and Factory generation */ class Sample { /** * @var array */ protected $messages = []; /** * @param array $messages */ public function setMessages(array $messages) { $this->messages = $messages; } /** * @return array */ public function getMessages() { return $this->messages; } }
j-froehlich/magento2_wk
vendor/magento/framework/ObjectManager/Test/Unit/Code/Generator/_files/Sample.php
PHP
mit
574
/* @flow */ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { getFirstIcon } from '../../../utils/toolbar'; import { Dropdown, DropdownOption } from '../../../components/Dropdown'; import Option from '../../../components/Option'; import './styles.css'; export default class LayoutComponent extends Component { static propTypes = { expanded: PropTypes.bool, doExpand: PropTypes.func, doCollapse: PropTypes.func, onExpandEvent: PropTypes.func, config: PropTypes.object, onChange: PropTypes.func, currentState: PropTypes.object, translations: PropTypes.object, indentDisabled: PropTypes.bool, outdentDisabled: PropTypes.bool, }; options: Array = ['unordered', 'ordered', 'indent', 'outdent']; toggleBlockType: Function = (blockType: String): void => { const { onChange } = this.props; onChange(blockType); }; indent: Function = (): void => { const { onChange } = this.props; onChange('indent'); }; outdent: Function = (): void => { const { onChange } = this.props; onChange('outdent'); }; // todo: evaluate refactoring this code to put a loop there and in other places also in code // hint: it will require moving click handlers renderInFlatList(): Object { const { config, currentState: { listType }, translations, indentDisabled, outdentDisabled } = this.props; const { options, unordered, ordered, indent, outdent, className } = config; return ( <div className={classNames('rdw-list-wrapper', className)} aria-label="rdw-list-control"> {options.indexOf('unordered') >= 0 && <Option value="unordered" onClick={this.toggleBlockType} className={classNames(unordered.className)} active={listType === 'unordered'} title={unordered.title || translations['components.controls.list.unordered']} > <img src={unordered.icon} alt="" /> </Option>} {options.indexOf('ordered') >= 0 && <Option value="ordered" onClick={this.toggleBlockType} className={classNames(ordered.className)} active={listType === 'ordered'} title={ordered.title || translations['components.controls.list.ordered']} > <img src={ordered.icon} alt="" /> </Option>} {options.indexOf('indent') >= 0 && <Option onClick={this.indent} disabled={indentDisabled} className={classNames(indent.className)} title={indent.title || translations['components.controls.list.indent']} > <img src={indent.icon} alt="" /> </Option>} {options.indexOf('outdent') >= 0 && <Option onClick={this.outdent} disabled={outdentDisabled} className={classNames(outdent.className)} title={outdent.title || translations['components.controls.list.outdent']} > <img src={outdent.icon} alt="" /> </Option>} </div> ); } renderInDropDown(): Object { const { config, expanded, doCollapse, doExpand, onExpandEvent, onChange, currentState: { listType }, translations, } = this.props; const { options, className, dropdownClassName, title } = config; return ( <Dropdown className={classNames('rdw-list-dropdown', className)} optionWrapperClassName={classNames(dropdownClassName)} onChange={onChange} expanded={expanded} doExpand={doExpand} doCollapse={doCollapse} onExpandEvent={onExpandEvent} aria-label="rdw-list-control" title={title || translations['components.controls.list.list']} > <img src={getFirstIcon(config)} alt="" /> { this.options .filter(option => options.indexOf(option) >= 0) .map((option, index) => (<DropdownOption key={index} value={option} disabled={this.props[`${option}Disabled`]} className={classNames('rdw-list-dropdownOption', config[option].className)} active={listType === option} title={config[option].title || translations[`components.controls.list.${option}`]} > <img src={config[option].icon} alt="" /> </DropdownOption>)) } </Dropdown> ); } render(): Object { const { config: { inDropdown } } = this.props; if (inDropdown) { return this.renderInDropDown(); } return this.renderInFlatList(); } }
michalko/draft-wyswig
src/controls/List/Component/index.js
JavaScript
mit
4,836
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Class HashSet&lt;T&gt; | Advanced Algorithms </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class HashSet&lt;T&gt; | Advanced Algorithms "> <meta name="generator" content="docfx 2.55.0.0"> <link rel="shortcut icon" href="../favicon.ico"> <link rel="stylesheet" href="../styles/docfx.vendor.css"> <link rel="stylesheet" href="../styles/docfx.css"> <link rel="stylesheet" href="../styles/main.css"> <meta property="docfx:navrel" content=""> <meta property="docfx:tocrel" content="toc.html"> <meta property="docfx:rel" content="../"> </head> <body data-spy="scroll" data-target="#affix" data-offset="120"> <div id="wrapper"> <header> <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"> <img id="logo" class="svg" src="../logo.svg" alt=""> </a> </div> <div class="collapse navbar-collapse" id="navbar"> <form class="navbar-form navbar-right" role="search" id="search"> <div class="form-group"> <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> </div> </form> </div> </div> </nav> <div class="subnav navbar navbar-default"> <div class="container hide-when-search" id="breadcrumb"> <ul class="breadcrumb"> <li></li> </ul> </div> </div> </header> <div class="container body-content"> <div id="search-results"> <div class="search-list"></div> <div class="sr-items"> <p><i class="glyphicon glyphicon-refresh index-loading"></i></p> </div> <ul id="pagination"></ul> </div> </div> <div role="main" class="container body-content hide-when-search"> <div class="sidenav hide-when-search"> <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> <div class="sidetoggle collapse" id="sidetoggle"> <div id="sidetoc"></div> </div> </div> <div class="article row grid-right"> <div class="col-md-10"> <article class="content wrap" id="_content" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1"> <h1 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1" class="text-break">Class HashSet&lt;T&gt; </h1> <div class="markdown level0 summary"><p>A hash table implementation.</p> </div> <div class="markdown level0 conceptual"></div> <div class="inheritance"> <h5>Inheritance</h5> <div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div> <div class="level1"><span class="xref">HashSet&lt;T&gt;</span></div> </div> <div classs="implements"> <h5>Implements</h5> <div><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;T&gt;</div> <div><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.ienumerable">IEnumerable</a></div> </div> <div class="inheritedMembers"> <h5>Inherited Members</h5> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.tostring#System_Object_ToString">Object.ToString()</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.equals#System_Object_Equals_System_Object_">Object.Equals(Object)</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.equals#System_Object_Equals_System_Object_System_Object_">Object.Equals(Object, Object)</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.referenceequals#System_Object_ReferenceEquals_System_Object_System_Object_">Object.ReferenceEquals(Object, Object)</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.gethashcode#System_Object_GetHashCode">Object.GetHashCode()</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.gettype#System_Object_GetType">Object.GetType()</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object.memberwiseclone#System_Object_MemberwiseClone">Object.MemberwiseClone()</a> </div> </div> <h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Foundation.html">Advanced.Algorithms.DataStructures.Foundation</a></h6> <h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6> <h5 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_syntax">Syntax</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public class HashSet&lt;T&gt; : IEnumerable&lt;T&gt;, IEnumerable</code></pre> </div> <h5 class="typeParameters">Type Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="parametername">T</span></td> <td><p>The value datatype.</p> </td> </tr> </tbody> </table> <h3 id="constructors">Constructors </h3> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1__ctor_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.#ctor*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1__ctor_Advanced_Algorithms_DataStructures_Foundation_HashSetType_System_Int32_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.#ctor(Advanced.Algorithms.DataStructures.Foundation.HashSetType,System.Int32)">HashSet(HashSetType, Int32)</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public HashSet(HashSetType type = HashSetType.SeparateChaining, int initialBucketSize = 2)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Advanced.Algorithms.DataStructures.Foundation.HashSetType.html">HashSetType</a></td> <td><span class="parametername">type</span></td> <td><p>The hashSet implementation to use.</p> </td> </tr> <tr> <td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td> <td><span class="parametername">initialBucketSize</span></td> <td><p>The larger the bucket size lesser the collision, but memory matters!</p> </td> </tr> </tbody> </table> <h3 id="properties">Properties </h3> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Count_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Count*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Count" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Count">Count</h4> <div class="markdown level1 summary"><p>The number of items in this hashset.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public int Count { get; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td> <td></td> </tr> </tbody> </table> <h3 id="methods">Methods </h3> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Add_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Add*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Add__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Add(`0)">Add(T)</h4> <div class="markdown level1 summary"><p>Add a new value. Time complexity: O(1) amortized.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public void Add(T value)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">T</span></td> <td><span class="parametername">value</span></td> <td><p>The value to add.</p> </td> </tr> </tbody> </table> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Clear_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Clear*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Clear" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Clear">Clear()</h4> <div class="markdown level1 summary"><p>Clear the hashtable. Time complexity: O(1).</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public void Clear()</code></pre> </div> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Contains_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Contains*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Contains__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Contains(`0)">Contains(T)</h4> <div class="markdown level1 summary"><p>Does this hash table contains the given value. Time complexity: O(1) amortized.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public bool Contains(T value)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">T</span></td> <td><span class="parametername">value</span></td> <td><p>The value to check.</p> </td> </tr> </tbody> </table> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td> <td><p>True if this hashset contains the given value.</p> </td> </tr> </tbody> </table> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.GetEnumerator*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.GetEnumerator">GetEnumerator()</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public IEnumerator&lt;T&gt; GetEnumerator()</code></pre> </div> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1">IEnumerator</a>&lt;T&gt;</td> <td></td> </tr> </tbody> </table> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Remove_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Remove*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_Remove__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.Remove(`0)">Remove(T)</h4> <div class="markdown level1 summary"><p>Remove the given value. Time complexity: O(1) amortized.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public void Remove(T value)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">T</span></td> <td><span class="parametername">value</span></td> <td><p>The value to remove.</p> </td> </tr> </tbody> </table> <h3 id="eii">Explicit Interface Implementations </h3> <a id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_System_Collections_IEnumerable_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.System#Collections#IEnumerable#GetEnumerator*"></a> <h4 id="Advanced_Algorithms_DataStructures_Foundation_HashSet_1_System_Collections_IEnumerable_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Foundation.HashSet`1.System#Collections#IEnumerable#GetEnumerator">IEnumerable.GetEnumerator()</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">IEnumerator IEnumerable.GetEnumerator()</code></pre> </div> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.ienumerator">IEnumerator</a></td> <td></td> </tr> </tbody> </table> <h3 id="implements">Implements</h3> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">System.Collections.Generic.IEnumerable&lt;T&gt;</a> </div> <div> <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.collections.ienumerable">System.Collections.IEnumerable</a> </div> </article> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <div class="contribution"> <ul class="nav"> </ul> </div> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> --> </nav> </div> </div> </div> </div> <footer> <div class="grad-bottom"></div> <div class="footer"> <div class="container"> <span class="pull-right"> <a href="#top">Back to top</a> </span> <span>Generated by <strong>DocFX</strong></span> </div> </div> </footer> </div> <script type="text/javascript" src="../styles/docfx.vendor.js"></script> <script type="text/javascript" src="../styles/docfx.js"></script> <script type="text/javascript" src="../styles/main.js"></script> </body> </html>
justcoding121/Advanced-Algorithms
docs/api/Advanced.Algorithms.DataStructures.Foundation.HashSet-1.html
HTML
mit
17,088
// // SACalendar.h // SACalendarExample // // Created by Nop Shusang on 7/10/14. // Copyright (c) 2014 SyncoApp. All rights reserved. // // Distributed under MIT License #import <UIKit/UIKit.h> #import "SACalendarConstants.h" @protocol SACalendarDelegate; @interface SACalendar : UIView @property (nonatomic, weak) id<SACalendarDelegate> delegate; /** * Bit mask containing the currently displayed event types */ @property (nonatomic) SACalendarEventType displayedEvents; /** * Default constructor, calendar will begin at current month * * @param frame of the calendar * * @return initialized calendar */ - (id)initWithFrame:(CGRect)frame; /** * Begin calendar at specific month and year * * @param frame of the calendar * @param m month to begin calendar * @param y year to begin calendar * * @return initialized calendar starting at mm/yyyy */ - (id)initWithFrame:(CGRect)frame month:(int)m year:(int)y; /** * Calendar will begin at current month, the user can also specify other properties * * @param frame of the calendar * @param direction scroll direction, default to vertical * @param paging paging enabled, default to yes * * @return initialized calendar */ -(id)initWithFrame:(CGRect)frame scrollDirection:(SAScrollDirection)direction pagingEnabled:(BOOL)paging; /** * The complete constructor * * @param frame of the calendar * @param m month to begin calendar * @param y year to begin calendar * @param direction scroll direction, default to vertical * @param paging paging enabled, default to yes * * @return initialized calendar */ -(id)initWithFrame:(CGRect)frame month:(int)m year:(int)y scrollDirection:(SAScrollDirection)direction pagingEnabled:(BOOL)paging; /** * Customize the display of a certain event type with a background image * * @param eventType event type as specified in SACalendarConstants.h * @param backgroundImage background image to be displayed in the circle view of the date (will be scaled to fit) * @param textColor textcolor for the date (should be readable on the background image * */ - (void)highlightEventType:(SACalendarEventType)eventType withBackgroundImage:(UIImage *)backgroundImage withTextColor:(UIColor *)textColor; /** * Convenience method to customize the display of a certain event type using only colors * * @param eventType event type as specified in SACalendarConstants.h, can be combined via binary OR operator * @param backgroundColor background color for the circle view of the date (will be scaled to fit) * @param textColor textcolor for the date (should be readable on the background image * */ - (void)highlightEventType:(SACalendarEventType)eventType withBackgroundColor:(UIColor *)backgroundColor withTextColor:(UIColor *)textColor; /** * Enable/disable the display of a certain event type * * @param eventType event type as specified in SACalendarConstants.h, can be combined via binary OR operator * @param enabled YES to display the events, NO to hide the events of the given type */ - (void)highlightForEventType:(SACalendarEventType)eventType setEnabled:(BOOL)enabled; /** * Add an event type to a date, previously added events will be kept * * @param eventType event type as specified in SACalendarConstants.h, can be combined via binary OR operator * @param dateComponents date to add the event to, specify as date components containing year, month, day, calendar */ - (void)addEvent:(SACalendarEventType)eventType forDate:(NSDateComponents *)dateComponents; /** * Set an event type to a date, previously added events will be reset * * @param eventType event type as specified in SACalendarConstants.h, can be combined via binary OR operator * @param dateComponents date to set the event for, specify as date components containing year, month, day, calendar */ - (void)setEvent:(SACalendarEventType)eventType forDate:(NSDateComponents *)dateComponents; /** * Reset all events saved for the calendar */ - (void)resetEvents; /** * Force the calendar to refresh */ - (void)refreshCalendar; /** * Reset the selection of the calendar */ - (void)resetSelection; @end @protocol SACalendarDelegate <NSObject> @optional /** * A delegate function that gets called once the calendar displays a different month * This is caused by swiping up or down (vertical scroll direction) / left or right (horizontal scroll direction) * * @param calendar The calendar object that gets changed * @param month The new month displayed * @param year The new year displayed */ - (void)calendar:(SACalendar *)calendar didDisplayCalendarForMonth:(int)month year:(int)year; /** * This function gets called when a specific date is selected * * @param calendar The calendar object that the selected date is on * @param day The date selected * @param month The month selected * @param year The year selected */ - (void)calendar:(SACalendar *)calendar didSelectDate:(int)day month:(int)month year:(int)year; @end
zuehlke-de/SACalendar
Example/SACalendar/SACalendar/SACalendar.h
C
mit
5,136
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.0-master-ce33beb */.md-virtual-repeat-container{box-sizing:border-box;display:block;margin:0;overflow:hidden;padding:0;position:relative}.md-virtual-repeat-container .md-virtual-repeat-scroller{bottom:0;box-sizing:border-box;left:0;margin:0;overflow-x:hidden;padding:0;position:absolute;right:0;top:0;-webkit-overflow-scrolling:touch}.md-virtual-repeat-container .md-virtual-repeat-sizer{box-sizing:border-box;height:1px;display:block;margin:0;padding:0;width:1px}.md-virtual-repeat-container .md-virtual-repeat-offsetter{box-sizing:border-box;left:0;margin:0;padding:0;position:absolute;right:0;top:0}.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-scroller{overflow-x:auto;overflow-y:hidden}.md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter{bottom:16px;right:auto;white-space:nowrap}[dir=rtl] .md-virtual-repeat-container.md-orient-horizontal .md-virtual-repeat-offsetter{right:auto;left:auto}
ioanvranau/iotplatformdashboard
app/bower_components/angular-material/modules/js/virtualRepeat/virtualRepeat.min.css
CSS
mit
1,040
var path = require('path'); var config = require('../config'); var glob = require('glob'); module.exports.task = function(gulp, plugins, paths) { // For each theme file glob.sync(paths.app.themes).forEach(function(filePath) { // Prepend file to styles glob var src = [].concat(paths.app.styles); src.unshift(filePath); // Theme name var name = "app-" + path.basename(filePath, '.js').replace("-theme", ""); gulp.src(src) .pipe(plugins.concat(name)) .pipe( plugins.sass({ includePaths: [ path.resolve( config.srcDir ), path.resolve( config.npmDir ), path.resolve( config.bowerDir ), ] }) .on('error', plugins.sass.logError) ) .pipe(plugins.autoprefixer()) .pipe(gulp.dest(config.destDir + '/css')); }); }; module.exports.deps = ['app-styles'];
Cheevil/Cheevil.github.io
build/tasks/app-themes.js
JavaScript
mit
822