Home  News  Events  Album  Links  Japanese Version
Main Menu
Search
Login
Username:

Password:


Lost Password?

Register now!
Links

logo

Links



  Main  |  Submit New Link  

  Popular site (top10)  |  Top rated site (top10)  |  Recommend site (2)  |  Mutual site (2)  

  Category List  |  RSS/ATOM Site (25)  |  RSS/ATOM Feed (2648)  |  Randum jump  

RSS/ATOM Feed (2648)

Distributing RSS/ATOM feeds which displayed here.


rss  atom 

D3 Pipes Introduction (2)  from PEAK XOOPS  (2007/4/19 6:16) 
How to convine joints?It looks difficult, certainly.However, I can say there are just three convination patterns.(A) Outer XML fetch/parse patternXML fetching -> convert to UTF8 -> XML parsing -> convert to internal encoding -> extraction -> clipping(B) Inner get patternLocal getting/assignment -> extraction(C) Aggregation patternAggregation -> SortingFirst of all, Let's try make a pattern of (A).Go to"d3pipes admin"-> "Pipes"-> "Create a new pipe"You can find four joints are already set."Fetcing from outside""snoopy""Parsing XML""keithxml""Transfer encoding from UTF-8""mbstring""Clipping into local""moduledb"All you have to do is inputting URI of RSS/RDF/ATOM into the top of option (right of soopy).After that, input Name as you like, and"Save"it.Then you can see the result at the public side of d3pipes.If you get some errors, fix the problems by refering the message.I'll explain (A) pattern with detail.
D3 Pipes Introduction (1)  from PEAK XOOPS  (2007/4/18 13:04) 
D3 Pipes is a module for treating syndications of inside/outside.There are too many"Environmental dependencies"in treating outside XML.-fetch--allow_url_fopen on/off--curl exits/not--How to pass firewall-parse--encoding of the XML (mbstring/iconv)--RSS1/RSS2/ATOM--correspondence between tag and data--invalid XML-filter--preg is hard to use for multibyte environment-store--internal encoding (mbstring/iconv)-aggregation--how to sort entries without publised time-display--Which element should be displayed--Which element should be escapedIn xhld, a class of headlinerenderer handles all dependencies.Thus, it had been"too big"and"hard to use"codes.The pipe model solves the problems smartly.[code]A sample of the pipe model:Joint -> Joint -> Joint -> JointXML utf8string utf8array array[/code]These are joints composing a pipe.-fetching XML string (fetch)--select fopen/snoopy--set URI as its option-converting XML string to UTF-8 (utf8to)--select mbstring/iconv/iso88591--set XML's encoding as i ...
D3 Pipes 0.1 released  from PEAK XOOPS  (2007/4/17 6:52) 
I've just released a module named"D3 Pipes"like *!Pipes :-DOf course, I cannot make such interfaces.Just the feature looks like it.As it is difficult for beginners to use this module, I'll write usages of D3 Pipes.And, my developping xhld is ended now.
DB THEME 0.2 released  from PEAK XOOPS  (2007/4/5 5:45) 
I've just released a module make your site can be displayed with DB template.http://xoops.peak.ne.jp/md/mydownloads/singlefile.php?lid=99&cid=1Here is the merits.(1) You can edit the theme/css via altsys (you can see diff)(2) CSS of the theme will be templatized automatically(3) You can specify different themes by blocks (Of course, the block is duplicatable)(4) You can turn"Update module template .html files from themes/your theme/templates directory"off when editing DB themeWhile, here is the demerits.(1) It may be fast/easy to edit the theme file at local(2) Displaying CSS may be slow(3) It may be easy to change themes in theme.htmlAnyway, I think (4) is a pure merit :-D
myAlbum-P 2.0 vulnerability ...?  from PEAK XOOPS  (2007/4/4 7:18) 
I've heard a report about myAlbum-P 2.0http://www.securityfocus.com/bid/232292.0?I suspect my eyes. It's far old version. (3.5 years ago!)Of course, I had already fixed the hole at least 3 years ago (version 2.5)In fact, there are many sites running"myAlbum-P 2.0"by searching at google.Then, I shall announce such lazy users."Update myAlbum-P or install Protector right now!"Though this annouce will be never arrived such lazy users...
A Theme with templatize CSS  from PEAK XOOPS  (2007/4/3 6:52) 
There are too many constant values has duplicated meanings in CSS.Colors, widths ... this cause headache for programmers.Then, I've made a theme with templatized CSS.http://xoops.peak.ne.jp/md/mydownloads/singlefile.php?lid=98The theme named"newbase0"is based on hodaka's full_flex_1.http://www.hodajuku.org/modules/mydownloads/singlefile.php?cid=1&lid=1As full_flex_1 is a good CSS theme, there are complex and relative constants in its CSS.This means that there are a lot of values to templatize.To customize CSS of"newbase0", edit screen_css.php.You can see there are eight at most colors impress the site theme."eight colors?"Yes.I assigned eight colors from pic2color into $colors of screen_css.php on April 1st.
Making themes with arrangement of colors matching a photo  from PEAK XOOPS  (2007/4/2 5:13) 
I show a trick of 720 themes on April 1st.It is hard for non-designers to make a color scheme on creating a theme for him/herself.However, you can try pic2color.http://www.pic2color.com/index.htmYou will get 8 colors matching each other just specifying URI of a good photo.Put the base photo as background in the header.And, specify colors like this.($color[0] means the left color, $color[7] means the right color)[code]body_bg => #ffffff // fixedbody_letter => #333333 // fixedoutside of frame => $color[4]header_bg => $color[7]header_letter => $color[1]link => $color[0]impact_bg => $color[2] // etc.impact_letter => #ffffff // fixedtitle_bg => $color[3] // block title etc.title_letter => #ffffff // fixedhead => $color[5]even => $color[6]odd => $color[7]border => $color[0][/code]Then you'll get a good color scheme like a professional.I'll show how to specify colors.(I've made a template CSS for this purpose)
xoops_block plugin and D3 module's block(2)  from PEAK XOOPS Support&Experiment  (2007/3/29 4:25) 
I've modified D3 module's blocks can return both"array for template"and"string rendered by the template"by specifying $options['disable_renderer'].Then I've made a smarty plugin named"xugj_block"based on"xoops_block".eg)It displays the block.eg2)It never displays the block.You can use a new template variable instead.
xoops_block plugin and D3 module's block(1)  from PEAK XOOPS Support&Experiment  (2007/3/28 5:36) 
For describing some text into theme, a smarty plugin"tinyD"has been used well.TinyD pluginI have to make a plugin for pico, because I marked TinyD"dead-end".Refer the code of bottom.But I remember more versatile plugin"xoops_block"made by Tom_G3X.xoops_block pluginThis plugin reassigns block's assignment.This spec must be useful for professionals.But, blocks of D3 modules returns not a assignment but a content rendered by XoopsTpl already.I have to modify the spec of blocks of D3 modules for such purpose.
Imcompatibility shutdown and ob_filter  from PEAK XOOPS Support&Experiment  (2007/3/24 5:50) 
There are important difference in order of functions for shutdown and output-buffering between PHP4.x/5.0.x and PHP5.1[code][/code]The results excecuting this code...PHP4.4.4 and PHP5.0.3[code]main ob sf [/code]PHP5.1.3[code]main sf ob [/code]You can understand they are far different each other.Thus, we have to code like this style for cushoning the versions of PHP.[code][/code]With this code, Both PHP4.x/5.0.x and PHP5.1.x run same order. (main, ob, sf)If you want the order of (main, sf, ob), you have to call the shutdown function from the output-buffering function.



« [1] 245 246 247 248 249 (250) 251 252 253 254 255 [265] » 
Copyright (C) 2005-6, Human Science Integration Program - Humans. All right reserved.