code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
body { padding: 0; margin: 0; font-size: 12px; font-family: 微软雅黑, 宋体; } #head { height: 71px; width: 826px; margin: auto; margin-top: 20px; } #logo { width: 185px; height: 71px; background-image: url('../images/resume-logo-beta.jpg'); background-repeat...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/css/profile.css
CSS
gpl3
1,127
a#back { margin-top: 70px; font-size: 16px; margin-right: 50px; } div#content { border-top: 1px #b1c3d8 solid; overflow: hidden; } div#content-left { width: 170px; padding-top: 30px; padding-bottom: 20px; background-color: #ebf1fe; } div#content-left div { he...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/css/help_feedback.css
CSS
gpl3
1,241
div#manager-title { height: 30px; line-height: 30px; margin-top: 20px; } div#manager-title span.manager-title { width: 57px; background-image: url('../images/manager-pic.jpg'); background-repeat: no-repeat; background-position: 5px center; height: 30px; color: #df7902; ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/css/manager.css
CSS
gpl3
9,326
body{ line-height:1.4; background:white; } body,input,textarea,select{ font-size:12px; color:#333; font-family:arial; } body,h1,h3,h4,p,ul,ol,li{margin:0;padding:0;} a{cursor:pointer;color:#3d95b5;} a,ul,li{ text-decoration:none; list-style:none; } .fl{float:left;} .fr{float:right;} .layout_mid...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/css/ybole_index.css
CSS
gpl3
5,088
<?php include_once('common.inc.php'); func_register(array( 'login' => array( 'callback' => 'user_login', ), 'relogin' => array( 'callback' => 'user_relogin', ), 'sina_login' => array( 'callback' => 'oauth_sina', ), 'sina_callback' => array( 'callback' => 'oau...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/login.inc.php
PHP
gpl3
7,775
<?php include_once('common.inc.php'); func_register(array( 'resume' => array( 'callback' => 'deal_resume', 'security' => 'true', ), )); function resume_update() { include_once('login.php'); include_once("uuid.inc.php"); #$resume_id = str_replace("-", "", UUID::v4()); ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/resume.inc.php
PHP
gpl3
6,539
body{ line-height:1.4; background:white; } body,input,textarea,select{ font-size:12px; color:#333; font-family:arial; } input{ outline:none; } body,h1,h3,h4,p,ul,ol,li{margin:0;padding:0;} a{cursor:pointer;color:#3d95b5;} a,ul,li{ text-decoration:none; list-style:none; } .fl{float:left;} .fr...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/ybole_index.css
CSS
gpl3
5,092
<? include_once('config.inc.php'); function connect_db(){ global $db_host, $db_name, $db_user, $db_pass; mysql_pconnect($db_host, $db_user, $db_pass); mysql_query("SET NAMES 'utf8'"); @mysql_select_db($db_name) or die ("Unable to connect to database"); } function func_register($items) { foreach ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/html/common.inc.php
PHP
gpl3
3,163
#!/usr/bin/env python #coding=utf-8 from weibopy.auth import OAuthHandler from weibopy.api import API import sqlite3 from threading import Thread from Queue import Queue from time import sleep from datetime import datetime, timedelta, date, time import sys from tag_detect import detect import os from signal import SIGT...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/sina.py
Python
gpl3
12,022
from weibopy.auth import OAuthHandler from weibopy.api import API from threading import Thread from Queue import Queue from time import sleep from datetime import datetime, timedelta, date, time import sys from tag_detect import detect import os from crawler_id import idlist as A from weibopy.error import Wei...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/follow.py
Python
gpl3
2,591
import sys, uuid from datetime import datetime def now(): return str(datetime.now()) + " " dic = open("tag_list.dict", "r") result = [] dic2 = [] dic3 = [] for item in dic: m = unicode(item, "utf-8").split() if len(m) > 1: tag, group = m else: tag, group = m[0], "0" ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/tag_init.py
Python
gpl3
1,017
#coding:utf-8 from threading import Thread from Queue import Queue from time import sleep import sqlite3 import sys, re, StringIO import urllib2 as urllib q = Queue() NUM = 17 JOBS = 3000 results = [] def craw(arguments): global results try: a = unicode(urllib.urlopen("http://tbole.com/result.php?searc...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/tbole.py
Python
gpl3
1,158
#coding:utf-8 #!/usr/bin/env python from threading import Thread from Queue import Queue from time import sleep import sqlite3 import sys, re, StringIO, os import urllib2 as urllib from datetime import datetime q = Queue() NUM = 20 TIMEOUT = 0.1 C = (u"名人堂", u"媒体汇", u"品牌馆") def now(): return str(dateti...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/mingrentang/mingren.py
Python
gpl3
4,271
#coding:utf-8 from threading import Thread from Queue import Queue import sqlite3 import sys, re, StringIO from time import sleep import urllib2, urllib TARGET = 1000 NUM = 10 ids = [] results = [] count = 0 q = Queue() KEYS = ['招聘'] class UserAgentProcessor(urllib2.BaseHandler): """A handler to add a custom UA...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/mobilesina.py
Python
gpl3
2,690
#!/usr/bin/env python #coding=utf-8 from weibopy.auth import OAuthHandler from weibopy.api import API import sqlite3 from threading import Thread from Queue import Queue from time import sleep from datetime import datetime, timedelta, date, time import sys from tag_detect import detect import os from signal import SIGT...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/.svn/text-base/sina.py.svn-base
Python
gpl3
12,022
#!/usr/bin/env python #coding=utf-8 catelist = [ (1, u"传统网络Internet"), (2, u"移动互联"), (3, u"网游"), (4, u"电子商务_B2C/团购"), (5, u"软件、电信"), (6, u"新媒体"), (7, u"风投/投行"), (8, u"其他外企"), ] idlist = [ [1, (u"超超Sandy", "d11c25990634d0e486235f1...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/.svn/text-base/crawler_id.py.svn-base
Python
gpl3
2,109
from pymining.segmenter import Segmenter from pymining.configuration import Configuration class detect: def __init__(self): self.cfg = Configuration.FromFile("pymining/conf/test.xml") self.segmenter = Segmenter(self.cfg, "segmenter") def Split(self, line): wordList = self.segm...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/tag_detect.py
Python
gpl3
364
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from urllib2 import Request, urlopen import base64 from weibopy import oauth from weibopy.error import WeibopError from weibopy.api import API class AuthHandler(object): def apply_auth(self, url, method, headers, parameters): """Apply a...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/auth.py
Python
gpl3
4,904
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. class WeibopError(Exception): """Weibopy exception""" def __init__(self, reason): self.reason = reason.encode('utf-8') def __str__(self): return self.reason
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/error.py
Python
gpl3
256
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from weibopy.utils import parse_datetime, parse_html_value, parse_a_href, \ parse_search_datetime, unescape_html class ResultSet(list): """A list like object that holds results from a Twitter API query.""" class Model(object): def _...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/models.py
Python
gpl3
10,222
""" The MIT License Copyright (c) 2007 Leah Culver 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, publis...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/oauth.py
Python
gpl3
23,187
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from weibopy.models import ModelFactory from weibopy.utils import import_simplejson from weibopy.error import WeibopError class Parser(object): def parse(self, method, payload): """ Parse the response payload and return the result...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/parsers.py
Python
gpl3
2,316
# Copyright 2010 Joshua Roesslein # See LICENSE for details. from datetime import datetime import time import htmlentitydefs import re def parse_datetime(str): # We must parse datetime this way to work in python 2.4 #return datetime(*(time.strptime(str, '%a %b %d %H:%M:%S +0800 %Y')[0:6])) #Change...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/utils.py
Python
gpl3
2,209
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. import httplib import urllib import time import re from weibopy.error import WeibopError from weibopy.utils import convert_to_utf8_str re_path_template = re.compile('{\w+}') def bind_api(**config): class APIMethod(object): path...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/binder.py
Python
gpl3
8,100
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. """ weibo API library """ __version__ = '1.5' __author__ = 'Joshua Roesslein' __license__ = 'MIT' from weibopy.models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResult, ModelFactory, IDSModel from weibopy.error import WeibopErr...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/__init__.py
Python
gpl3
706
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. import httplib from socket import timeout from threading import Thread from time import sleep import urllib from weibopy.auth import BasicAuthHandler from weibopy.models import Status from weibopy.api import API from weibopy.error import WeibopError ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/streaming.py
Python
gpl3
6,143
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. import os import mimetypes from weibopy.binder import bind_api from weibopy.error import WeibopError from weibopy.parsers import ModelParser class API(object): """Twitter API""" def __init__(self, auth_handler=None, host='api.t....
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/api.py
Python
gpl3
25,468
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. from weibopy.error import WeibopError class Cursor(object): """Pagination helper class""" def __init__(self, method, *args, **kargs): if hasattr(method, 'pagination_mode'): if method.pagination_mode == 'cursor': ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/cursor.py
Python
gpl3
4,026
# Copyright 2009-2010 Joshua Roesslein # See LICENSE for details. import time import threading import os import cPickle as pickle try: import hashlib except ImportError: # python 2.4 import md5 as hashlib try: import fcntl except ImportError: # Probably on a windows system # TODO: use win32f...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/weibopy/cache.py
Python
gpl3
7,372
import math import pickle from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration class NaiveBayes: def __init__(self, config, nodeName, loadFromFile = False): #store variable(term)'s l...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/naive_bayes.py
Python
gpl3
6,501
from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration from chisquare_filter import ChiSquareFilter from naive_bayes import NaiveBayes if __name__ == "__main__": config = Configuration.FromFile(...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/test.naive_bayes_test.py
Python
gpl3
767
import math from segmenter import Segmenter from matrix import Matrix from py_mining import PyMining from configuration import Configuration class ClassifierMatrix: def __init__(self, config, nodeName, loadFromFile = False): self.node = config.GetChild(nodeName) self.segmenter = Segmenter(config, "...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/classifier_matrix.py
Python
gpl3
6,548
if __name__ == "__main__": """ train """ #init dm platfrom, include segmenter.. config = Configuration.FromFile("test.conf") PyMining.Init(config, "__global__") matCreater = ClassifierMatrix(config, "__matrix__") [trainx, trainy] = matCreater.CreateTrainMatrix("train.txt") #or usin...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/pdmp_ex.py
Python
gpl3
1,187
#encoding=utf-8 import math import pickle import sys from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration from chisquare_filter import ChiSquareFilter from twc_naive_bayes import TwcNaiveBayes ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/test.twc_naive_bayes_train_sample_test.py
Python
gpl3
994
from xml.dom import minidom class Configuration: mCurNode = None def __init__(self, node): self.mCurNode = node """ get first child """ def GetChild(self, name): for node in self.mCurNode.childNodes: if node.nodeName == name: return Configurati...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/configuration.py
Python
gpl3
1,114
#save materials produced during data-mining class PyMining: #dict store term -> id termToId = {} #dict store id -> term idToTerm = {} #dict store term -> how-many-docs-have-term idToDocCount = {} #dict store class -> how-many-docs-contained classToDocCount = {} #inverse document fre...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/py_mining.py
Python
gpl3
3,781
from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration from chisquare_filter import ChiSquareFilter from naive_bayes import NaiveBayes if __name__ == "__main__": config = Configuration.FromFile(...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/test.naive_bayes_train_test.py
Python
gpl3
901
import random import bisect class Tripple: def __init__(self, row, col, val): self.row = row self.col = col self.val = val def Transpose(self): tmp = self.row self.row = self.col self.col = tmp return self def TrippleCmp(t1, t2): if (t1....
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/matrix.py
Python
gpl3
3,956
#coding=utf8= #mmseg from configuration import Configuration class Segmenter: def __init__(self, config, nodeName): curNode = config.GetChild(nodeName) self.mainDict = self.LoadMainDict(curNode.GetChild("main_dict").GetValue()) def Split(self, line): line = line.lower() index ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/segmenter.py
Python
gpl3
1,474
#encoding=utf8 from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration from chisquare_filter import ChiSquareFilter from naive_bayes import NaiveBayes if __name__ == "__main__": config = Configu...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/test.naive_bayes_train_sample_test.py
Python
gpl3
1,142
import math import pickle import sys from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration class TwcNaiveBayes: def __init__(self, config, nodeName, loadFromFile = False): #store weig...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/twc_naive_bayes.py
Python
gpl3
5,943
from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration class ChiSquareFilter: def __init__(self, config, nodeName, loadFromFile = False): self.curNode = config.GetChild(nodeName) ...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/chisquare_filter.py
Python
gpl3
6,923
import math import pickle import sys from matrix import Matrix from classifier_matrix import ClassifierMatrix from segmenter import Segmenter from py_mining import PyMining from configuration import Configuration from chisquare_filter import ChiSquareFilter from twc_naive_bayes import TwcNaiveBayes if __name__ == "...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/pymining/test.twc_naive_bayes_train_test.py
Python
gpl3
907
#coding:utf-8 import sys a=u"""3 工程师 Done. 1 php Done. 5 php 工程师 Done. 2 设计师 Done. 6 视觉设计 Done. 7 产品经理 Done. 9 web Done. 10 编辑 Done. 11 实习生 Done. 12 产品 Done. 13 交互设计 Done. 8 产品设计 Done. 18 java Done. 19 UI Done. 22 销售 Done. 25 医药代表 Done. 24 java php Done. 29 gongzhuo Done. 17 c++ Done. 30 css Done. 39 程序架构师 Done. 41 SUN...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/chuli.py
Python
gpl3
45,346
#!/usr/bin/env python #coding=utf-8 catelist = [ (1, u"传统网络Internet"), (2, u"移动互联"), (3, u"网游"), (4, u"电子商务_B2C/团购"), (5, u"软件、电信"), (6, u"新媒体"), (7, u"风投/投行"), (8, u"其他外企"), ] idlist = [ [1, (u"超超Sandy", "d11c25990634d0e486235f1...
0f523140-f3b3-4653-89b0-eb08c39940ad
trunk/src/crawler/crawler_id.py
Python
gpl3
2,109
/*##########*/ /*RIBBON STYLE MENU*/ /*##########*/ .menuIcons { width: 550px; background: whitesmoke; outline: 1px solid #013d98; } .iconTabs { position: absolute !important; top: 0 !important; left: 0px !important; right: 0px !important; border: none !important; } .menuPin { cu...
10zig
trunk/test/menuStyleSheet.css
CSS
art
8,837
@import url('../slick-default-theme.css'); * { font-family: arial; font-size: 9pt; } #myGrid { background: white; outline: 0; border: 1px solid gray; } .grid-header { border: 1px solid gray; border-bottom: 0; border-top: 0; background: url('../images/header-bg.gif') repeat-x center top; color: bl...
10zig
trunk/test/base.css
CSS
art
3,356
html { background-color: #e2e2e2; margin: 0; padding: 0; } body { background-color: #fff; border-top: solid 10px #000; color: #333; font-size: .85em; font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif; margin: 0; padding: 0; } a { color: #333; ou...
10zig
trunk/test/Site.css
CSS
art
13,948
/*THIS STYLE SHEET OVERRIDES ANY STYLING RULES FROM OTHER STYLING SHEETS*/ html { } body { background-color: whitesmoke; } /*GENERAL ERROR/OK TEXT COLORS*/ .error { color: red; } .ok { color: green; } .loadingIcon { position: absolute; top: 0; left: 2px; } h3 { ...
10zig
trunk/test/masterStyleSheet.css
CSS
art
49,045
#!/bin/sh cat <<EOF Content-type: video/flv EOF exec /sbin/wget -O - --post-data `echo $QUERY_STRING|sed "s_\&amp;_\&_g"` "http://213.152.174.187/mvmu.php"
1073s
trunk/php1/mv.cgi
Shell
gpl3
158
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; $tit=urldecode($queryArr[2]); } ?> <rss version="2.0"> <onE...
1073s
trunk/php1/y.php
PHP
gpl3
8,913
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $id = $_GET["id"]; $post ="url=http://www.m...
1073s
trunk/php1/.svn/text-base/mega.php.svn-base
PHP
gpl3
1,685
#!/usr/local/bin/Resource/www/cgi-bin/php <?php // For users without megavideo account // It downloads the video in flv format // It doesnt work if the file is hosted on free hosting. // In firefox and vlc the video stops at minute 10 unless you modifired the php.ini of the website where you hosted the file // In case ...
1073s
trunk/php1/.svn/text-base/megavideo.php.svn-base
PHP
gpl3
2,493
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; $tit=urldecode($queryArr[2]); } ?> <rss version="2.0"> <onE...
1073s
trunk/php1/.svn/text-base/y.php.svn-base
PHP
gpl3
8,913
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; } ?> <rss version="2.0"> <onEnter> startitem = "middle"; s...
1073s
trunk/php1/.svn/text-base/youtube_user.php.svn-base
PHP
gpl3
9,053
#!/bin/sh cat <<EOF Content-type: video/flv EOF exec /sbin/wget -O - --post-data `echo $QUERY_STRING|sed "s_\&amp;_\&_g"` "http://213.152.174.187/mvmu.php"
1073s
trunk/php1/.svn/text-base/mv.cgi.svn-base
Shell
gpl3
158
#!/usr/local/bin/Resource/www/cgi-bin/php <?php // For users without megavideo account // It downloads the video in flv format // It doesnt work if the file is hosted on free hosting. // In firefox and vlc the video stops at minute 10 unless you modifired the php.ini of the website where you hosted the file // In case ...
1073s
trunk/php1/megavideo.php
PHP
gpl3
2,493
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; } ?> <rss version="2.0"> <onEnter> startitem = "middle"; s...
1073s
trunk/php1/youtube_user.php
PHP
gpl3
9,053
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $id = $_GET["id"]; $post ="url=http://www.m...
1073s
trunk/php1/mega.php
PHP
gpl3
1,685
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $img = "/usr/local/etc/www/cgi-bin/scripts/tv/image/telem.png"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); ...
1073s
trunk/tv/locale/telem_main.php
PHP
gpl3
5,127
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; $tit = urldecode($queryArr[2]); } ?> <rss version="2.0"> <o...
1073s
trunk/tv/locale/telem.php
PHP
gpl3
8,082
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispla...
1073s
trunk/tv/locale/1tvbacau.php
PHP
gpl3
8,043
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/ctvmedia.php
PHP
gpl3
7,537
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/emaramures.php
PHP
gpl3
7,695
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/tvsatrm.php
PHP
gpl3
8,233
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/.svn/text-base/infotv_link.php.svn-base
PHP
gpl3
424
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/.svn/text-base/tvsatrm.php.svn-base
PHP
gpl3
8,233
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/.svn/text-base/tvsatrm_link.php.svn-base
PHP
gpl3
400
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/.svn/text-base/infotv.php.svn-base
PHP
gpl3
7,137
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/.svn/text-base/ctvmedia.php.svn-base
PHP
gpl3
7,537
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = $queryArr[1]; $tit = urldecode($queryArr[2]); } ?> <rss version="2.0"> <o...
1073s
trunk/tv/locale/.svn/text-base/telem.php.svn-base
PHP
gpl3
8,082
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/.svn/text-base/tvt89.php.svn-base
PHP
gpl3
8,346
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/.svn/text-base/1tvbacau_link.php.svn-base
PHP
gpl3
449
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispla...
1073s
trunk/tv/locale/.svn/text-base/1tvbacau.php.svn-base
PHP
gpl3
8,043
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/.svn/text-base/tvt89_link.php.svn-base
PHP
gpl3
461
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/.svn/text-base/telem_link.php.svn-base
PHP
gpl3
486
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/.svn/text-base/emaramures.php.svn-base
PHP
gpl3
7,695
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $img = "/usr/local/etc/www/cgi-bin/scripts/tv/image/telem.png"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); ...
1073s
trunk/tv/locale/.svn/text-base/telem_main.php.svn-base
PHP
gpl3
5,127
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/telem_link.php
PHP
gpl3
486
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/infotv_link.php
PHP
gpl3
424
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/infotv.php
PHP
gpl3
7,137
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/tvsatrm_link.php
PHP
gpl3
400
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/1tvbacau_link.php
PHP
gpl3
449
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/locale/tvt89.php
PHP
gpl3
8,346
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/locale/tvt89_link.php
PHP
gpl3
461
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $img = "/usr/local/etc/www/cgi-bin/scripts/tv/image/bing.jpg"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); ...
1073s
trunk/tv/bing_sport.php
PHP
gpl3
5,996
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/dinamo.php
PHP
gpl3
6,794
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } function str_prep($string){ $string =...
1073s
trunk/tv/sport/footytube_link.php
PHP
gpl3
3,260
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/digi_main.php
PHP
gpl3
5,319
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/liga2.php
PHP
gpl3
7,611
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $link=urldecode(...
1073s
trunk/tv/sport/sportgioco_link.php
PHP
gpl3
3,295
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/sportgioco.php
PHP
gpl3
7,212
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/sport/digi_link.php
PHP
gpl3
426
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $link = urldecod...
1073s
trunk/tv/sport/dinamo_link.php
PHP
gpl3
421
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/sport/liga2_link.php
PHP
gpl3
427
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/.svn/text-base/sportgioco.php.svn-base
PHP
gpl3
7,212
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; $query = $_GET["query"]; if($query) { $queryArr = explode(',', $query); $page = $queryArr[0]; $search = urldecode($queryArr[1]); $tit = urldecode($queryArr[2]); } ?> <rss versio...
1073s
trunk/tv/sport/.svn/text-base/soccerclips.php.svn-base
PHP
gpl3
8,338
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } function str_prep($string){ $string =...
1073s
trunk/tv/sport/.svn/text-base/footytube_link.php.svn-base
PHP
gpl3
3,260
#!/usr/local/bin/Resource/www/cgi-bin/php <?php echo "<?xml version='1.0' encoding='UTF8' ?>"; $host = "http://127.0.0.1/cgi-bin"; ?> <rss version="2.0"> <onEnter> startitem = "middle"; setRefreshTime(1); </onEnter> <onRefresh> setRefreshTime(-1); itemCount = getPageInfo("itemCount"); </onRefresh> <mediaDispl...
1073s
trunk/tv/sport/.svn/text-base/dinamo.php.svn-base
PHP
gpl3
6,794
#!/usr/local/bin/Resource/www/cgi-bin/php <?php function str_between($string, $start, $end){ $string = " ".$string; $ini = strpos($string,$start); if ($ini == 0) return ""; $ini += strlen($start); $len = strpos($string,$end,$ini) - $ini; return substr($string,$ini,$len); } $link = $_GET["file"]; $html = file_get...
1073s
trunk/tv/sport/.svn/text-base/digi_link.php.svn-base
PHP
gpl3
426